-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathpackage.json
41 lines (41 loc) · 1.04 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
{
"name": "s2i-build",
"version": "1.0.0",
"engines": {
"node": "16"
},
"description": "",
"main": "dist/index.js",
"scripts": {
"compile": "tsc -p .",
"bundle": "ncc build src/s2iExec.ts --source-map --minify",
"clean": "rm -rf lib/ dist/",
"lint": "eslint . --max-warnings=0"
},
"keywords": [],
"author": "Red Hat Inc.",
"license": "MIT",
"dependencies": {
"@actions/core": "^1.10.1",
"@actions/exec": "^1.1.1",
"@actions/io": "^1.1.3",
"@actions/tool-cache": "^2.0.1",
"glob": "^7",
"mz": "^2.7.0",
"valid-url": "^1.0.9"
},
"devDependencies": {
"@redhat-actions/action-io-generator": "^1.5.0",
"@redhat-actions/eslint-config": "^1.3.2",
"@redhat-actions/tsconfig": "^1.2.0",
"@types/glob": "^8.1.0",
"@types/mz": "^2.7.8",
"@types/node": "^20",
"@types/valid-url": "^1.0.7",
"@typescript-eslint/eslint-plugin": "^7.2.0",
"@typescript-eslint/parser": "^7.2.0",
"@vercel/ncc": "^0.38.1",
"eslint": "^8.57.0",
"typescript": "^5.4.2"
}
}