forked from Ohiekkar/mongoose-pagination
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 971 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
37
38
39
40
41
42
43
44
45
46
{
"name": "mongoose-pagination",
"version": "1.0.0",
"description": "Mongoose Query Pagination",
"main": "./lib/pagination.js",
"peerDependencies": {
"mongoose": "^4.1.12"
},
"devDependencies":{
"mongoose": "^4.1.12",
"chai": "~1.3.0",
"coffee-script": "~1.3.3",
"mocha": "~1.6.0"
},
"directories": {
"test": "test"
},
"scripts": {
"test": "./node_modules/mocha/bin/mocha --compilers coffee:coffee-script"
},
"keywords": [
"mongoose",
"paginate",
"pagination",
"sort",
"page",
"limit"
],
"author": {
"name": "Moveline Inc.",
"email": "info@moveline.com",
"url": "https://www.moveline.com"
},
"contributors": [
{
"name": "Christopher Garvis",
"email": "christopher.garvis@moveline.com",
"url": "https://github.com/cgarvis"
}
],
"repository": {
"type": "git",
"url": "https://github.com/Moveline/mongoose-pagination.git"
},
"license": "MIT"
}