-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 2 KB
/
Copy pathpackage.json
File metadata and controls
65 lines (65 loc) · 2 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": "mongodb-cross-cursor",
"version": "1.0.17",
"type": "module",
"author": "Baptiste Jamin <baptiste@crisp.chat> (https://crisp.chat)",
"description": "A mongodb driver extension allowing to consume MongoDB cursors accross multiple instances",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
},
"keywords": [
"mongodb",
"cursor",
"resume cursor"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/crisp-oss/node-mongodb-native-cross-cursor.git"
},
"homepage": "https://github.com/crisp-oss/node-mongodb-native-cross-cursor#readme",
"bugs": {
"url": "https://github.com/crisp-oss/node-mongodb-native-cross-cursor/issues"
},
"scripts": {
"build": "rm -rf dist/ && tsc -p .",
"lint": "eslint lib test",
"test": "npm run lint && node_modules/jest/bin/jest.js --detectOpenHandles",
"test:mongodb:4": "npm install --no-save mongodb@^4 && npm run test",
"test:mongodb:5": "npm install --no-save mongodb@^5 && npm run test",
"test:mongodb:6": "npm install --no-save mongodb@^6 && npm run test",
"test:mongodb:7": "npm install --no-save mongodb@^7 && npm run test",
"test:all-versions": "npm run test:mongodb:4 && npm run test:mongodb:5 && npm run test:mongodb:6 && npm run test:mongodb:7"
},
"peerDependencies": {
"mongoose": "^6 || ^7 || ^8 || ^9",
"mongodb": "^4 || ^5 || ^6 || ^7"
},
"peerDependenciesMeta": {
"mongoose": {
"optional": true
},
"mongodb": {
"optional": false
}
},
"devDependencies": {
"@types/node": "24.8.1",
"@typescript-eslint/eslint-plugin": "8.48.1",
"@typescript-eslint/parser": "8.48.1",
"@jest/globals": "30.2.0",
"mongodb": "4.13.0",
"eslint": "9.39.1",
"jest": "30.2.0",
"ts-jest": "29.4.6",
"ts-jest-resolver": "2.0.1",
"ts-node": "10.9.2",
"tslib": "2.8.1",
"typescript": "5.9.3"
}
}