-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
47 lines (47 loc) · 1.15 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
{
"name": "@bugcrowd/ecs-task-runner",
"version": "0.3.6",
"description": "Run a task on ecs and stream logs from Cloudwatch Logs to the console",
"main": "index.js",
"engines": {
"node": ">= 16.0.0"
},
"bin": {
"ecs-task-runner": "./bin/ecs-task-runner"
},
"scripts": {
"test": "NODE_ENV=test ./node_modules/.bin/mocha --recursive"
},
"repository": {
"type": "git",
"url": "https://github.com/bugcrowd/ecs-task-runner"
},
"keywords": [
"ecs",
"aws",
"task definition",
"run task"
],
"author": "Coen Hyde",
"license": "MIT",
"dependencies": {
"@aws-sdk/client-cloudwatch-logs": "^3.451.0",
"@aws-sdk/client-ecs": "^3.451.0",
"randomstring": "^1.1.5",
"stream-combiner": "^0.2.2",
"yargs": "^17.7.1"
},
"devDependencies": {
"aws-sdk-client-mock": "^4.0.1",
"eslint": "^8.36.0",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.8.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-standard": "^5.0.0",
"expect.js": "^0.3.1",
"mocha": "^10.2.0",
"sinon": "^18.0.0"
},
"preferGlobal": true
}