-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.2 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.2 KB
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
{
"name": "aws-actions-amazon-ecs-deploy-task-definition",
"version": "1.4.11",
"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": {
"@actions/core": "^1.10.1",
"aws-sdk": "^2.1499.0",
"yaml": "^2.3.4"
},
"devDependencies": {
"@vercel/ncc": "^0.38.1",
"eslint": "^8.54.0",
"jest": "^29.7.0"
},
"overrides": {
"@istanbuljs/load-nyc-config": {
"js-yaml": "^3.14.2"
},
"eslint": {
"js-yaml": "^4.1.1"
},
"cross-spawn": "^7.0.5",
"brace-expansion": "^1.1.12",
"@babel/helpers": "^7.26.10"
}
}