-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
46 lines (46 loc) · 1.11 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
{
"name": "k8s-deployer-action",
"version": "0.0.6",
"license": "MIT",
"main": "dist/index.js",
"types": "dist/main.d.ts",
"files": [
"dist"
],
"author": "David Gamote",
"repository": {
"type": "git",
"url": "https://github.com/Gamote/k8s-deployer-action.git"
},
"keywords": [
"k8s",
"kubernetes",
"action",
"github",
"helm"
],
"scripts": {
"build": "ncc build src/main.ts",
"buildw": "ncc build src/main.ts -w",
"lint": "eslint .",
"lint-and-fix": "eslint . --fix",
"start": "node dist/index.js"
},
"dependencies": {},
"devDependencies": {
"@actions/core": "^1.10.0",
"@actions/exec": "^1.1.1",
"@actions/tool-cache": "^2.0.1",
"@types/node": "^18.11.13",
"@typescript-eslint/eslint-plugin": "^5.46.0",
"@typescript-eslint/parser": "^5.46.0",
"@vercel/ncc": "^0.36.0",
"eslint": "^8.29.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "npm:eslint-plugin-i",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-promise": "^6.1.1",
"prettier": "^2.8.1",
"typescript": "^4.9.4"
}
}