-
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) · 1012 Bytes
/
package.json
File metadata and controls
44 lines (44 loc) · 1012 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": "@7digital/mysql2-timeout",
"version": "4.0.1",
"engines": {
"node": ">=16"
},
"description": "A wrapper for mysql2 connection pool query to support acquireTimeout and queryTimeout options",
"scripts": {
"test": "mocha",
"watch": "nodemon -q -x 'npm -s test'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/7digital/mysql2-timeout.git"
},
"author": "7digital",
"license": "ISC",
"bugs": {
"url": "https://github.com/7digital/mysql2-timeout/issues"
},
"homepage": "https://github.com/7digital/mysql2-timeout#readme",
"devDependencies": {
"chai": "^5.2.0",
"eslint": "^9.0.0",
"mocha": "^10.4.0",
"mysql2": "^2.3.3",
"nodemon": "^3.1.9"
},
"peerDependencies": {
"mysql2": ">=1 <3"
},
"files": [
"index.js"
],
"keywords": [
"mysql",
"mysql2",
"timeout"
],
"contributors": [
"Chris Watson (https://github.com/c24w)",
"Sophie Cooper (https://github.com/scooper91)"
]
}