forked from tesfaldet/mongoose-opt-paginate
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
58 lines (58 loc) · 1.59 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
57
58
{
"name": "hapi-mongoose-opt-paginate",
"version": "0.1.3",
"description": "Optimized pagination using indexes (no cursor.skip) with fallback. Used with Mongoose + Hapi.js base on tesfaldet/mongoose-opt-paginate.",
"main": "index.js",
"dependencies": {
"bluebird": "^2.10.2",
"boom": "^3.0.0",
"clone": "^1.0.2",
"http-errors": "^1.3.1",
"joi": "^7.0.0",
"joi-objectid": "^2.0.0",
"kerberos": "0.0.17",
"lodash": "^3.9.3"
},
"devDependencies": {
"chai": "^3.0.0",
"istanbul": "^0.3.22",
"jscs": "^2.2.1",
"jshint": "^2.8.0",
"mocha": "^2.2.5",
"mongoose": "^4.1.10",
"require-directory": "^2.1.1"
},
"peerDependencies": {
"mongoose": "^4.0.4"
},
"scripts": {
"start": "mongod --fork --port 27888 --logpath ./mongo/mongodb.log --dbpath ./mongo",
"ci": "npm run lint && npm test",
"lint": "jshint . && jscs .",
"unit": "istanbul cover --root lib --dir ./coverage/unit ./node_modules/mocha/bin/_mocha -- test/unit",
"test": "npm run unit && istanbul report",
"stop": "mongo admin --port 27888 --eval 'db.shutdownServer()'"
},
"repository": {
"type": "git",
"url": "https://github.com/jorgecuesta/mongoose-opt-paginate"
},
"keywords": [
"populate",
"sort",
"page",
"paginate",
"mongoose",
"mongodb",
"optimized",
"range",
"index",
"hapi"
],
"author": "Jorge Cuesta <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/jorgecuesta/mongoose-opt-paginate/issues"
},
"homepage": "https://github.com/jorgecuesta/mongoose-opt-paginate"
}