-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathpackage.json
More file actions
103 lines (103 loc) · 2.6 KB
/
package.json
File metadata and controls
103 lines (103 loc) · 2.6 KB
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
93
94
95
96
97
98
99
100
101
102
103
{
"name": "@google-cloud/cloud-sql-connector",
"version": "1.9.2",
"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": "tap -t0 -c test",
"presystem-test": "npm run prepare",
"system-test": "tap --disable-coverage --allow-empty-coverage system-test",
"sample-test": "tap --disable-coverage --allow-empty-coverage examples",
"lint": "gts check",
"fix": "gts fix",
"posttest": "npm run lint"
},
"tap": {
"serial": [
"examples/prisma/mysql",
"examples/prisma/postgresql",
"test/serial"
],
"show-full-coverage": true,
"branches": 94,
"functions": 96,
"lines": 96,
"statements": 96
},
"devDependencies": {
"@prisma/client": "^5.22.0",
"@sequelize/core": "^7.0.0-alpha.29",
"@sequelize/mssql": "^7.0.0-alpha.29",
"@sequelize/mysql": "^7.0.0-alpha.29",
"@sequelize/postgres": "^7.0.0-alpha.29",
"@types/node": "^24.12.0",
"@types/pg": "^8.18.0",
"@types/tap": "^18.0.0",
"@types/tedious": "^18.0.0",
"@typescript-eslint/eslint-plugin": "^7.18.0",
"eslint-plugin-prettier": "^5.5.5",
"gts": "^5.3.1",
"knex": "^3.1.0",
"mssql": "^12.2.0",
"mysql2": "^3.19.1",
"nock": "^14.0.11",
"pg": "^8.20.0",
"prisma": "^5.22.0",
"tap": "^21.6.2",
"tedious": "^19.2.1",
"typeorm": "^0.3.28",
"typescript": "^5.9.3"
},
"engines": {
"node": ">=18"
},
"repository": {
"type": "git",
"url": "git+https://github.com/GoogleCloudPlatform/cloud-sql-nodejs-connector"
},
"dependencies": {
"@googleapis/sqladmin": "^35.2.0",
"gaxios": "^7.1.4",
"google-auth-library": "^10.6.1",
"p-throttle": "^7.0.0"
},
"overrides": {
"make-fetch-happen": "12.0.0"
}
}