-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
30 lines (30 loc) · 930 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
{
"name": "github-selhostedrunner-ec2-action",
"description": "Github Action para criar e registrar instancias AWS EC2 como self-hosted runners",
"author": "sandro.santos@zup.com.br",
"license": "MIT",
"repository": {
"type": "git",
"url": "git@github.com:sandrosantoszup/github-selhostedrunner-ec2-action.git"
},
"homepage": "https://github.com/sandrosantoszup/github-selhostedrunner-ec2-action#readme",
"bugs": {
"url": "https://github.com/sandrosantoszup/github-selhostedrunner-ec2-action/issues"
},
"scripts": {
"index": "node -r dotenv/config ./src/index.js",
"lint": "eslint ./src/*.js",
"package": "ncc build ./src/index.js"
},
"dependencies": {
"@actions/core": "^1.6.0",
"@actions/github": "^5.0.0",
"aws-sdk": "^2.1080.0",
"lodash": "^4.17.21"
},
"devDependencies": {
"@vercel/ncc": "^0.33.3",
"dotenv": "^16.0.0",
"eslint": "^8.9.0"
}
}