-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathpackage.json
42 lines (42 loc) · 1.12 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
{
"name": "setup-helm",
"version": "1.0.0",
"description": "setup helm https://go.dev/security/vuln/",
"main": "lib/setup-helm.js",
"scripts": {
"build": "ncc build -o dist/setup-helm src/setup-helm.ts",
"test": "echo \"Error: no test specified\" && exit 1",
"lint": "eslint --fix src && prettier --write **/*.ts",
"lint:ci": "eslint --quiet src && prettier --check **/*.ts"
},
"repository": {
"type": "git",
"url": "https://github.com/0xProject/setup-helm.git"
},
"keywords": [
"actions",
"helm",
"setup"
],
"author": "Marcin Wolny",
"license": "MIT",
"bugs": {
"url": "https://github.com/0xProject/setup-helm/issues"
},
"homepage": "https://github.com/0xProject/setup-helm#readme",
"devDependencies": {
"@types/node": "^20",
"@typescript-eslint/eslint-plugin": "^5",
"@typescript-eslint/parser": "^5",
"@vercel/ncc": "^0",
"eslint": "^8",
"eslint-config-prettier": "^9",
"prettier": "^3",
"typescript": "^5"
},
"dependencies": {
"@actions/core": "^1.10.1",
"@actions/exec": "^1.1.1",
"@actions/tool-cache": "^2.0.1"
}
}