-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
30 lines (30 loc) · 880 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
{
"name": "async-proxy-pool",
"version": "0.1.3",
"description": "Asynchronous resource pool, allowing parallel use of resource proxies.",
"repository": {
"type": "git",
"url": "https://github.com/shaunc/async-pool.git"
},
"readme": "README.md",
"main": "index.js",
"scripts": {
"test": "npm run prepublish && mocha --recursive -u bdd --compilers coffee:coffee-script,litcoffee:coffee-script/register",
"prepublish": "coffee -o lib -c src/*.litcoffee"
},
"author": "Shaun Cutts <[email protected]> (http://factfiber.com)",
"license": "ISC",
"bugs": {
"url": "https://github.com/shaunc/async-pool/issues"
},
"dependencies": {
"async-pool": "^0.2.5",
"bluebird": "^2.9.21",
"logger-facade-nodejs": "0.0.3"
},
"devDependencies": {
"chai": "^2.2.0",
"coffee-script": "^1.9.1",
"mocha": "^2.2.1"
}
}