-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
74 lines (74 loc) · 2.21 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"name": "google-cloud-redis",
"version": "1.2.0",
"description": "Connect to private Google Cloud Redis instance through stunnel proxy running in GKE cluster.",
"license": "UNLICENSED",
"author": "Dinko Osrecki <[email protected]>",
"homepage": "https://github.com/edosrecki/google-cloud-redis-cli",
"repository": {
"type": "git",
"url": "git+https://github.com/edosrecki/google-cloud-redis-cli.git"
},
"bugs": {
"url": "https://github.com/edosrecki/google-cloud-redis-cli/issues"
},
"bin": {
"google-cloud-redis": "dist/index.js"
},
"engines": {
"node": ">= 14"
},
"scripts": {
"clean": "rimraf dist bin",
"build:transpile": "tsc",
"build": "npm run clean && npm run build:transpile",
"bundle": "npm run build && pkg . --out-dir bin",
"exec:dev": "ts-node src/index.ts",
"exec:dist": "node dist/index.js",
"lint": "eslint . --ext .ts",
"test": "npm run lint",
"prepare": "husky install",
"prettify-package-json": "prettier-package-json --write"
},
"dependencies": {
"boxen": "5.1.2",
"chalk": "4.1.2",
"commander": "11.0.0",
"conf": "10.2.0",
"exit-hook": "2.2.1",
"fuse.js": "6.6.2",
"inquirer": "8.2.5",
"inquirer-autocomplete-prompt": "2.0.0",
"js-yaml": "4.1.0",
"kubernetes-models": "4.3.1",
"lodash": "4.17.21",
"memoizee": "0.4.15",
"shelljs": "0.8.5",
"update-notifier": "5.1.0"
},
"devDependencies": {
"@semantic-release/changelog": "6.0.3",
"@semantic-release/exec": "6.0.3",
"@semantic-release/git": "10.0.1",
"@tsconfig/node16": "16.1.1",
"@types/inquirer": "8.2.6",
"@types/inquirer-autocomplete-prompt": "2.0.0",
"@types/js-yaml": "4.0.6",
"@types/lodash": "4.14.198",
"@types/memoizee": "0.4.8",
"@types/node": "16.18.39",
"@types/shelljs": "0.8.13",
"@types/update-notifier": "5.1.0",
"@typescript-eslint/eslint-plugin": "6.7.4",
"@typescript-eslint/parser": "6.7.4",
"eslint": "8.49.0",
"eslint-config-prettier": "8.8.0",
"husky": "8.0.3",
"pkg": "5.8.1",
"prettier-package-json": "2.8.0",
"rimraf": "5.0.1",
"semantic-release": "19.0.5",
"ts-node": "10.9.1",
"typescript": "5.1.6"
}
}