-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
55 lines (55 loc) · 1.28 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
{
"name": "persistent-node-cache",
"version": "1.1.0",
"description": "persistent wrapper over node-cache for recovery",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"test": "jest --coverage",
"tsc": "tsc",
"build": "rm -rf ./lib && tsc -p .",
"start": "tsc -p . && node ./lib/index.js",
"benchmark": "tsc -p . && node ./lib/benchmarkCache.js"
},
"devDependencies": {
"@jest/globals": "^29.6.4",
"@types/jest": "^29.5.4",
"@types/node": "^20.5.6",
"@types/node-cache": "^4.2.5",
"benchmarkify": "^4.0.0",
"jest": "^29.6.4",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"typescript": "^5.2.2"
},
"dependencies": {
"node-cache": "^5.1.2"
},
"directories": {
"lib": "lib",
"test": "test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kwertop/persistent-node-cache.git"
},
"keywords": [
"fast",
"persistent",
"cache",
"caching",
"node",
"nodejs",
"recovery",
"restore",
"directio",
"in-memory",
"disk-storage"
],
"author": "Rahul Sharma",
"license": "ISC",
"bugs": {
"url": "https://github.com/kwertop/persistent-node-cache/issues"
},
"homepage": "https://github.com/kwertop/persistent-node-cache#readme"
}