forked from Azure/azure-sdk-for-node
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.7 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
55
{
"name": "azure",
"author": "Microsoft Corporation",
"contributors": [
"Block, Glenn <[email protected]>",
"Cowlishaw, Mark <[email protected]>",
"Dejardin, Louis <[email protected]>",
"Georgiev, Yavor <[email protected]>",
"Janczuk, Tomasz <[email protected]>",
"Rodrigues, Andre <[email protected]>",
"Tavares, Chris <[email protected]>"
],
"version": "0.7.11",
"description": "Windows Azure Client Library for node",
"tags" : ["azure", "sdk"],
"keywords": [ "node", "azure" ],
"main": "./lib/azure.js",
"engines": { "node": ">= 0.6.15" },
"licenses": [ { "type": "Apache 2.0", "url": "http://www.apache.org/licenses/LICENSE-2.0" } ],
"dependencies": {
"xml2js" : " >= 0.2.x",
"xmlbuilder": ">= 0.3.1",
"mime": ">= 1.2.4",
"dateformat": "1.0.2-1.2.3",
"underscore": ">= 1.3.1",
"node-uuid": "> = 1.2.0",
"tunnel": ">= 0.0.1",
"request": ">= 2.9.203",
"validator": ">= 0.4.12",
"wns": ">= 0.5.3",
"envconf": ">= 0.0.2"
},
"devDependencies": {
"mocha": "*",
"jshint": "*",
"sinon": "*",
"should": "*",
"nock": "*"
},
"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": "npm -s run-script jshint && npm -s run-script unit",
"unit": "node scripts/unit.js testlist.txt",
"jshint": "jshint lib --reporter=jslint",
"ci" : "node scripts/unit.js testlist.txt",
"coverage": "node scripts/unit.js testlist.txt -coverage > coverage.html"
}
}