forked from mongodb-js/nodejs-mongodb-legacy
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.47 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.47 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
{
"name": "mongodb-legacy",
"description": "The legacy MongoDB driver with callback support for Node.js",
"version": "4.0.0",
"files": [
"src",
"mongodb-legacy.d.ts"
],
"main": "src/index.js",
"types": "mongodb-legacy.d.ts",
"engines": {
"node": ">=12.9.0"
},
"dependencies": {
"mongodb": "^4.10.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 --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": "dbx-node@mongodb.com"
},
"license": "Apache-2.0",
"devDependencies": {
"@microsoft/api-extractor-model": "^7.23.1",
"@typescript-eslint/eslint-plugin": "^5.33.0",
"@typescript-eslint/parser": "^5.33.0",
"chai": "^4.3.6",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"mocha": "^10.0.0",
"nyc": "^15.1.0",
"prettier": "^2.7.1",
"sinon": "^14.0.0",
"sinon-chai": "^3.7.0",
"source-map-support": "^0.5.21",
"standard-version": "^9.5.0",
"ts-node": "^10.9.1",
"typescript": "^4.7.4"
}
}