forked from aalfiann/recachegoose
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
63 lines (63 loc) · 1.6 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
{
"name": "recachegoose-ioredis",
"version": "11.0.5",
"description": "A Mongoose caching module that works exactly how you'd expect, fully compatible with the latest version of Mongoose and optimized with ioredis for better integration in serverless environments.",
"main": "index.js",
"types": "index.d.ts",
"directories": {
"test": "test"
},
"dependencies": {
"ioredis": "^5.4.1",
"sha1": "^1.1.1"
},
"peerDependencies": {
"mongoose": "^5.0.1 || ^6.0.0 || ^7.0.0 || ^8.0.0"
},
"devDependencies": {
"@babel/cli": "^7.24.7",
"@babel/core": "^7.24.7",
"eslint": "^8.48.0",
"eslint-plugin-mocha": "^10.1.0",
"mocha": "^10.2.0",
"mocha-lcov-reporter": "^1.3.0",
"mongoose": "^5.13.17",
"nyc": "^15.1.0",
"should": "^13.2.1"
},
"scripts": {
"test": "npm run lint && npm run build && nyc --reporter=html --reporter=text mocha --exit",
"coverage": "nyc report --reporter=text-lcov",
"lint": "eslint .",
"build": "babel src --out-dir dist",
"prepublish": "npm run lint && npm run build"
},
"repository": {
"type": "git",
"url": "https://github.com/lauirvin/recachegoose-ioredis.git"
},
"keywords": [
"cache",
"mongo",
"mongodb",
"mongoose",
"redis",
"store",
"ttl",
"serverless",
"lambda",
"amplify",
"aws",
"azure",
"google",
"cloud",
"cache",
"caching"
],
"author": "Irvin Ives Lau",
"license": "MIT",
"bugs": {
"url": "https://github.com/lauirvin/recachegoose-ioredis/issues"
},
"homepage": "https://github.com/lauirvin/recachegoose-ioredis"
}