forked from dabroek/node-cache-manager-redis-store
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
41 lines (41 loc) · 1.02 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
39
40
41
{
"name": "@myrror-security/cache-manager-redis-store",
"author": "Myrror Security <[email protected]>",
"description": "Redis store for node-cache-manager",
"version": "0.0.0-development",
"license": "MIT",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/blindspot-security/node-cache-manager-redis-store.git"
},
"scripts": {
"prepare": "npm prune",
"test": "vitest",
"coverage": "vitest run --coverage",
"build": "rm -rf dist && tsc -p tsconfig.build.json",
"semantic-release": "semantic-release"
},
"dependencies": {
"redis": "^4.6.10",
"cache-manager": "~5.2.3"
},
"devDependencies": {
"@types/node": "^20.9.1",
"vitest": "^0.34.6",
"@vitest/coverage-v8": "^0.34.6",
"typescript": "^5.2.2",
"semantic-release": "^22.0.8"
},
"engines": {
"node": ">= 16.18.0"
},
"keywords": [
"cache",
"redis",
"redis cache",
"nestjs redis cache",
"Myrror Security"
]
}