This repository was archived by the owner on Nov 12, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 19
/
Copy pathpackage.json
57 lines (57 loc) · 1.66 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
{
"name": "taskcluster-aws-provisioner",
"version": "0.1.0",
"private": true,
"scripts": {
"heroku-prebuild": "echo $SOURCE_VERSION > .git-version",
"lint": "eslint lib/*.js test/*.js --fix",
"unittest": "NODE_ENV=test node --stack-trace-limit=50 ./node_modules/mocha/bin/_mocha test/*_test.js",
"test": "yarn run lint && yarn run unittest"
},
"bin": {
"manage-provisioner": "./lib/manage.js"
},
"repository": {
"type": "git",
"url": "https://github.com/taskcluster/aws-provisioner.git"
},
"dependencies": {
"assume": "^2.0.1",
"aws-sdk": "^2.232.1",
"azure-entities": "^5.1.0",
"babel-eslint": "^8.2.3",
"commander": "^2.15.1",
"debug": "^3.1.0",
"eslint": "^4.19.1",
"eslint-config-taskcluster": "^3.1.0",
"eslint-plugin-taskcluster": "^1.0.0",
"knuth-shuffle": "^1.0.8",
"lodash": "^4.17.13",
"mocha": "^3.2.0",
"mz": "^2.7.0",
"pulse-publisher": "^3.0.3",
"request": "^2.85.0",
"request-promise": "^4.2.2",
"should": "^13.2.1",
"sinon": "^5.0.3",
"slugid": "^1.1.0",
"source-map-support": "^0.5.5",
"taskcluster-client": "^4.1.0",
"taskcluster-lib-api": "8.4.0",
"taskcluster-lib-app": "^1.0.0",
"taskcluster-lib-azure": "^10.0.0",
"taskcluster-lib-docs": "^3.3.1",
"taskcluster-lib-iterate": "^1.0.4",
"taskcluster-lib-loader": "^2.0.0",
"taskcluster-lib-log": "^3.0.0",
"taskcluster-lib-monitor": "^5.4.0",
"taskcluster-lib-stats": "^0.8.8",
"taskcluster-lib-testing": "^3.2.2",
"taskcluster-lib-validate": "^3.1.0",
"typed-env-config": "^2.0.0",
"uuid": "^3.2.1"
},
"engines": {
"node": "8.10.0"
}
}