-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
37 lines (37 loc) · 966 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": "run-ecs-task-action",
"version": "0.1.0",
"description": "Uses an Amazon ECS task definition and runs a task on an ECS cluster.",
"main": "index.js",
"scripts": {
"lint": "eslint **.js",
"package": "ncc build index.js -o dist",
"test": "npm run lint && jest --coverage",
"version": "npm run package && git add -A dist"
},
"repository": {
"type": "git",
"url": "git+https://github.com/researchsquare/run-ecs-task-action.git"
},
"keywords": [
"AWS",
"GitHub",
"Actions",
"JavaScript"
],
"author": "Research Square",
"license": "MIT",
"bugs": {
"url": "https://github.com/researchsquare/run-ecs-task-action/issues"
},
"homepage": "https://github.com/researchsquare/run-ecs-task-action#readme",
"dependencies": {
"@actions/core": "^1.10.0",
"aws-sdk": "^2.1365.0"
},
"devDependencies": {
"@vercel/ncc": "^0.36.1",
"eslint": "^7.32.0",
"jest": "^27.5.1"
}
}