-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
35 lines (35 loc) · 878 Bytes
/
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
{
"name": "pool2",
"version": "1.4.1",
"repository": {
"type": "git",
"url": "http://github.com/myndzi/pool2"
},
"description": "Resource pool built with database drivers in mind",
"keywords": [
"database",
"pool",
"cluster"
],
"main": "index.js",
"scripts": {
"bamp": "bamp",
"test": "NODE_ENV=testing mocha -u bdd -R spec --bail test/*.test.js;jshint lib/*.js",
"cov": "NODE_ENV=testing istanbul cover node_modules/.bin/_mocha -- -u bdd -R spec --bail test/*.test.js;jshint lib/*.js"
},
"author": "Kris Reeves",
"license": "ISC",
"dependencies": {
"debug": "^2.1.3",
"double-ended-queue": "^2.1.0-0",
"hashmap": "^2.0.1",
"simple-backoff": "^1.0.0"
},
"devDependencies": {
"bamp": "^1.0.11",
"istanbul": "^0.3.6",
"jshint": "^2.6.0",
"mocha": "^2.1.0",
"should": "^5.0.0"
}
}