forked from edosrecki/google-cloud-sql-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
72 lines (72 loc) · 2.14 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
{
"name": "google-cloud-sql",
"version": "1.9.3",
"description": "Connect to private Google Cloud SQL instance through Cloud SQL Auth Proxy running in GKE cluster.",
"license": "UNLICENSED",
"author": "Dinko Osrecki <[email protected]>",
"homepage": "https://github.com/edosrecki/google-cloud-sql-cli",
"repository": {
"type": "git",
"url": "git+https://github.com/edosrecki/google-cloud-sql-cli.git"
},
"bugs": {
"url": "https://github.com/edosrecki/google-cloud-sql-cli/issues"
},
"bin": {
"google-cloud-sql": "dist/index.js"
},
"engines": {
"node": ">= 20"
},
"scripts": {
"clean": "rimraf dist bin",
"prebuild": "npm run clean",
"build": "tsc --project tsconfig.build.json",
"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 .",
"lint:fix": "eslint . --fix",
"test": "npm run lint",
"prepare": "husky",
"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",
"lodash": "4.17.21",
"memoizee": "0.4.17",
"shelljs": "0.8.5",
"update-notifier": "5.1.0"
},
"devDependencies": {
"@eslint/js": "9.15.0",
"@semantic-release/changelog": "6.0.3",
"@semantic-release/exec": "6.0.3",
"@semantic-release/git": "10.0.1",
"@tsconfig/node20": "20.1.4",
"@types/eslint__js": "8.42.3",
"@types/inquirer": "8.2.6",
"@types/inquirer-autocomplete-prompt": "2.0.0",
"@types/lodash": "4.17.13",
"@types/memoizee": "0.4.11",
"@types/node": "20.17.6",
"@types/shelljs": "0.8.15",
"@types/update-notifier": "5.1.0",
"eslint": "9.14.0",
"husky": "9.1.6",
"pkg": "5.8.1",
"prettier-package-json": "2.8.0",
"rimraf": "6.0.1",
"semantic-release": "24.2.0",
"ts-node": "10.9.2",
"typescript": "5.6.3",
"typescript-eslint": "8.14.0"
}
}