-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
71 lines (71 loc) · 2.12 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
{
"name": "google-cloud-sql",
"version": "1.8.0",
"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": ">= 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": "8.3.0",
"conf": "10.2.0",
"exit-hook": "2.2.1",
"fuse.js": "6.6.2",
"inquirer": "8.2.5",
"inquirer-autocomplete-prompt": "1.4.0",
"lodash": "4.17.21",
"memoizee": "0.4.15",
"shelljs": "0.8.5",
"update-notifier": "5.1.0"
},
"devDependencies": {
"@semantic-release/changelog": "6.0.1",
"@semantic-release/exec": "6.0.3",
"@semantic-release/git": "10.0.1",
"@tsconfig/node14": "1.0.3",
"@types/inquirer": "8.2.4",
"@types/inquirer-autocomplete-prompt": "1.3.5",
"@types/lodash": "4.14.187",
"@types/memoizee": "0.4.8",
"@types/node": "18.11.9",
"@types/shelljs": "0.8.11",
"@types/update-notifier": "5.1.0",
"@typescript-eslint/eslint-plugin": "5.42.0",
"@typescript-eslint/parser": "5.42.0",
"eslint": "8.26.0",
"eslint-config-prettier": "8.5.0",
"husky": "7.0.4",
"pkg": "5.8.0",
"prettier-package-json": "2.7.0",
"rimraf": "3.0.2",
"semantic-release": "19.0.5",
"ts-node": "10.9.1",
"typescript": "4.8.4"
}
}