-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
36 lines (36 loc) · 910 Bytes
/
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
{
"name": "mongoose-cache-manager",
"version": "0.1.0",
"description": "Cache mongoose queries in memory, redis or use your own driver.",
"main": "index.js",
"scripts": {
"test": "gulp test",
"testci": "gulp testci",
"perf": "mocha ./test/perf"
},
"repository": {
"type": "git",
"url": "https://github.com/englercj/mongoose-cache-manager.git"
},
"author": "Chad Engler <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/englercj/mongoose-cache-manager/issues"
},
"homepage": "https://github.com/englercj/mongoose-cache-manager",
"dependencies": {
"redis": "~0.11.0"
},
"optionalDependencies": {
"hiredis": "~0.1.17"
},
"devDependencies": {
"gulp": "~3.8.6",
"gulp-mocha": "~0.5.1",
"gulp-jshint": "~1.7.1",
"mocha": "~1.20.1",
"chai": "~1.9.1",
"mongoose": "~3.8.6",
"async": "*"
}
}