-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 924 Bytes
/
package.json
File metadata and controls
45 lines (45 loc) · 924 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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
{
"name": "obcachejs",
"version": "1.0.1",
"description": "Object Caching with LRU and Redis support",
"main": "index.js",
"types": "index.d.ts",
"scripts": {
"test": "mocha -R spec ./test/test.js",
"lint": "eslint ."
},
"author": "Vinayak Mishra",
"contributors": [
"Qasim Zaidi"
],
"license": "MIT",
"engines": {
"node": ">=18"
},
"dependencies": {
"debug": "^4.3.4",
"lru-cache": "^11.0.0",
"redis": "^5.0.0",
"sigmund": "^1.0.1"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"eslint": "^10.0.0",
"mocha": "^11.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/1mb-dev/obcachejs.git"
},
"homepage": "https://github.com/1mb-dev/obcachejs#readme",
"bugs": {
"url": "https://github.com/1mb-dev/obcachejs/issues"
},
"keywords": [
"cache",
"lru",
"redis",
"memoize",
"async"
]
}