forked from YashdalfTheGray/amazon-ecs-run-task
-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
38 lines (38 loc) · 1001 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
{
"name": "aws-actions-amazon-ecs-deploy-task-definition",
"version": "2.0.1",
"description": "Registers an Amazon ECS task definition and deploys it to an ECS service.",
"main": "index.js",
"scripts": {
"lint": "eslint **.js",
"package": "ncc build index.js -o dist",
"test": "eslint **.js && jest --coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/aws-actions/amazon-ecs-deploy-task-definition.git"
},
"keywords": [
"AWS",
"GitHub",
"Actions",
"JavaScript"
],
"author": "AWS",
"license": "MIT",
"bugs": {
"url": "https://github.com/aws-actions/amazon-ecs-deploy-task-definition/issues"
},
"homepage": "https://github.com/aws-actions/amazon-ecs-deploy-task-definition#readme",
"dependencies": {
"-": "^0.0.1",
"@actions/core": "^1.2.6",
"aws-sdk": "^2.710.0",
"yaml": "^1.10.0"
},
"devDependencies": {
"@zeit/ncc": "^0.22.3",
"eslint": "^7.4.0",
"jest": "^26.4.2"
}
}