forked from dial-once/node-cache-manager-redis
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 1001 Bytes
/
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.4.0",
"description": "Redis store for the node-cache-manager",
"main": "index.js",
"scripts": {
"test": "node_modules/.bin/mocha --recursive test",
"coverage": "node_modules/.bin/istanbul cover _mocha -- test --recursive",
"lint": "node_modules/.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": {
"istanbul": "^0.4.0",
"jsdoc": "^3.3.3",
"jshint": "^2.8.0",
"minami": "^1.1.1",
"mocha": "^3.0.2",
"sinon": "^1.17.2"
}
}