-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
56 lines (56 loc) · 1.37 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
{
"name": "recachegoose",
"version": "11.0.3",
"description": "Mongoose caching that actually works.",
"main": "index.js",
"types": "index.d.ts",
"directories": {
"test": "test"
},
"dependencies": {
"recacheman": "^2.3.5",
"recacheman-file": "^0.2.5",
"recacheman-redis": "^3.0.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/aalfiann/recachegoose.git"
},
"keywords": [
"cache",
"mongo",
"mongodb",
"mongoose",
"redis",
"store",
"ttl"
],
"author": "Bob Lauer <rlauer@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/aalfiann/recachegoose/issues"
},
"homepage": "https://github.com/aalfiann/recachegoose"
}