forked from Azure/azure-sdk-for-node
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
97 lines (97 loc) · 2.78 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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
{
"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]>",
"Zavery, Amar <[email protected]>",
"Wang, Yugang <[email protected]>",
"Mkrtchyan, Hovsep <[email protected]>",
"Lu, Jianghao <[email protected]>"
],
"version": "0.10.6",
"description": "Microsoft 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.12",
"azure-asm-compute": "0.10.0",
"azure-asm-hdinsight": "0.10.0",
"azure-asm-mgmt": "0.10.0",
"azure-monitoring": "0.10.0",
"azure-asm-network": "0.10.0",
"azure-scheduler": "0.10.0",
"azure-asm-scheduler": "0.10.0",
"azure-sb": "0.10.0",
"azure-asm-sb": "0.10.0",
"azure-asm-sql": "0.10.0",
"azure-asm-store": "0.10.0",
"azure-asm-storage": "0.10.0",
"azure-asm-subscription": "0.10.0",
"azure-asm-trafficmanager": "0.10.0",
"azure-asm-website": "0.10.0",
"azure-arm-authorization": "0.10.0",
"azure-arm-compute": "0.10.0",
"azure-arm-dns": "0.10.0",
"azure-gallery": "2.0.0-pre.16",
"azure-arm-insights": "0.10.0",
"azure-keyvault": "0.9.2",
"azure-arm-keyvault": "0.10.0",
"azure-arm-network": "0.10.0",
"azure-arm-resource": "0.10.0",
"azure-arm-storage": "0.10.0",
"azure-arm-website": "0.10.0",
"mime": "~1.2.4",
"underscore": "1.4.x",
"request": "2.45.0",
"node-uuid": "~1.2.0",
"azure-storage": "0.3.3"
},
"devDependencies": {
"mocha": "1.16.0",
"jshint": "2.6.3",
"sinon": "*",
"should": "1.2.x",
"nock": "0.30.1",
"grunt": "~0.4.2",
"grunt-jsdoc": "~0.5.1",
"grunt-devserver": "~0.4.1"
},
"homepage": "http://github.com/Azure/azure-sdk-for-node",
"repository": {
"type": "git",
"url": "[email protected]:Azure/azure-sdk-for-node.git"
},
"bugs": {
"url": "http://github.com/Azure/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",
"jshint": "jshint lib --reporter=jslint",
"ci": "node scripts/unit.js testlist.txt",
"coverage": "node scripts/unit.js testlist.txt -coverage > coverage.html"
}
}