-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.11 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
{
"name": "mongoose-simple-pager",
"version": "1.4.0",
"type": "module",
"description": "Lightweight pagination plugin for mongoose",
"main": "index.js",
"scripts": {
"test": "jest --runInBand --detectOpenHandles --coverage && coveralls < coverage/lcov.info"
},
"jest": {
"testEnvironment": "node"
},
"repository": {
"type": "git",
"url": "git://github.com/3zrv/mongoose-simple-pager.git"
},
"keywords": [
"nodejs",
"mongoose",
"mongo",
"paginate",
"pagination"
],
"author": "Ezra",
"license": "MIT",
"bugs": {
"url": "https://github.com/3zrv/mongoose-simple-pager/issues"
},
"homepage": "https://github.com/3zrv/mongoose-simple-pager#readme",
"devDependencies": {
"@babel/core": "^7.20.12",
"@babel/preset-env": "^7.20.2",
"@babel/preset-typescript": "^7.18.6",
"babel-jest": "^29.3.1",
"coveralls": "^3.1.1",
"eslint": "^8.31.0",
"eslint-config-prettier": "^8.6.0",
"eslint-plugin-prettier": "^4.2.1",
"jest": "^29.3.1",
"mongodb-memory-server": "^8.10.2",
"mongoose": "^6.8.2",
"prettier": "^2.8.1"
}
}