node-pg-connection-pool
Version:
Connection pool for node-postgres with generic-pool support
56 lines (55 loc) • 1.88 kB
JSON
{
"name": "node-pg-connection-pool",
"version": "0.9.1",
"description": "Connection pool for node-postgres with generic-pool support",
"main": "index.js",
"scripts": {
"lint": "node_modules/.bin/eslint ./lib",
"test": "./node_modules/.bin/mocha --reporter spec && npm run lint",
"cover": "./node_modules/.bin/istanbul cover ./node_modules/mocha/bin/_mocha",
"coveralls": "npm run cover -- --report lcovonly && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js",
"docs:generate": "./node_modules/.bin/jsdoc -c .jsdoc.json",
"docs:publish": "npm run docs:generate && sh ./scripts/gh_deploy.sh",
"publish:patch": "npm version patch && npm run publish:push",
"publish:minor": "npm version minor && npm run publish:push",
"publish:major": "npm version major && npm run publish:push",
"publish:push": "git push origin master --follow-tags && npm publish",
"postpublish": "npm run docs:generate && npm run docs:publish"
},
"repository": {
"type": "git",
"url": "git+https://github.com/pasupulaphani/node-pg-connection-pool.git"
},
"keywords": [
"pg",
"postgres",
"pool",
"database",
"node-pool",
"Connection-pool",
"generic-pool"
],
"author": "pasupulaphani@gmail.com",
"license": "MIT",
"bugs": {
"url": "https://github.com/pasupulaphani/node-pg-connection-pool/issues"
},
"homepage": "https://github.com/pasupulaphani/node-pg-connection-pool#readme",
"dependencies": {
"generic-pool": "^3.2.0",
"lodash.pick": "^4.4.0",
"pg": "^7.4.0",
"retry-as-promised": "^2.3.2"
},
"devDependencies": {
"bluebird": "^3.5.1",
"coveralls": "^2.11.16",
"docdash": "^0.4.0",
"eslint": "^4.13.1",
"istanbul": "^0.4.5",
"jsdoc": "^3.5.5",
"mocha": "^3.2.0",
"mocha-lcov-reporter": "^1.3.0",
"should": "^13.1.3"
}
}