forked from machulav/ec2-github-runner
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
30 lines (30 loc) · 867 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": "ec2-github-runner",
"description": "GitHub Action for automatic creation and registration AWS EC2 instance as a GitHub Actions self-hosted runner.",
"author": "Volodymyr Machula",
"license": "MIT",
"repository": {
"type": "git",
"url": "[email protected]:machulav/ec2-github-runner.git"
},
"homepage": "https://github.com/machulav/ec2-github-runner#readme",
"bugs": {
"url": "https://github.com/machulav/ec2-github-runner/issues"
},
"scripts": {
"index": "node -r dotenv/config ./src/index.js",
"lint": "eslint ./src/*.js",
"package": "ncc build ./src/index.js"
},
"dependencies": {
"@actions/core": "^1.2.6",
"@actions/github": "^4.0.0",
"aws-sdk": "^2.809.0",
"lodash": "^4.17.21"
},
"devDependencies": {
"@vercel/ncc": "^0.25.1",
"dotenv": "^8.2.0",
"eslint": "^7.15.0"
}
}