This repository has been archived by the owner on May 5, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 567
/
package.json
120 lines (120 loc) · 4.02 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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
{
"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]>",
"Krishnan, Balaji <[email protected]>"
],
"version": "2.3.1-preview",
"description": "Microsoft Azure Client Library for node",
"tags": [
"azure",
"sdk"
],
"keywords": [
"node",
"azure"
],
"main": "./lib/azure.js",
"license": "(MIT OR Apache-2.0)",
"dependencies": {
"mime": "^2.4.4",
"moment": "^2.22.2",
"ms-rest": "^2.3.8",
"ms-rest-azure": "^2.5.0",
"request": "^2.81.0",
"underscore": "1.8.3",
"uuid": "^3.0.1"
},
"devDependencies": {
"@octokit/rest": "^15.17.0",
"@types/request": "^2.0.3",
"adal-node": "^0.2.2",
"async": "^2.6.4",
"azure-arm-hdinsight": "^0.12.0",
"azure-arm-hdinsight-jobs": "^0.1.1",
"azure-arm-storage": "^7.0.0",
"azure-asm-compute": "^0.18.0",
"azure-asm-hdinsight": "^0.10.3",
"azure-asm-mgmt": "^0.10.2",
"azure-asm-network": "^0.13.1",
"azure-asm-sb": "^0.10.2",
"azure-asm-scheduler": "^0.10.2",
"azure-asm-sql": "^0.10.3",
"azure-asm-storage": "^0.12.1",
"azure-asm-store": "^0.10.2",
"azure-asm-subscription": "^0.11.0",
"azure-asm-trafficmanager": "^0.10.4",
"azure-asm-website": "^0.10.7",
"azure-common": "^0.9.20",
"azure-gallery": "^2.0.0-pre.20",
"azure-keyvault": "^3.0.4",
"azure-monitoring": "^0.10.6",
"azure-sb": "^0.10.6",
"azure-scheduler": "^0.10.4",
"azure-storage": "^2.9.0-preview",
"azure-storage-legacy": "^0.10.3",
"colors": "1.1.2",
"fs-extra": "^5.0.0",
"glob": "^7.1.1",
"gulp": "^3.9.1",
"gulp-exec": "2.1.2",
"jshint": "^2.9.5",
"json-stable-stringify": "^1.0.1",
"minami": "devigned/minami#master",
"mocha": "^5.2.0",
"mocha-junit-reporter": "^1.18.0",
"natives": "^1.1.6",
"nock": "0.16",
"node-forge": "0.6.30",
"npm-run-all": "^4.1.5",
"nyc": "^11.2.1",
"promise": "^7.1.1",
"random-js": "1.0.4",
"should": "^8.3.1",
"sinon": "^2.1.0",
"tslib": "^1.9.3",
"typescript": "^3.5.1",
"xmlbuilder": "15.1.1",
"yargs": "3.29.0"
},
"homepage": "http://github.com/azure/azure-sdk-for-node",
"repository": {
"type": "git",
"url": "https://github.com/azure/azure-sdk-for-node.git"
},
"bugs": {
"url": "http://github.com/Azure/azure-sdk-for-node/issues"
},
"scripts": {
"test": "npm -s run runtime-install && npm -s run jshint && npm -s run unit-msrestazure && npm -s run unit-arm && npm -s run unit && npm -s run unit-msrest",
"unit": "node scripts/unit.js testlist.txt",
"unit-arm": "node scripts/unit-arm.js testlistarm.txt",
"unit-msrest": "cd runtime/ms-rest && npm test",
"unit-msrestazure": "cd runtime/ms-rest-azure && npm test",
"setup": "node scripts/setup.js",
"jshint": "jshint lib --reporter=jslint",
"ci": "node scripts/unit.js testlist.txt",
"runtime-install": "node scripts/runtime-install.js",
"coverage": "node scripts/unit-coverage.js testlistarm.txt testlist.txt",
"debug": "node --inspect scripts/unit-arm.js testlistarm.txt",
"install-client-keyvault": "cd lib/services/keyVault && npm install",
"install-client": "npm-run-all -p -l install-client-*",
"pack-client-keyvault": "cd lib/services/keyVault && npm pack",
"pack-client": "npm-run-all -p -l pack-client-*",
"test-client-keyvault": "echo nothing",
"test-client": "npm-run-all -p -l \"test-client-* -- {@}\"",
"audit-client-keyvault": "echo skipped",
"audit-client": "npm-run-all -p -l audit-client-*"
}
}