forked from mikestead/ecs-task-deploy
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
41 lines (41 loc) · 873 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
{
"name": "@valiton/ecs-task-deploy",
"version": "1.5.0",
"description": "Update an ECS task definition with Docker image and trigger blue/green deployment",
"keywords": [
"aws",
"ecs",
"deploy"
],
"files": [
"src/"
],
"author": {
"name": "Valiton",
"url": "https://github.com/mikestead"
},
"license": "MIT",
"homepage": "https://github.com/valiton/ecs-task-deploy",
"repository": {
"type": "git",
"url": "https://github.com/valiton/ecs-task-deploy.git"
},
"bugs": {
"url": "https://github.com/valiton/ecs-task-deploy/issues"
},
"main": "src/index.js",
"bin": {
"ecs-task-deploy": "src/run.js"
},
"scripts": {
"lint": "eslint src"
},
"dependencies": {
"aws-sdk": "^2.1415.0",
"chalk": "^4.1.2",
"commander": "^6.2.1"
},
"devDependencies": {
"eslint": "^8.44.0"
}
}