-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
73 lines (73 loc) · 1.65 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "@momsfriendlydevco/cache",
"version": "3.5.3",
"description": "Generic caching module (FileSystem, MemcacheD, in-memory, Mongo, Redis)",
"directories": {
"test": "test"
},
"scripts": {
"lint": "eslint .",
"test": "mocha"
},
"type": "module",
"exports": {
".": {
"browser": "./lib/browser.js",
"node": "./lib/node.js"
}
},
"imports": {
"#cache": {
"browser": "./lib/browser.js",
"node": "./lib/node.js"
}
},
"engineStrict": true,
"engines": {
"node": ">=16.14.0"
},
"keywords": [
"cache",
"memory",
"memcached",
"mongodb",
"redis"
],
"author": "Matt Carter <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git://github.com/MomsFriendlyDevCo/generic-cache.git"
},
"bugs": {
"url": "https://github.com/MomsFriendlyDevCo/generic-cache/issues"
},
"homepage": "https://github.com/MomsFriendlyDevCo/generic-cache",
"dependencies": {
"@momsfriendlydevco/es6": "^1.3.2",
"@momsfriendlydevco/eslint-config": "^2.0.5",
"@momsfriendlydevco/marshal": "2.0.0",
"debug": "^4.3.4",
"lodash-es": "^4.17.21",
"nanoid": "^5.0.9",
"object-hash": "^3.0.0",
"timestring": "^7.0.0"
},
"devDependencies": {
"axios": "^1.6.8",
"body-parser": "^1.20.2",
"chai": "^5.1.2",
"eslint": "^9.18.0",
"express": "^4.19.2",
"express-log-url": "^1.6.0",
"mocha": "^11.0.1",
"mocha-logger": "^1.0.8",
"moment": "^2.30.1"
},
"optionalDependencies": {
"@supabase/supabase-js": "^2.31.0",
"memcached": "^2.2.2",
"mongoose": "^7.1.0",
"redis": "^4.6.6"
}
}