-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
61 lines (61 loc) · 2.2 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
{
"name": "arm-chef-nodes",
"description": "ARM Templates to spin up Windows and Linux machines as Chef Nodes",
"author": {
"name": "Russell Seymour",
"email": "[email protected]"
},
"scripts": {
"vsts-variables": "node bin/vsts-variables.js",
"envvars": "node bin/display-envvars.js",
"compile:scripts": "tsc --project lib/tsconfig.json",
"build:init": "node bin/build.js init --clean",
"build:copy": "node bin/build.js copy",
"build:patch": "node bin/build.js patch",
"build:package": "node bin/build.js package",
"build:run": "node bin/build.js run",
"test:lint": "mocha test/lint/validateJsonTests.js test/lint/mainTemplateTests.js test/lint/createUiDefTests.js -r mocha-clean --reporter mocha-multi-reporters --reporter-options configFile=mocha-config.json",
"lint": "tslint lib/*.ts -t verbose"
},
"dependencies": {
"azure-arm-resource": "^3.1.1-preview",
"azure-arm-storage": "^6.1.0",
"azure-storage": "^2.10.2",
"chai": "^4.1.2",
"commander": "^2.15.1",
"fs-extra": "^6.0.0",
"fs-readdir-recursive": "^1.0.0",
"grunt-mocha-cli": "^4.0.0",
"ini": "^1.3.5",
"it-each": "^0.3.1",
"json-parser": "^1.1.5",
"jsonlint": "1.6.3",
"line-column": "^1.0.2",
"mocha": "^2.3.3",
"mocha-clean": "^1.0.0",
"mochawesome": "^3.0.2",
"recursive-readdir": "^2.2.1",
"rimraf": "^2.6.2",
"should": "^13.1.2",
"sprintf-js": "^1.1.1",
"typescript": "^2.8.3",
"zip-folder": "^1.0.0"
},
"devDependencies": {
"@types/fs-extra": "^5.0.2",
"@types/node": "^8.10.11",
"@types/rimraf": "^2.0.2",
"@types/sprintf-js": "^1.1.0",
"grunt": "^1.0.1",
"grunt-file-exists": "^0.1.4",
"grunt-jsonlint": "^1.1.0",
"grunt-strip-json-comments": "^2.2.0",
"grunt-tv4": "^2.0.0",
"load-grunt-tasks": "^3.5.2",
"mocha": "^5.1.1",
"mocha-junit-reporter": "^1.17.0",
"mocha-multi-reporters": "^1.1.7",
"tslint": "^5.11.0",
"tslint-eslint-rules": "^5.4.0"
}
}