-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 998 Bytes
/
package.json
File metadata and controls
44 lines (44 loc) · 998 Bytes
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
{
"name": "node-cloud-sql-proxy",
"version": "0.1.6",
"description": "Node wrapper for the google sql cloud proxy",
"repository": "github:sipgate/node-cloud-sql-proxy",
"contributors": [
{
"name": "Leon Erath",
"email": "leon-erath@hotmail.de"
}
],
"main": "dist/index.js",
"types": "dist/index.d.ts",
"type": "commonjs",
"scripts": {
"local": "tsc && cp package.json ./dist/ && npm link",
"build": "tsc",
"download": "./scripts/download.sh",
"version": "git add .",
"postversion": "git push && git push --tags",
"prepare": "npm run build"
},
"files": [
"dist/**/*",
"bin/**/*"
],
"license": "MIT",
"devDependencies": {},
"dependencies": {
"@types/node": "^16.11.4",
"chalk": "^4.1.2",
"dotenv": "^10.0.0",
"dotenv-expand": "^5.1.0",
"ts-node": "^10.4.0",
"typescript": "^4.4.4"
},
"keywords": [
"node",
"cloud-sql-auth-proxy",
"google",
"cloud",
"auth-proxy"
]
}