-
Notifications
You must be signed in to change notification settings - Fork 72
/
Copy pathpackage.json
95 lines (95 loc) · 2.9 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
87
88
89
90
91
92
93
94
95
{
"name": "mongo-cursor-pagination",
"version": "8.1.3",
"description": "Make it easy to return cursor-paginated results from a Mongo collection",
"main": "index.js",
"files": [
"index.js",
"dist",
"src"
],
"scripts": {
"ci": "npm run lint && npm run test",
"ci:commitlint": "commitlint-jenkins --pr-only",
"lint": "eslint . && tsc --noEmit",
"prepublishOnly": "npm run build && if [ \"$CI\" = '' ] && [ \"$npm_config_dry_run\" != true ]; then node -p 'JSON.parse(process.env.npm_package_config_manualPublishMessage)'; exit 1; fi",
"semantic-release": "SEMANTIC_COMMITLINT_SKIP=f4543f643bac890c627d538e6200c5f5a1d45ebc semantic-release",
"test": "npm run test:mongoist && npm run test:native",
"test:mongoist": "DRIVER=mongoist jest --forceExit",
"test:native": "DRIVER=native jest && DRIVER=native DRIVER_VERSION=v3 jest",
"build": "rm -rf dist/ && tsc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mixmaxhq/mongo-cursor-pagination.git"
},
"keywords": [
"mongo",
"pagination",
"cursor",
"database",
"fulltext",
"search",
"find"
],
"author": "Brad Vogel <brad@mixmax.com> (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.7.2",
"object-path": "^0.11.8",
"projection-utils": "^1.1.0",
"semver": "^5.4.1",
"underscore": "^1.12.1"
},
"devDependencies": {
"@commitlint/config-conventional": "^8.3.4",
"@mixmaxhq/commitlint-jenkins": "^1.4.4",
"@mixmaxhq/prettier-config": "^1.0.0",
"@mixmaxhq/semantic-release-config": "^2.0.0",
"@mixmaxhq/ts-config": "^1.2.1",
"@types/jest": "^29.5.12",
"@types/node": "^18.19.70",
"@types/express": "^4.17.21",
"@typescript-eslint/eslint-plugin": "^4.33.0",
"@typescript-eslint/parser": "^4.33.0",
"cz-conventional-changelog": "^3.2.0",
"eslint": "^7.32.0",
"eslint-config-mixmax": "^4.11.2",
"jest": "^29.6.2",
"mockgoose": "^8.0.4",
"mongodb": "^4.8.0",
"mongodb-memory-server": "6.9.6",
"mongodbv3": "npm:mongodb@^3.7.4",
"mongoist": "^3.0.0",
"mongoose": "^5.13.20",
"prettier": "^1.19.1",
"semantic-release": "^17.4.7",
"ts-jest": "^29.0.5",
"typescript": "^4.9.5"
},
"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"
]
},
"release": {
"extends": "@mixmaxhq/semantic-release-config"
},
"publishConfig": {
"access": "public"
}
}