forked from machulav/ec2-github-runner
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 1 KB
/
Copy pathpackage.json
File metadata and controls
37 lines (37 loc) · 1 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
{
"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": "git@github.com: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",
"test": "jest",
"package": "ncc build ./src/index.js"
},
"overrides": {
"undici": "^6.28.0",
"test-exclude": "^8.0.0"
},
"dependencies": {
"@actions/core": "^2.0.3",
"@actions/github": "^8.0.1",
"@aws-sdk/client-ec2": "3.1073.0"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@vercel/ncc": "0.44.0",
"dotenv": "^17.4.2",
"eslint": "^10.4.1",
"globals": "^17.6.0",
"jest": "^30.4.2"
}
}