-
Notifications
You must be signed in to change notification settings - Fork 29
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 780 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 780 Bytes
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 <dabroek@gmail.com>",
"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": "^5.2.0"
},
"devDependencies": {
"cache-manager": "^4.1.0",
"coveralls": "^3.1.1",
"jest": "^28.1.3",
"rollup": "^2.77.0"
},
"engines": {
"node": ">=6.0.0"
}
}