-
Notifications
You must be signed in to change notification settings - Fork 55
/
package.json
52 lines (52 loc) · 1.14 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
{
"name": "cachegoose",
"version": "8.0.0",
"description": "Mongoose caching that actually works.",
"main": "index.js",
"directories": {
"test": "test"
},
"dependencies": {
"brace-expansion": "^1.1.8",
"cacheman": "^2.2.1",
"cacheman-redis": "^1.1.2",
"jsosort": "0.0.0",
"sha1": "^1.1.1"
},
"peerDependencies": {
"mongoose": "^5.0.1"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"eslint": "^4.16.0",
"eslint-plugin-mocha": "^4.11.0",
"mocha": "^5.0.0",
"mongoose": "^5.2.15",
"should": "^13.2.1"
},
"scripts": {
"test": "npm run build && mocha --exit",
"lint": "eslint .",
"build": "babel src --out-dir out",
"prepublish": "npm run lint && npm run build"
},
"repository": {
"type": "git",
"url": "https://github.com/boblauer/cachegoose.git"
},
"keywords": [
"cache",
"mongo",
"mongodb",
"mongoose",
"redis",
"store",
"ttl"
],
"author": "Bob Lauer <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/boblauer/cachegoose/issues"
},
"homepage": "https://github.com/boblauer/cachegoose"
}