-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.72 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 1.72 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
66
67
68
{
"name": "@tawk.to/mongo-cursor-pagination",
"version": "1.0.0",
"description": "Make it easy to return cursor-paginated results from a Mongo collection",
"main": "index.js",
"files": [
"index.js",
"dist",
"src"
],
"scripts": {
"babelBuild": "babel src -d dist/node",
"babelWatch": "babel --watch src -d dist/node",
"ci": "npm run lint && npm run test",
"lint": "eslint .",
"test": "npm run babelBuild; jest --forceExit",
"prepublishOnly": "npm run babelBuild && npm run lint && npm run test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tawk/mongo-cursor-pagination.git"
},
"keywords": [
"mongo",
"pagination",
"cursor",
"database",
"fulltext",
"search",
"find"
],
"author": "tawk.to",
"license": "MIT",
"bugs": {
"url": "https://github.com/tawk/mongo-cursor-pagination/issues"
},
"homepage": "https://github.com/tawk/mongo-cursor-pagination#readme",
"dependencies": {
"base64-url": "^2.2.0",
"bson": "^5.2.0",
"object-path": "^0.11.5",
"projection-utils": "^1.1.0",
"semver": "^5.4.1",
"underscore": "^1.9.2"
},
"devDependencies": {
"@babel/cli": "^7.18.10",
"@babel/core": "^7.18.13",
"@babel/preset-env": "^7.18.10",
"babel-jest": "^29.0.0",
"eslint": "^8.33.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-n": "^15.1.0",
"eslint-plugin-newline-destructuring": "^1.1.1",
"eslint-plugin-promise": "^6.0.0",
"jest": "^26.0.1",
"mongodb": "^5.2.0",
"mongodb-memory-server": "8.12.2",
"prettier": "^1.19.1"
},
"engines": {
"node": ">= 6.9.1"
},
"publishConfig": {
"access": "public"
}
}