forked from mongodb/node-mongodb-native
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
88 lines (88 loc) · 2.38 KB
/
package.json
File metadata and controls
88 lines (88 loc) · 2.38 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
{
"name": "mongodb",
"version": "3.5.4",
"description": "The official MongoDB driver for Node.js",
"main": "index.js",
"files": [
"index.js",
"lib"
],
"repository": {
"type": "git",
"url": "git@github.com:mongodb/node-mongodb-native.git"
},
"keywords": [
"mongodb",
"driver",
"official"
],
"peerOptionalDependencies": {
"kerberos": "^1.1.0",
"mongodb-client-encryption": "^1.0.0",
"mongodb-extjson": "^2.1.2",
"snappy": "^6.1.1",
"bson-ext": "^2.0.0"
},
"dependencies": {
"bl": "^2.2.0",
"bson": "^4.0.4",
"denque": "^1.4.1"
},
"devDependencies": {
"@types/node": "^14.0.1",
"chai": "^4.2.0",
"chai-subset": "^1.6.0",
"chalk": "^2.4.2",
"co": "4.6.0",
"coveralls": "^3.0.11",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-jsdoc": "^25.4.1",
"eslint-plugin-prettier": "^3.1.3",
"eslint-plugin-promise": "^4.2.1",
"gulp": "^4.0.2",
"gulp-prettier": "^3.0.0",
"gulp-typescript": "^6.0.0-alpha.1",
"jsdoc": "^3.6.4",
"lodash.camelcase": "^4.3.0",
"madge": "^3.9.0",
"mocha": "5.2.0",
"mocha-sinon": "^2.1.0",
"mongodb-mock-server": "^2.0.1",
"nyc": "^15.0.0",
"prettier": "^1.19.1",
"semver": "^5.5.0",
"sinon": "^4.3.0",
"sinon-chai": "^3.2.0",
"snappy": "^6.1.2",
"standard-version": "^7.1.0",
"through2": "^3.0.1",
"typescript": "^3.8.3",
"worker-farm": "^1.5.0",
"wtfnode": "^0.8.0",
"yargs": "^14.2.0"
},
"license": "Apache-2.0",
"engines": {
"node": ">=10"
},
"bugs": {
"url": "https://github.com/mongodb/node-mongodb-native/issues"
},
"scripts": {
"build:evergreen": "node .evergreen/generate_evergreen_tasks.js",
"build:ts": "gulp -f test/tools/ts-pipeline.js",
"check:atlas": "node test/tools/atlas_connectivity_tests.js",
"check:bench": "node test/benchmarks/driverBench",
"check:coverage": "nyc mocha --timeout 60000 --recursive test/functional test/unit",
"check:lint": "eslint -v && eslint index.js lib test",
"check:test": "mocha --recursive test/functional test/unit",
"check:ts": "tsc --noEmit",
"release": "standard-version -i HISTORY.md",
"test": "npm run check:lint && npm run check:test"
},
"homepage": "https://github.com/mongodb/node-mongodb-native",
"optionalDependencies": {
"saslprep": "^1.0.0"
}
}