forked from edosrecki/google-cloud-redis-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
74 lines (74 loc) · 2.25 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.4",
"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": ">= 16"
},
"scripts": {
"clean": "rimraf dist bin",
"build:transpile": "tsc",
"build": "npm run clean && npm run build:transpile",
"bundle": "npm run build && pkg . --targets node18-linux,node18-macos,node18-win --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": "12.1.0",
"conf": "10.2.0",
"exit-hook": "2.2.1",
"fuse.js": "7.0.0",
"inquirer": "8.2.5",
"inquirer-autocomplete-prompt": "2.0.0",
"js-yaml": "4.1.0",
"kubernetes-models": "4.4.0",
"lodash": "4.17.21",
"memoizee": "0.4.17",
"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/node20": "20.1.4",
"@types/inquirer": "8.2.6",
"@types/inquirer-autocomplete-prompt": "2.0.0",
"@types/js-yaml": "4.0.9",
"@types/lodash": "4.17.7",
"@types/memoizee": "0.4.11",
"@types/node": "20.11.4",
"@types/shelljs": "0.8.15",
"@types/update-notifier": "5.1.0",
"@typescript-eslint/eslint-plugin": "7.18.0",
"@typescript-eslint/parser": "7.18.0",
"eslint": "8.57.0",
"eslint-config-prettier": "9.1.0",
"husky": "9.1.4",
"pkg": "5.8.1",
"prettier-package-json": "2.8.0",
"rimraf": "6.0.1",
"semantic-release": "24.0.0",
"ts-node": "10.9.2",
"typescript": "5.5.4"
}
}