-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
50 lines (50 loc) · 1.66 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
{
"name": "mysql-connection-pool-manager",
"version": "1.5.8",
"description": "This is a mySQL Connection Pool Manager wrapper powered by mysqljs/mysql and allows for intelligent management & load balancing mysql connection pools.",
"main": "index.js",
"scripts": {
"pretest": "cd ./test/ && bash setup.sh && cd ./../",
"test": "cd ./test/ && node start-tests.js",
"format": "prettier --config ./.prettierrc --write './**/*.js'",
"format-windows": "prettier --config ./.prettierrc --write ./**/*.js",
"deploy-patch": "git commit -a -m 'module update: patch' && git push && npm version patch && npm publish",
"deploy-minor": "git commit -a -m 'module update: minor' && git push && npm version minor && npm publish",
"deploy-major": "git commit -a -m 'module update: major' && git push && npm version major && npm publish"
},
"repository": {
"type": "git",
"url": "git+https://github.com/daviemakz/mysql-connection-pool-manager.git"
},
"keywords": [
"mysql",
"connection",
"pool",
"manager"
],
"author": "David Makuni",
"license": "MIT",
"bugs": {
"url": "https://github.com/daviemakz/mysql-connection-pool-manager/issues"
},
"homepage": "https://github.com/daviemakz/mysql-connection-pool-manager#readme",
"dependencies": {
"async": "^3.0.1",
"auto-bind": "^4.0.0",
"lodash": "^4.17.11",
"md5": "^2.2.1"
},
"peerDependencies": {
"mysql": ">= 2.14.0 < 3.0.0"
},
"devDependencies": {
"assert": "^2.0.0",
"bluebird": "^3.5.0",
"chai": "^4.1.1",
"graceful-fs": "^4.1.11",
"mocha": "7.0.1",
"mysql": "^2.15.0",
"path": "^0.12.7",
"prettier": "^2.0.0"
}
}