forked from dabroek/node-cache-manager-redis-store
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1 KB
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
{
"name": "cache-manager-redis-store",
"author": "Matthijs Dabroek <dabroek@gmail.com>",
"description": "Redis store for node-cache-manager",
"version": "3.0.1",
"license": "MIT",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"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",
"build": "rollup -c"
},
"dependencies": {
"redis": "^4.3.1"
},
"devDependencies": {
"@babel/cli": "^7.19.3",
"@babel/core": "^7.19.3",
"@babel/plugin-transform-runtime": "^7.19.1",
"@babel/preset-env": "^7.19.4",
"@babel/runtime": "^7.19.4",
"@rollup/plugin-babel": "^6.0.0",
"@types/cache-manager": "^4.0.2",
"babel-jest": "^29.2.0",
"cache-manager": "^4.1.0",
"jest": "^29.2.0",
"rollup": "^2.79.1"
},
"engines": {
"node": ">= 16.18.0"
}
}