forked from Azure/azure-sdk-for-node
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 1.09 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
{
"name": "azure",
"author": "Microsoft Corporation",
"version": "0.5.1",
"description": "Windows Azure Client Library for node",
"tags" : ["azure", "sdk"],
"keywords": [ "node", "azure" ],
"main": "./lib/azure.js",
"engines": { "node": ">= 0.6.4" },
"licenses": [ { "type": "Apache", "url": "http://www.apache.org/licenses/LICENSE-2.0" } ],
"dependencies": {
"xml2js" : ">= 0.1.11",
"sax": ">= 0.1.1",
"qs": ">= 0.3.1",
"log": ">= 1.2.0",
"xmlbuilder": ">= 0.3.1",
"mime": ">= 1.2.4"
},
"devDependencies": {
"nodeunit": ">= 0.6.4",
"jshint": ">= 0.5.2"
},
"homepage": "http://github.com/WindowsAzure/azure-sdk-for-node",
"repository": {
"type": "git",
"url": "[email protected]:WindowsAzure/azure-sdk-for-node.git"
},
"bugs" : {
"url" : "http://github.com/WindowsAzure/azure-sdk-for-node/issues"
},
"scripts": {
"test": "node test/runtests.js",
"jshint": "node test/runjshint.js",
"extendedtests": "node test/runextendedtests.js"
}
}