This repository has been archived by the owner on Nov 12, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
50 lines (50 loc) · 1.51 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
{
"name": "ec2-manager",
"version": "1.0.0",
"description": "Manage AWS EC2 instance and spot request state across regions",
"main": "lib/index.js",
"author": "John Ford <[email protected]>",
"license": "MPL-2.0",
"engines": {
"node": "8.12.0",
"yarn": ">=1.9.4"
},
"scripts": {
"heroku-prebuild": "echo $SOURCE_VERSION > .git-version",
"start": "LOG_LEVEL=*:info node lib/main.js start",
"test": "LOG_LEVEL=${LOG_LEVEL:-\"*:fatal\"} DEBUG=${DEBUG:-\"\"} yarn run _test",
"_test": "NODE_ENV=test nyc --reporter=html mocha --exit",
"fixlint": "DEBUG= eslint --fix lib/*.js test/*.js",
"purgequeues": "node lib/main.js purgequeues"
},
"dependencies": {
"aws-sdk": "^2.307.0",
"nyc": "^12.0.2",
"pg": "^7.4.3",
"pg-pool": "^2.0.3",
"sinon": "^6.1.5",
"sqs-simple": "^1.3.0",
"taskcluster-client": "^11.0.3",
"taskcluster-lib-api": "^12.3.3",
"taskcluster-lib-app": "^10.0.0",
"taskcluster-lib-iterate": "^10.0.0",
"taskcluster-lib-loader": "^10.0.1",
"taskcluster-lib-log": "^10.0.0",
"taskcluster-lib-monitor": "^10.0.0",
"taskcluster-lib-validate": "^11.0.2",
"typed-env-config": "^2.0.0",
"which": "^1.3.1"
},
"optionalDependencies": {
"pg-native": "^3.0.0"
},
"devDependencies": {
"assume": "^2.1.0",
"eslint": "^5.5.0",
"eslint-config-taskcluster": "^3.1.0",
"eslint-plugin-taskcluster": "^1.0.2",
"mocha": "^5.2.0",
"mocha-eslint": "^4.1.0",
"taskcluster-lib-testing": "^12.1.2"
}
}