UNPKG

2.26 kBJSONView Raw
1{
2 "name": "mongodb",
3 "version": "3.5.5",
4 "description": "The official MongoDB driver for Node.js",
5 "main": "index.js",
6 "files": [
7 "index.js",
8 "lib"
9 ],
10 "repository": {
11 "type": "git",
12 "url": "git@github.com:mongodb/node-mongodb-native.git"
13 },
14 "keywords": [
15 "mongodb",
16 "driver",
17 "official"
18 ],
19 "peerOptionalDependencies": {
20 "kerberos": "^1.1.0",
21 "mongodb-client-encryption": "^1.0.0",
22 "mongodb-extjson": "^2.1.2",
23 "snappy": "^6.1.1",
24 "bson-ext": "^2.0.0"
25 },
26 "dependencies": {
27 "bl": "^2.2.0",
28 "bson": "^1.1.1",
29 "denque": "^1.4.1",
30 "require_optional": "^1.0.1",
31 "safe-buffer": "^5.1.2"
32 },
33 "devDependencies": {
34 "chai": "^4.1.1",
35 "chai-subset": "^1.6.0",
36 "chalk": "^2.4.2",
37 "co": "4.6.0",
38 "coveralls": "^2.11.6",
39 "eslint": "^4.5.0",
40 "eslint-plugin-prettier": "^2.2.0",
41 "istanbul": "^0.4.5",
42 "jsdoc": "3.5.5",
43 "lodash.camelcase": "^4.3.0",
44 "mocha": "5.2.0",
45 "mocha-sinon": "^2.1.0",
46 "mongodb-extjson": "^2.1.1",
47 "mongodb-mock-server": "^1.0.1",
48 "prettier": "^1.19.1",
49 "semver": "^5.5.0",
50 "sinon": "^4.3.0",
51 "sinon-chai": "^3.2.0",
52 "snappy": "^6.1.2",
53 "standard-version": "^4.4.0",
54 "worker-farm": "^1.5.0",
55 "wtfnode": "^0.8.0",
56 "yargs": "^14.2.0"
57 },
58 "license": "Apache-2.0",
59 "engines": {
60 "node": ">=4"
61 },
62 "bugs": {
63 "url": "https://github.com/mongodb/node-mongodb-native/issues"
64 },
65 "scripts": {
66 "atlas": "node ./test/tools/atlas_connectivity_tests.js",
67 "test": "npm run lint && mocha --recursive test/functional test/unit test/core",
68 "test-nolint": "mocha --recursive test/functional test/unit test/core",
69 "coverage": "istanbul cover mongodb-test-runner -- -t 60000 test/core test/unit test/functional",
70 "lint": "eslint lib test",
71 "format": "prettier --print-width 100 --tab-width 2 --single-quote --write 'test/**/*.js' 'lib/**/*.js'",
72 "bench": "node test/benchmarks/driverBench/",
73 "generate-evergreen": "node .evergreen/generate_evergreen_tasks.js",
74 "release": "standard-version -i HISTORY.md"
75 },
76 "homepage": "https://github.com/mongodb/node-mongodb-native",
77 "optionalDependencies": {
78 "saslprep": "^1.0.0"
79 }
80}