-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
40 lines (40 loc) · 1.03 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
{
"name": "github-action-aws-ecs-run-task",
"version": "1.4.10",
"description": "Run an AWS ECS Fargate task.",
"main": "index.js",
"scripts": {
"lint": "eslint **.js",
"build": "ncc build index.js -o dist",
"update-readme": "action-docs -u",
"test": "eslint **.js && jest --coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/geekcell/github-action-aws-ecs-run-task.git"
},
"keywords": [
"aws",
"ecs",
"gthub",
"actions",
"node"
],
"author": "GeekCell GmbH <hello@geekcell.io> (https://www.geekcell.io/)",
"license": "Apache-2.0",
"dependencies": {
"@actions/core": "^1.9.1",
"@aws-sdk/client-cloudwatch-logs": "^3.624.0",
"@aws-sdk/client-ecs": "^3.609.0",
"@aws-sdk/client-sts": "^3.624.0",
"@aws-sdk/config-resolver": "^3.374.0",
"@aws-sdk/node-config-provider": "^3.374.0",
"yaml": "^2.2.2"
},
"devDependencies": {
"@vercel/ncc": "^0.34.0",
"action-docs": "^1.2.0",
"eslint": "^8.26.0",
"jest": "^29.2.2"
}
}