-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 1.01 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
{
"name": "dotenv-from-k8s",
"description": "A commandline cli tool to fetch, merge and convert secrets and config maps in k8s to dot env property file.",
"version": "1.5.3",
"main": "dist/cli.js",
"bin": {
"dotenv-from-k8s": "./dist/cli.js"
},
"files": [
"dist"
],
"license": "MIT",
"scripts": {
"build": "tsc",
"lint": "eslint './src/**/*.{ts,js}' --fix",
"prepack": "cross-env rm -rf ./dist && npm run build"
},
"devDependencies": {
"@types/node": "^18.0.3",
"@typescript-eslint/eslint-plugin": "^5.30.5",
"@typescript-eslint/parser": "^5.30.5",
"cross-env": "^7.0.3",
"eslint": "^8.19.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"eslint-plugin-simple-import-sort": "^10.0.0",
"prettier": "^2.7.1",
"typescript": "^5.0.4"
},
"dependencies": {
"@kubernetes/client-node": "^0.21.0",
"caporal": "^1.4.0",
"colors": "1.4.0",
"js-yaml": "^4.1.0"
},
"resolutions": {
"colors": "1.4.0"
}
}