forked from dabroek/node-cache-manager-redis-store
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 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
38
{
"name": "cache-manager-redis-store",
"author": "Matthijs Dabroek <[email protected]>",
"description": "Redis store for node-cache-manager",
"version": "2.0.0",
"license": "MIT",
"main": "dist/index.js",
"repository": {
"type": "git",
"url": "https://github.com/dabroek/node-cache-manager-redis-store.git"
},
"scripts": {
"prepare": "npm prune",
"test": "jest --forceExit",
"test-cov": "jest --forceExit --coverage && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js",
"build": "rollup -c"
},
"dependencies": {
"redis": "^3.0.2"
},
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.8.4",
"@babel/plugin-external-helpers": "^7.8.3",
"@babel/plugin-transform-runtime": "^7.8.3",
"@babel/preset-env": "^7.8.4",
"@babel/runtime": "^7.8.4",
"babel-jest": "^25.1.0",
"cache-manager": "^2.9.0",
"coveralls": "^3.0.9",
"jest": "^25.1.0",
"rollup": "^1.31.0",
"rollup-plugin-babel": "^4.3.3"
},
"engines": {
"node": ">= 8.3"
}
}