-
Notifications
You must be signed in to change notification settings - Fork 11
/
package.json
91 lines (91 loc) · 2.27 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
{
"name": "@google-cloud/cloud-sql-connector",
"version": "1.5.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": "tap 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
},
"devDependencies": {
"@sequelize/core": "^7.0.0-alpha.29",
"@types/node": "^22.0.0",
"@types/pg": "^8.10.1",
"@types/tap": "^18.0.0",
"@types/tedious": "^4.0.9",
"@typescript-eslint/eslint-plugin": "^7.0.0",
"eslint-plugin-prettier": "^5.0.0",
"gts": "^5.0.0",
"knex": "^3.0.1",
"mssql": "^10.0.0",
"mysql2": "^3.2.0",
"nock": "^13.3.0",
"pg": "^8.10.0",
"tap": "^21.0.0",
"tedious": "^16.1.0",
"typeorm": "^0.3.19",
"typescript": "^5.1.6"
},
"engines": {
"node": ">=18"
},
"repository": {
"type": "git",
"url": "git+https://github.com/GoogleCloudPlatform/cloud-sql-nodejs-connector"
},
"dependencies": {
"@googleapis/sqladmin": "^24.0.0",
"gaxios": "^6.1.1",
"google-auth-library": "^9.2.0",
"p-throttle": "^7.0.0"
}
}