-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
57 lines (57 loc) · 1.5 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": "@cumulus/cumulus-ecs-task",
"version": "2.1.0",
"description": "Run lambda functions in ECS",
"main": "index.js",
"bin": {
"cumulus-ecs-task": "index.js"
},
"engines": {
"node": ">=20.12.2"
},
"keywords": [
"CUMULUS",
"GIBS",
"NASA"
],
"repository": {
"type": "git",
"url": "[email protected]:cumulus-nasa/cumulus-ecs-task.git"
},
"license": "Apache-2.0",
"dependencies": {
"@aws-sdk/client-lambda": "^3.447.0",
"@aws-sdk/client-sfn": "^3.447.0",
"@aws-sdk/client-sqs": "^3.447.0",
"cliclopts": "^1.1.1",
"lodash": "^4.17.20",
"minimist": "^1.2.5",
"p-retry": "^2.0.0",
"respawn": "^2.5.0",
"rimraf": "^2.6.2",
"set-interval-async": "^3.0.3"
},
"scripts": {
"test": "ava tests/test.js",
"start": "./bin/service.js",
"lint": "eslint . --ext js",
"build": "docker build -t cumuluss/cumulus-ecs-task .",
"release": "./bin/release.sh",
"docker:clean": "docker rm -v $(docker ps -a -q -f status=exited); docker rmi $(docker images -f \"dangling=true\" -q); true"
},
"devDependencies": {
"archiver": "^5.0.0",
"ava": "^3.12.1",
"aws-sdk-client-mock": "^4.0.1",
"babel-eslint": "^10.1.0",
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-jsdoc": "^22.1.0",
"eslint-plugin-node": "^7.0.1",
"eslint-plugin-react": "^7.19.0",
"fs-extra": "^7.0.0",
"jsonfilter": "^1.1.2",
"nock": "^13.5.4"
}
}