forked from mixmaxhq/mongo-cursor-pagination
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.54 KB
/
package.json
File metadata and controls
65 lines (65 loc) · 1.54 KB
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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
{
"name": "@tadashi/mongo-cursor-pagination",
"version": "2.4.0",
"description": "Make it easy to return cursor-paginated results from a Mongo collection",
"type": "module",
"main": "src/index.js",
"files": [
"LICENSE",
"README.md",
"src"
],
"repository": {
"type": "git",
"url": "git+https://github.com/lagden/mongo-cursor-pagination.git"
},
"keywords": [
"mongo",
"pagination",
"cursor",
"database",
"fulltext",
"search",
"find"
],
"author": "Brad Vogel <brad@mixmax.com> (https://mixmax.com/)",
"contributors": [
"Thiago Lagden <Lagden@gmail.com>"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/lagden/mongo-cursor-pagination/issues"
},
"homepage": "https://github.com/lagden/mongo-cursor-pagination#readme",
"engines": {
"node": ">=16"
},
"scripts": {
"eslint": "eslint --ignore-path .gitignore .",
"pretest": "npm run eslint",
"test": "c8 --reporter=text --reporter=text-summary --reporter=lcovonly --reporter=cobertura ava --tap --serial -T 2m"
},
"peerDependencies": {
"mongodb": ">= 4 < 7"
},
"dependencies": {
"bson": "6.5.0",
"lodash": "4.17.21",
"object-path": "0.11.8",
"projection-utils": "1.1.0"
},
"devDependencies": {
"ava": "6.1.2",
"c8": "9.1.0",
"eslint": "8.57.0",
"eslint-plugin-sonarjs": "0.24.0",
"eslint-plugin-unicorn": "51.0.1",
"mongodb": "6.5.0",
"mongodb-memory-server": "9.1.7"
},
"ava": {
"require": [
"./test/helper/force-exit.mjs"
]
}
}