-
Notifications
You must be signed in to change notification settings - Fork 32
/
Copy pathpackage.json
37 lines (37 loc) · 919 Bytes
/
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
{
"name": "k8s-create-secret-action",
"version": "5.0.0",
"private": true,
"main": "lib/index.js",
"scripts": {
"prebuild": "npm i @vercel/ncc",
"build": "ncc build src/index.ts -o lib",
"test": "jest",
"format": "prettier --write .",
"format-check": "prettier --check ."
},
"keywords": [
"actions",
"node",
"setup"
],
"author": "GitHub",
"license": "MIT",
"dependencies": {
"@actions/core": "^1.11.1",
"@actions/exec": "^1.0.0",
"@actions/tool-cache": "^2.0.2",
"@babel/core": "^7.26.8",
"@babel/preset-env": "^7.26.8",
"@kubernetes/client-node": "^1.0.0"
},
"devDependencies": {
"@types/jest": "^29.5.14",
"@types/node": "^22.13.1",
"@vercel/ncc": "^0.38.3",
"jest": "^29.7.0",
"prettier": "^3.5.0",
"ts-jest": "^29.2.5",
"typescript": "^5.7.3"
}
}