UNPKG

node-cache-redis-fork

Version:

Simplistic node redis cache ready can scale with generic-pool support

74 lines (73 loc) 2.11 kB
{ "name": "node-cache-redis-fork", "version": "2.6.0", "description": "Simplistic node redis cache ready can scale with generic-pool support", "main": "index.js", "repository": { "type": "git", "url": "git+ssh://git@github.com/pasupulaphani/node-cache-redis.git" }, "engines": { "node": ">=4" }, "bugs": { "url": "https://github.com/pasupulaphani/node-cache-redis/issues" }, "homepage": "https://github.com/pasupulaphani/node-cache-redis#readme", "directories": { "test": "test" }, "author": "pasupulaphani@gmail.com", "contributors": [ { "name": "Ron Yang", "email": "yrong1997@gmail.com" } ], "license": "WTFPL", "keywords": [ "redis", "cache", "store", "connection", "pool", "node-pool", "generic-pool", "connection pooling", "scalable", "semaphore", "Serialization" ], "scripts": { "lint": "node_modules/.bin/eslint ./lib", "test": "npm run lint&&./node_modules/.bin/mocha --reporter spec", "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", "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", "prepublish": "npm run docs:generate" }, "dependencies": { "debug": "^4.1.1", "es6-promisify": "^6.0.1", "generic-pool": "^3.7.1", "is-json": "^2.0.1", "lodash.pick": "^4.4.0", "redis": "^2.8.0", "retry-as-promised": "^2.2.0" }, "devDependencies": { "bluebird": "^3.5.0", "coveralls": "^2.13.1", "docdash": "^0.4.0", "eslint": "^4.13.1", "istanbul": "^0.4.5", "jsdoc": "^3.4.3", "mocha": "^3.4.1", "mocha-lcov-reporter": "^1.3.0", "should": "^13.1.3" } }