forked from boblauer/cachegoose
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
62 lines (62 loc) · 1.4 KB
/
Copy pathpackage.json
File metadata and controls
62 lines (62 loc) · 1.4 KB
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
{
"name": "@xrip/cachegoose",
"version": "8.0.3",
"description": "Mongoose caching that actually works. Typescript ready",
"main": "index.js",
"types": "index.d.ts",
"publishConfig": { "registry": "https://npm.pkg.github.com/" },
"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/xrip/cachegoose.git"
},
"keywords": [
"cache",
"mongo",
"mongodb",
"mongoose",
"redis",
"store",
"typescript",
"ttl"
],
"author": "Bob Lauer <rlauer@gmail.com>",
"contributors": [
{
"name": "Ilya Maslennikov",
"url": "https://xrip.ru",
"githubUsername": "xrip"
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/boblauer/cachegoose/issues"
},
"homepage": "https://github.com/boblauer/cachegoose"
}