-
Notifications
You must be signed in to change notification settings - Fork 29
/
package.json
37 lines (37 loc) · 1.04 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
{
"name": "cache-manager-redis",
"version": "0.6.0",
"description": "Redis store for the node-cache-manager",
"main": "index.js",
"scripts": {
"test": "node_modules/.bin/mocha --recursive test --exit",
"cover": "CONSOLE_LOGGING=false ./node_modules/.bin/nyc --reporter=lcov ./node_modules/.bin/_mocha test --recursive --timeout=10000 --exit",
"lint": "npm bin jshint .",
"jsdoc": "node_modules/.bin/jsdoc . --package package.json --readme README.md --template node_modules/minami --destination docs"
},
"repository": {
"type": "git",
"url": "https://github.com/dial-once/node-cache-manager-redis.git"
},
"keywords": [
"cache",
"redis",
"cache manager",
"multiple cache"
],
"author": "Dial Once",
"license": "MIT",
"dependencies": {
"cache-manager": "^2.2.0",
"redis-url": "^1.2.1",
"sol-redis-pool": "^0.3.2"
},
"devDependencies": {
"mocha": "^5.2.0",
"nyc": "^12.0.2",
"jsdoc": "^3.3.3",
"jshint": "^2.8.0",
"minami": "^1.1.1",
"sinon": "^1.17.2"
}
}