-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 911 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 911 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
{
"name": "pooling",
"description": "General purpose resource pool API",
"version": "0.4.6",
"author": "Mark Cavage <mcavage@gmail.com>",
"main": "lib/index.js",
"repository": {
"type": "git",
"url": "git://github.com/mcavage/node-pooling.git"
},
"engines": {
"node": ">=0.8"
},
"dependencies": {
"assert-plus": "0.1.5",
"bunyan": "0.22.1",
"once": "1.3.0",
"vasync": "1.4.0"
},
"optionalDependencies": {
"dtrace-provider": "0.2.8"
},
"devDependencies": {
"cover": "0.2.9",
"nodeunit": "0.8.1"
},
"scripts": {
"test": "./node_modules/.bin/nodeunit ./test/*.test.js | ./node_modules/.bin/bunyan"
}
}