-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
37 lines (37 loc) · 916 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
{
"name": "@bugcrowd/ecs-service-image-updater",
"version": "0.3.3",
"description": "Update an ECS service with a new Docker image",
"main": "index.js",
"scripts": {
"test": "mocha --recursive"
},
"bin": {
"ecs-service-image-updater": "./bin/ecs-service-image-updater"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bugcrowd/ecs-service-image-updater.git"
},
"keywords": [
"ECS",
"Service",
"Docker"
],
"author": "Coen Hyde",
"license": "MIT",
"bugs": {
"url": "https://github.com/bugcrowd/ecs-service-image-updater/issues"
},
"homepage": "https://github.com/bugcrowd/ecs-service-image-updater#readme",
"dependencies": {
"@aws-sdk/client-ecs": "^3.454.0",
"lodash": "^4.17.19",
"yargs": "^17.7.2"
},
"devDependencies": {
"aws-sdk-client-mock": "^4.0.1",
"expect.js": "^0.3.1",
"mocha": "^10.2.0"
}
}