forked from mixmaxhq/mongo-cursor-pagination
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
86 lines (86 loc) · 2.42 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
{
"name": "@cameo/mongo-cursor-pagination",
"version": "7.3.1-cameo.1",
"description": "Make it easy to return cursor-paginated results from a Mongo collection",
"main": "index.js",
"files": [
"index.js",
"dist",
"src"
],
"private": true,
"scripts": {
"babelBuild": "babel src -d dist/node",
"babelWatch": "babel --watch src -d dist/node",
"ci": "npm run lint && npm run test",
"ci:commitlint": "commitlint-jenkins --pr-only",
"lint": "eslint .",
"prepublishOnly": "npm run babelBuild",
"semantic-release": "SEMANTIC_COMMITLINT_SKIP=5ed5489,e2ab709,187f1fe,0dcc73f semantic-release",
"test": "DRIVER=mongoist jest && DRIVER=native jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mixmaxhq/mongo-cursor-pagination.git"
},
"keywords": [
"mongo",
"pagination",
"cursor",
"database",
"fulltext",
"search",
"find"
],
"author": "Brad Vogel <[email protected]> (https://mixmax.com/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/mixmaxhq/mongo-cursor-pagination/issues"
},
"homepage": "https://github.com/mixmaxhq/mongo-cursor-pagination#readme",
"dependencies": {
"base64-url": "^2.2.0",
"bson": "^4.1.0",
"object-path": "^0.11.4",
"projection-utils": "^1.1.0",
"semver": "^5.4.1",
"underscore": "^1.9.2"
},
"devDependencies": {
"@commitlint/config-conventional": "^8.3.4",
"@mixmaxhq/commitlint-jenkins": "^1.4.4",
"@mixmaxhq/prettier-config": "^1.0.0",
"babel-cli": "^6.26.0",
"babel-core": "^6.26.0",
"babel-plugin-transform-async-to-generator": "^6.24.1",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"cz-conventional-changelog": "^3.2.0",
"eslint": "^6.8.0",
"eslint-config-mixmax": "^3.4.0",
"jest": "^26.0.1",
"mockgoose": "^8.0.4",
"mongodb": "^2.2.11",
"mongodb-memory-server": "^5.2.11",
"mongoist": "2.3.0",
"mongoose": "5.7.5",
"prettier": "^1.19.1",
"semantic-release": "^17.0.7"
},
"engines": {
"node": ">= 6.9.1"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
},
"manualPublishMessage": "This repository is configured to use semantic-release for its releases. Please do not release manually.\n"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"publishConfig": {
"access": "restricted"
}
}