This repository has been archived by the owner on Apr 22, 2024. It is now read-only.
forked from GoogleCloudPlatform/cloud-sql-nodejs-connector
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
92 lines (92 loc) · 2.16 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
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
{
"name": "@google-cloud/cloud-sql-connector",
"version": "1.0.0",
"description": "A JavaScript library for connecting securely to your Cloud SQL instances",
"author": "Google Inc.",
"main": "./dist/cjs/index.js",
"types": "./dist/cjs/index.d.ts",
"module": "./dist/mjs/index.js",
"exports": {
".": {
"import": {
"types": "./dist/mjs/index.d.ts",
"default": "./dist/mjs/index.js"
},
"require": {
"types": "./dist/cjs/index.d.ts",
"default": "./dist/cjs/index.js"
}
}
},
"files": [
"dist"
],
"keywords": [
"connector",
"cloud",
"cloud-sql",
"databases",
"db",
"Google Cloud",
"mysql2",
"pg",
"sql",
"tedious"
],
"license": "Apache-2.0",
"scripts": {
"clean": "rm -rf dist",
"compile": "tsc -p tsconfig.json && tsc -p tsconfig-esm.json",
"prepare": "rm -rf dist && npm run compile && node ./scripts/fixup.cjs",
"pretest": "npm run prepare",
"presnap": "npm run prepare",
"test": "c8 --100 tap",
"snap": "c8 tap",
"presystem-test": "npm run prepare",
"system-test": "tap --no-coverage system-test",
"lint": "gts check",
"fix": "gts fix",
"posttest": "npm run lint"
},
"tap": {
"coverage": false,
"node-arg": [
"--no-warnings",
"--loader",
"ts-node/esm"
],
"ts": false
},
"devDependencies": {
"@types/node": "^20.4.9",
"@types/pg": "^8.10.1",
"@types/semver": "^7.5.0",
"@types/tap": "^15.0.8",
"@types/tedious": "^4.0.9",
"@typescript-eslint/eslint-plugin": "^6.3.0",
"c8": "^8.0.0",
"eslint-plugin-prettier": "^5.0.0",
"gts": "^5.0.0",
"mysql2": "^3.2.0",
"nock": "^13.3.0",
"pg": "^8.10.0",
"semver": "^7.5.1",
"tap": "^16.3.4",
"tedious": "^16.1.0",
"ts-node": "^10.9.1",
"typescript": "^5.1.6"
},
"engines": {
"node": ">=14"
},
"repository": {
"type": "git",
"url": "git+https://github.com/GoogleCloudPlatform/cloud-sql-nodejs-connector"
},
"dependencies": {
"@googleapis/sqladmin": "^10.1.1",
"gaxios": "^6.1.0",
"google-auth-library": "^9.0.0",
"p-throttle": "^5.1.0"
}
}