forked from Maheshkumar-Kakade/mongoose-aggregate-paginate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 1.21 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
{
"name": "mongoose-aggregate-paginate-extend",
"version": "1.1.3",
"description": "Mongoose plugin to add pagination for aggregations",
"main": "index.js",
"scripts": {
"test": "standard && istanbul cover node_modules/mocha/bin/_mocha --report lcovonly -- --reporter spec --check-leaks test/",
"cov": "istanbul cover node_modules/mocha/bin/_mocha --report lcovonly -- --reporter spec --check-leaks test/"
},
"repository": {
"type": "git",
"url": "https://github.com/thebleucheese/mongoose-aggregate-paginate-extend.git"
},
"bugs": {
"email": "[email protected]",
"url": "https://github.com/thebleucheese/mongoose-aggregate-paginate/issues"
},
"homepage": "https://github.com/thebleucheese/mongoose-aggregate-paginate",
"licenses": [
{
"type": "MIT",
"url": "https://github.com/thebleucheese/mongoose-aggregate-paginate/LICENSE"
}
],
"keywords": [
"mongoose",
"paginate",
"aggregate",
"pagination",
"offset"
],
"author": "Galen Fisher",
"license": "MIT",
"devDependencies": {
"coveralls": "^2.11.12",
"istanbul": "^0.4.5",
"mocha": "^3.0.2",
"mongoose": "^4.6.0",
"should": "^11.1.0",
"standard": "^8.0.0"
}
}