-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
41 lines (41 loc) · 1.31 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
{
"name": "aws-ecs-autoscaler",
"version": "0.1.7",
"description": "",
"author": "Jeff Downie",
"main": "index.js",
"scripts": {
"version": "cat package.json | grep version | head -1 | awk -F: '{ print $2 }' | sed 's/[\",]//g' | tr -d '[[:space:]]'",
"docker": "npm run docker:build && npm run docker:push",
"docker:build": "docker build -t trinitymirror/aws-ecs-autoscaler:$(npm run version | tail -1) .",
"docker:push": "docker push trinitymirror/aws-ecs-autoscaler:$(npm run version | tail -1)",
"prepublishOnly": "npm run docker",
"test": "npm run lint && istanbul cover ./node_modules/.bin/_mocha test/index.js",
"coveralls": "cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js",
"lint": "eslint ."
},
"repository": {
"type": "git",
"url": "https://github.com/JeffDownie/aws-ecs-autoscaler.git"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/JeffDownie/aws-ecs-autoscaler/issues"
},
"homepage": "https://github.com/JeffDownie/aws-ecs-autoscaler",
"contributors": [
"Jeff Downie"
],
"dependencies": {
"aws-sdk": "2.73.0",
"camda": "0.4.4",
"ramda": "0.24.1"
},
"devDependencies": {
"coveralls": "2.13.1",
"eslint": "4.0.0",
"istanbul": "0.4.5",
"mocha": "3.4.2",
"should": "11.2.1"
}
}