-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
44 lines (44 loc) · 953 Bytes
/
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
{
"name": "ecs-task-deploy",
"version": "1.3.1",
"description": "Update an ECS task definition with Docker image and trigger blue/green deployment",
"keywords": [
"aws",
"ecs",
"deploy",
"docker"
],
"author": {
"name": "Mike Stead",
"url": "https://github.com/mikestead"
},
"license": "MIT",
"homepage": "https://github.com/mikestead/ecs-task-deploy",
"repository": {
"type": "git",
"url": "https://github.com/mikestead/ecs-task-deploy.git"
},
"bugs": {
"url": "https://github.com/mikestead/ecs-task-deploy/issues"
},
"engines": {
"node": ">=4.0.0",
"npm": ">=2.14.2"
},
"main": "src/index.js",
"bin": {
"ecs-task-deploy": "src/run.js"
},
"scripts": {
"lint": "eslint src"
},
"dependencies": {
"aws-sdk": "^2.28.0",
"aws-sdk-promise": "0.0.2",
"chalk": "^1.1.3",
"commander": "^2.9.0"
},
"devDependencies": {
"eslint": "^3.18.0"
}
}