forked from aravindnc/mongoose-paginate-v2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.05 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
{
"name": "mongoose-paginate-v2",
"version": "1.0.12",
"description": "A cursor based custom pagination library for Mongoose with customizable labels.",
"main": "index.js",
"scripts": {
"test": "./node_modules/.bin/mocha tests/*.js -R spec --ui bdd --timeout 5000"
},
"repository": {
"type": "git",
"url": "git+https://github.com/aravindnc/mongoose-paginate-v2.git"
},
"keywords": [
"mongoose",
"pagination",
"plugin",
"mongodb",
"paginate",
"paging",
"next",
"prev",
"nextpage",
"prevpage",
"total",
"paginator",
"plugin"
],
"author": "Aravind NC <[email protected]> (http://imwebgangster.com)",
"license": "MIT",
"bugs": {
"url": "https://github.com/aravindnc/mongoose-paginate-v2/issues"
},
"homepage": "https://github.com/aravindnc/mongoose-paginate-v2#readme",
"dependencies": {
"bluebird": "3.5.1"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"mocha": "^5.2.0",
"mongoose": "^5.2.4"
},
"engines": {
"node": ">=4.0.0"
}
}