forked from redhat-actions/openshift-tools-installer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.61 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
45
46
47
48
49
50
{
"name": "openshift-client-downloader",
"version": "1.0.0",
"description": "Download client binaries from the OpenShift download site",
"repository": {
"type": "git",
"url": "https://github.com/redhat-actions/openshift-tools-installer"
},
"scripts": {
"compile": "tsc -p .",
"bundle": "npx webpack --mode=production",
"clean": "rm -rf out/ dist/",
"lint": "eslint . --max-warnings=0",
"generate-ios": "npx action-io-generator -w -o ./src/generated/inputs-outputs.ts",
"dev-test": "export RUNNER_TEMP=./tmp/; export CLI_INSTALLER_SKIP_CACHE=true; ts-node src/test/test.ts"
},
"author": "Red Hat",
"license": "MIT",
"devDependencies": {
"@redhat-actions/action-io-generator": "^1.5.0",
"@redhat-actions/eslint-config": "^1.3.2",
"@redhat-actions/tsconfig": "^1.2.0",
"@types/cheerio": "^0.22.29",
"@types/node": "^12.19.12",
"@types/semver": "^7.3.6",
"@typescript-eslint/eslint-plugin": "^5.54.1",
"@typescript-eslint/parser": "^5.54.1",
"eslint": "^8.36.0",
"ts-loader": "^9.2.3",
"ts-node": "^10.1.0",
"typescript": "^4.3.5",
"webpack": "^5.44.0",
"webpack-cli": "^4.7.2"
},
"dependencies": {
"@actions/cache": "^1.0.7",
"@actions/core": "^1.10.0",
"@actions/exec": "^1.0.4",
"@actions/github": "^5.0.0",
"@actions/glob": "^0.1.2",
"@actions/http-client": "^1.0.11",
"@actions/io": "^1.1.1",
"@actions/tool-cache": "^1.6.1",
"@octokit/core": "^3.5.1",
"@octokit/openapi-types": "^7.2.1",
"@octokit/plugin-paginate-rest": "^2.14.0",
"cheerio": "^1.0.0-rc.9",
"semver": "^7.5.2"
}
}