-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 794 Bytes
/
package.json
File metadata and controls
27 lines (27 loc) · 794 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
{
"author": "Sreekanth <gabbar@activesphere.com>"
, "name": "connection_pool"
, "description": "Connection Pool for managing connections"
, "version": "0.0.2"
, "repository": {
"type": "git"
, "url": "git@github.com:sreeix/node-connection-pool.git"
}
, "main": "lib/connection_pool.js"
, "engines": { "node": ">= 0.4.7" }
, "node-version": ">0.4.7"
, "dependencies": {
"underscore": "1.2.4"
, "async": "0.1.15"
, "winston": "0.5.10"
}
, "devDependencies": {
"mocha": "0.0.8"
, "should": "0.3.2"
, "jshint":"0.5.5"
}
, "scripts": {
"test": "mocha --reporter dot --require should --ui bdd test/lib/*.js"
, "lint": " find . -not -path '*node_modules*' -and -name '*.js' -print0 | xargs -0 node_modules/.bin/jshint"
}
}