forked from taskcluster/aws-provisioner
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.67 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
{
"name": "taskcluster-aws-provisioner",
"version": "0.1.0",
"private": true,
"scripts": {
"install": "npm run compile",
"compile": "rm -rf lib/ test/ && DEBUG= babel-compile -p taskcluster src:lib test-src:test",
"fastcompile": "DEBUG= babel-compile --no-clean -p taskcluster src:lib test-src:test",
"clean": "rm -rf lib test",
"pretest": "npm run compile",
"lint": "eslint src/*.js test-src/*.js",
"lintfix": "eslint --fix src/*.js test-src/*.js",
"test": "npm run lint && npm run compile && NODE_ENV=test mocha test/*_test.js"
},
"bin": {
"manage-provisioner": "./lib/manage.js"
},
"repository": {
"type": "git",
"url": "https://github.com/taskcluster/aws-provisioner.git"
},
"dependencies": {
"assume": "^1.2.5",
"aws-sdk": "^2.5.0",
"azure-storage": "^1.0.1",
"babel-compile": "^2.0.0",
"babel-eslint": "^6.0.0",
"babel-preset-taskcluster": "^3.0.0",
"babel-runtime": "^6.6.1",
"commander": "^2.6.0",
"debug": "^2.2.0",
"eslint": "^2.10.2",
"eslint-config-taskcluster": "^2.0.0",
"eslint-plugin-taskcluster": "^1.0.0",
"knuth-shuffle": "^1.0.1",
"lodash": "^3.10.1",
"mocha": "^2.2.5",
"request": "^2.74.0",
"request-promise": "^4.1.1",
"should": "^8.2.2",
"sinon": "^1.15.4",
"slugid": "^1.1.0",
"source-map-support": "^0.4.0",
"taskcluster-base": "^6.2.0",
"taskcluster-client": "^1.0.1",
"taskcluster-lib-iterate": "^1.0.2",
"taskcluster-lib-log": "^1.0.3",
"taskcluster-lib-stats": "https://registry.npmjs.org/taskcluster-lib-stats/-/taskcluster-lib-stats-0.8.8.tgz",
"uuid": "^2.0.2"
},
"engines": {
"node": "4.x"
}
}