-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
57 lines (57 loc) · 1.36 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": "ecs-deploy-cli",
"version": "0.0.5",
"description": "Simple and easy way to deploy tasks and update services in AWS ECS.",
"main": "src/index.js",
"bin": "./bin/index.js",
"author": "Kristoffer K Larsen <kristoffer@larsen.so>",
"repository": {
"type": "git",
"url": "https://github.com/larseen/ecs-deploy-cli"
},
"bugs": {
"url": "https://github.com/larseen/ecs-deploy-cli/issues"
},
"ava": {
"require": "babel-core/register",
"files": [
"test/**/*.test.js"
]
},
"keywords": [
"aws",
"ecs",
"docker",
"amazon",
"deploy",
"cli"
],
"license": "MIT",
"scripts": {
"start": "node bin",
"lint": "eslint --ignore-path .gitignore .",
"build": "babel src --out-dir lib",
"clean": "rm -fr lib",
"test": "npm run lint && nyc --reporter=text ava",
"test:watch": "ava --watch"
},
"devDependencies": {
"ava": "^0.16.0",
"babel-cli": "^6.14.0",
"babel-core": "^6.14.0",
"babel-eslint": "^6.1.2",
"babel-preset-es2015": "^6.14.0",
"babel-preset-stage-0": "^6.5.0",
"eslint": "^3.5.0",
"eslint-config-airbnb-base": "^7.1.0",
"eslint-plugin-async-await": "0.0.0",
"eslint-plugin-import": "^1.15.0",
"nyc": "^8.3.0"
},
"dependencies": {
"aws-sdk": "^2.6.5",
"bluebird": "^3.4.6",
"chalk": "^1.1.3",
"yargs": "^5.0.0"
}
}