-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.62 KB
/
Copy pathpackage.json
File metadata and controls
65 lines (65 loc) · 1.62 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
{
"name": "@pardnchiu/mysql-pool",
"description": "A MySQL connection pool solution designed specifically for Node.js, featuring intuitive chaining syntax that integrates query builder capabilities with read-write separation.",
"version": "0.1.5",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"publishConfig": {
"access": "public"
},
"files": [
"dist/",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsc",
"build:watch": "tsc --watch",
"clean": "rm -rf dist",
"prebuild": "npm run clean",
"prepublishOnly": "npm run build",
"postpublish": "npm run clean",
"test": "jest",
"test:watch": "jest --watch",
"dev": "ts-node src/index.ts",
"lint": "eslint src/**/*.ts",
"lint:fix": "eslint src/**/*.ts --fix"
},
"keywords": [
"typescript",
"mysql2",
"chain-syntax",
"mysql",
"邱敬幃",
"pardnchiu"
],
"author": "Pardn Chiu",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/pardnchiu/nodejs-mysql-pool.git"
},
"bugs": {
"url": "https://github.com/pardnchiu/nodejs-mysql-pool/issues"
},
"homepage": "https://github.com/pardnchiu/nodejs-mysql-pool#readme",
"dependencies": {
"mysql2": "^3.14.1"
},
"devDependencies": {
"@types/node": "^22.15.21",
"@types/jest": "^29.0.0",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"typescript": "^5.0.0",
"ts-node": "^10.9.0",
"jest": "^29.0.0",
"eslint": "^8.0.0"
},
"peerDependencies": {
"mysql2": "^3.14.1"
},
"engines": {
"node": ">=20.0.0"
}
}