-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
63 lines (63 loc) · 1.65 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
{
"name": "mongodb-legacy",
"description": "The legacy MongoDB driver with callback support for Node.js",
"version": "6.1.3",
"files": [
"src",
"mongodb-legacy.d.ts"
],
"repository": {
"type": "git",
"url": "[email protected]:mongodb-js/nodejs-mongodb-legacy.git"
},
"main": "src/index.js",
"types": "mongodb-legacy.d.ts",
"engines": {
"node": ">=16.20.1"
},
"dependencies": {
"mongodb": "^6.0.0"
},
"scripts": {
"check:coverage": "nyc --check-coverage npm run check:test",
"check:test": "mocha test/unit",
"check:ts": "tsc",
"check:types": "tsc mongodb-legacy.d.ts",
"check:lint": "ESLINT_USE_FLAT_CONFIG=false eslint --max-warnings=0 src test",
"release": "standard-version -a -i HISTORY.md"
},
"bugs": {
"url": "https://jira.mongodb.org/projects/NODE/issues/"
},
"homepage": "https://github.com/mongodb-js/nodejs-mongodb-legacy",
"keywords": [
"mongodb",
"driver",
"legacy",
"callbacks"
],
"author": {
"name": "The MongoDB NodeJS Team",
"email": "[email protected]"
},
"license": "Apache-2.0",
"devDependencies": {
"@microsoft/api-extractor-model": "^7.29.4",
"@types/node": "^22.1.0",
"@typescript-eslint/eslint-plugin": "^8.0.1",
"@typescript-eslint/parser": "^8.0.1",
"chai": "^4.4.1",
"eslint": "^9.8.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"mocha": "^10.7.0",
"nyc": "^15.1.0",
"prettier": "^3.3.3",
"sinon": "^18.0.0",
"sinon-chai": "^3.7.0",
"source-map-support": "^0.5.21",
"standard-version": "^9.5.0",
"ts-node": "^10.9.2",
"typescript": "^5.5.4"
}
}