forked from Azure/azure-sdk-for-node
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
76 lines (76 loc) · 2.05 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"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.8.1",
"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": {
"azure-common": "0.9.1-pre.2",
"azure-mgmt-compute": "0.9.1-pre.2",
"azure-mgmt": "0.9.1-pre.2",
"azure-mgmt-vnet": "0.9.1-pre.2",
"azure-mgmt-sb": "0.9.1-pre.2",
"azure-mgmt-sql": "0.9.1-pre.2",
"azure-mgmt-storage": "0.9.1-pre.2",
"azure-mgmt-website": "0.9.1-pre.2",
"mime": "~1.2.4",
"underscore": "~1.4.0",
"request": "2.27.0",
"wns": "~0.5.3",
"mpns": "~2.0.0",
"node-uuid": "~1.2.0"
},
"devDependencies": {
"mocha": "1.16.0",
"jshint": ">= 2.1.4",
"sinon": "*",
"should": "1.2.x",
"nock": "*",
"grunt": "~0.4.2",
"grunt-jsdoc": "~0.5.1",
"grunt-devserver": "~0.4.1"
},
"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",
"setup": "node scripts/setup.js",
"update": "node scripts/update.js",
"jshint": "jshint lib --reporter=jslint",
"ci": "node scripts/unit.js testlist.txt",
"coverage": "node scripts/unit.js testlist.txt -coverage > coverage.html"
}
}