simple-redis-pool
Version:
Simplistic node redis pool ready can scale with generic-pool support
67 lines (66 loc) • 2.04 kB
JSON
{
"name": "simple-redis-pool",
"version": "2.7.0",
"description": "Simplistic node redis pool ready can scale with generic-pool support",
"main": "index.js",
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/pasupulaphani/simple-redis-pool.git"
},
"engines": {
"node": ">=4"
},
"bugs": {
"url": "https://github.com/pasupulaphani/simple-redis-pool/issues"
},
"homepage": "https://github.com/pasupulaphani/simple-redis-pool#readme",
"directories": {
"test": "test"
},
"author": "pasupulaphani@gmail.com",
"license": "WTFPL",
"keywords": [
"node",
"redis",
"cache",
"store",
"connection",
"pool",
"node-pool",
"generic-pool",
"connection pooling"
],
"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": "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"
},
"dependencies": {
"debug": "^2.6.0",
"es6-promisify": "^5.0.0",
"generic-pool": "3.1.6",
"lodash.pick": "^4.4.0",
"redis": "^2.6.3",
"retry-as-promised": "^2.2.0"
},
"devDependencies": {
"bluebird": "^3.4.7",
"coveralls": "^2.11.15",
"docdash": "^0.4.0",
"eslint": "^3.13.1",
"ink-docstrap": "^1.3.0",
"istanbul": "^0.4.5",
"jsdoc": "^3.4.3",
"mocha": "^3.2.0",
"mocha-lcov-reporter": "^1.2.0",
"should": "^11.1.2"
}
}