-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
61 lines (61 loc) · 1.83 KB
/
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
{
"name": "node-redis-store",
"version": "0.10.0",
"description": "Simplistic node redis store ready can scale with generic-pool support",
"main": "index.js",
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/pasupulaphani/node-redis-store.git"
},
"engines": {
"node": ">=4"
},
"bugs": {
"url": "https://github.com/pasupulaphani/node-redis-store/issues"
},
"homepage": "https://github.com/pasupulaphani/node-redis-store#readme",
"directories": {
"test": "test"
},
"author": "pasupulaphani@gmail.com",
"license": "WTFPL",
"keywords": [
"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",
"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": "^3.1.0",
"is-json": "^2.0.1",
"lodash.pick": "^4.4.0",
"node-redis-connection-pool": "^3.0.0"
},
"devDependencies": {
"bluebird": "^3.5.1",
"coveralls": "^2.11.15",
"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"
}
}