-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
36 lines (36 loc) · 963 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
31
32
33
34
35
36
{
"name": "github-action-metal-server",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"lint": "eslint .",
"prepare": "ncc build index.js -o dist --source-map --license licenses.txt",
"all": "npm run lint && npm run prepare"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cprivitere/github-action-metal-runner.git"
},
"keywords": [],
"author": "Equinix Labs",
"license": "MIT",
"bugs": {
"url": "https://github.com/cprivitere/github-action-metal-runner/issues"
},
"homepage": "https://github.com/cprivitere/github-action-metal-runner#readme",
"devDependencies": {
"@vercel/ncc": "^0.38.1",
"eslint": "^8.51.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-json": "^3.1.0",
"eslint-plugin-n": "^16.2.0"
},
"engines": {
"node": ">=20.0.0"
},
"dependencies": {
"@actions/core": "^1.10.1",
"@actions/github": "^6.0.0"
}
}