-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
50 lines (50 loc) · 1.25 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
{
"name": "mongoose-opt-paginate",
"version": "1.0.0",
"description": "Optimized pagination using indexes (no cursor.skip) with fallback. Used with Mongoose + Express, or Mongoose + Koa.",
"main": "index.js",
"dependencies": {
"bluebird": "^2.10.2",
"clone": "^1.0.2",
"http-errors": "^1.3.1",
"lodash": "^3.9.3"
},
"devDependencies": {
"chai": "^3.0.0",
"eslint": "^2.0.0",
"istanbul": "^0.3.22",
"mocha": "^2.2.5",
"mongoose": "^4.4.3",
"require-directory": "^2.1.1"
},
"peerDependencies": {
"mongoose": "^4.0.4"
},
"scripts": {
"test": "istanbul cover --root lib --dir ./coverage/unit ./node_modules/mocha/bin/_mocha -- test/unit",
"posttest": "eslint ."
},
"repository": {
"type": "git",
"url": "https://github.com/tesfaldet/mongoose-opt-paginate.git"
},
"keywords": [
"populate",
"sort",
"page",
"paginate",
"mongoose",
"mongodb",
"optimized",
"range",
"index",
"express",
"koa"
],
"author": "Matthew Tesfaldet <[email protected]> (http://mtesfaldet.net/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/tesfaldet/mongoose-opt-paginate/issues"
},
"homepage": "https://github.com/tesfaldet/mongoose-opt-paginate"
}