forked from taskcluster/ec2-manager
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 1.55 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
{
"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 <john@johnford.org>",
"license": "MPL-2.0",
"engines": {
"node": ">=8.1.4",
"yarn": ">=0.24.5"
},
"scripts": {
"start": "node lib/main.js start",
"test": "LOG_LEVEL=*:warn DEBUG= yarn run _test",
"_test": "NODE_ENV=test nyc --reporter=html mocha",
"fixlint": "DEBUG= eslint --fix lib/*.js test/*.js"
},
"dependencies": {
"aws-sdk": "^2.86.0",
"babel-compile": "^2.0.0",
"babel-preset-taskcluster": "^3.0.0",
"bluebird": "^3.5.0",
"lodash": "^4.17.4",
"nyc": "^11.0.3",
"pg": "^7.0.1",
"pg-pool": "^2.0.1",
"redis": "^2.7.1",
"sinon": "^2.3.8",
"source-map-support": "^0.4.15",
"sqs-simple": "^1.3.0",
"taskcluster-client": "^2.5.0",
"taskcluster-lib-api": "^3.2.2",
"taskcluster-lib-app": "^1.0.0",
"taskcluster-lib-iterate": "^1.0.2",
"taskcluster-lib-loader": "^1.1.0",
"taskcluster-lib-log": "^1.0.3",
"taskcluster-lib-monitor": "^4.6.3",
"taskcluster-lib-testing": "^1.0.4",
"taskcluster-lib-validate": "^2.1.0",
"typed-env-config": "^1.1.1",
"which": "^1.2.14"
},
"optionalDependencies": {
"pg-native": "^2.0.1"
},
"devDependencies": {
"assume": "^1.5.1",
"babel-eslint": "^8.0.1",
"eslint": "^4.9.0",
"eslint-config-taskcluster": "^2.0.0",
"eslint-plugin-taskcluster": "^1.0.2",
"mocha": "^2.2.1",
"mocha-eslint": "^3.0.1"
}
}