-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
37 lines (37 loc) · 1.06 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
{
"name": "github-runner-ec2-start",
"version": "1.0.0",
"description": "",
"main": "build/index.js",
"scripts": {
"build": "tsc",
"package": "npm run build && ncc build build/index.js --license licenses.txt",
"lint": "npx eslint ./src",
"prettier": "npx prettier ./src --write"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rogisolorzano/github-runner-ec2-start.git"
},
"author": "Rogi Solorzano",
"license": "ISC",
"bugs": {
"url": "https://github.com/rogisolorzano/github-runner-ec2-start/issues"
},
"homepage": "https://github.com/rogisolorzano/github-runner-ec2-start#readme",
"dependencies": {
"@actions/core": "^1.10.0",
"@actions/github": "^5.1.1",
"@aws-sdk/client-ec2": "^3.312.0"
},
"devDependencies": {
"@types/node": "^18.13.0",
"@typescript-eslint/eslint-plugin": "^5.52.0",
"@typescript-eslint/parser": "^5.52.0",
"@vercel/ncc": "^0.36.1",
"eslint": "^8.34.0",
"eslint-config-prettier": "^8.6.0",
"prettier": "2.8.4",
"typescript": "^4.9.5"
}
}