forked from dabroek/node-cache-manager-ioredis
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
30 lines (30 loc) · 782 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
{
"name": "cache-manager-ioredis",
"author": "Matthijs Dabroek <[email protected]>",
"description": "IORedis store for node-cache-manager",
"version": "2.1.0",
"license": "MIT",
"main": "dist/index.js",
"repository": {
"type": "git",
"url": "https://github.com/dabroek/node-cache-manager-ioredis.git"
},
"scripts": {
"prepublish": "npm prune",
"test": "jest --forceExit",
"test-cov": "jest --forceExit --coverage && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js",
"build": "rollup -c"
},
"dependencies": {
"ioredis": "^4.14.1"
},
"devDependencies": {
"cache-manager": "^2.11.1",
"coveralls": "^3.0.9",
"jest": "^25.1.0",
"rollup": "^1.31.0"
},
"engines": {
"node": ">=6.0.0"
}
}