-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
42 lines (42 loc) · 1.29 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",
"version": "2.0.2",
"description": "Mongoose plugin to add pagination for aggregations",
"main": "index.js",
"scripts": {
"test": "standard && nyc node_modules/mocha/bin/_mocha --report=lcovonly -- --reporter spec --check-leaks test/",
"cov": "nyc node_modules/mocha/bin/_mocha --report=lcovonly -- --reporter spec --check-leaks test/",
"docker-mongodb": "docker run --rm -it -p 27017:27017 mongo:4.2.8 "
},
"repository": {
"type": "git",
"url": "/~https://github.com/Maheshkumar-Kakade/mongoose-aggregate-paginate.git"
},
"bugs": {
"email": "maheshkumarkakade@gmail.com",
"url": "/~https://github.com/Maheshkumar-Kakade/mongoose-aggregate-paginate/issues"
},
"homepage": "/~https://github.com/Maheshkumar-Kakade/mongoose-aggregate-paginate",
"licenses": [
{
"type": "MIT",
"url": "/~https://github.com/Maheshkumar-Kakade/mongoose-aggregate-paginate/LICENSE"
}
],
"keywords": [
"mongoose",
"paginate",
"aggregate",
"pagination"
],
"author": "Maheshkumar Kakade <maheshkumarkakade@gmail.com>",
"license": "MIT",
"devDependencies": {
"coveralls": "^3.1.0",
"nyc": "^15.1.0",
"mocha": "^8.4.0",
"mongoose": "^5.12.13",
"should": "^13.2.3",
"standard": "^16.0.3"
}
}