forked from Azure/azure-sdk-for-node
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
54 lines (54 loc) · 1.52 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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
{
"name": "azure",
"author": "Microsoft Corporation",
"version": "0.6.0",
"description": "Windows Azure Client Library for node and Command Line Tool",
"tags" : ["azure", "sdk"],
"keywords": [ "node", "azure" ],
"main": "./lib/azure.js",
"engines": { "node": ">= 0.6.15" },
"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",
"dateformat": "1.0.2-1.2.3",
"underscore": ">= 1.3.1",
"underscore.string": ">= 2.0.0",
"node-uuid": "> = 1.2.0",
"tunnel": ">= 0.0.1",
"async": ">= 0.1.18",
"streamline": "0.2.4",
"commander": ">= 0.5.2",
"winston": ">= 0.5.10",
"colors": "0.x.x",
"eyes": "0.x.x",
"easy-table": "0.0.1"
},
"devDependencies": {
"mocha": "*",
"jshint": "*",
"sinon": "*",
"should": "*"
},
"homepage": "http://github.com/WindowsAzure/azure-sdk-for-node",
"repository": {
"type": "git",
"url": "git@github.com:WindowsAzure/azure-sdk-for-node.git"
},
"bugs" : {
"url" : "http://github.com/WindowsAzure/azure-sdk-for-node/issues"
},
"scripts": {
"test": "node test/runtests.js testlist.txt",
"jshint": "node test/runjshint.js",
"coverage": "node test/runtests.js testlist.txt -coverage > coverage.html",
"extendedtests": "node test/runtests.js extendedtestlist.txt"
},
"bin": {
"azure": "./bin/azure"
}
}