-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
44 lines (44 loc) · 1.19 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
38
39
40
41
42
43
44
{
"name": "check-self-hosted-runner",
"version": "1.0.0",
"engines": {
"node": "16"
},
"repository": {
"type": "git",
"url": "https://github.com/redhat-actions/openshift-actions-runner-installer"
},
"description": "",
"main": "dist/index.js",
"scripts": {
"compile": "tsc -p .",
"bundle": "npx webpack --mode=production",
"clean": "rm -rf out/ dist/",
"lint": "eslint . --max-warnings=0"
},
"keywords": [],
"author": "Red Hat Inc.",
"license": "MIT",
"dependencies": {
"@actions/core": "^1.10.0",
"@actions/exec": "^1.0.4",
"@actions/github": "^4.0.0",
"@actions/io": "^1.1.0"
},
"devDependencies": {
"@redhat-actions/action-io-generator": "^1.5.0",
"@redhat-actions/eslint-config": "^1.3.2",
"@redhat-actions/tsconfig": "^1.1.1",
"@redhat-actions/webpack-config": "^1.2.0",
"@types/node": "^12.20.12",
"@types/terser-webpack-plugin": "^5.0.3",
"@typescript-eslint/eslint-plugin": "^4.22.1",
"@typescript-eslint/parser": "^4.22.1",
"eslint": "^7.26.0",
"terser-webpack-plugin": "^5.1.1",
"ts-loader": "^8.2.0",
"typescript": "^4.2.4",
"webpack": "^5.36.2",
"webpack-cli": "^4.7.0"
}
}