UNPKG

2.88 kBJSONView Raw
1{
2 "name": "mongodb",
3 "version": "3.6.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.3.4",
24 "bson-ext": "^2.0.0"
25 },
26 "peerDependenciesMeta": {
27 "kerberos": {
28 "optional": true
29 },
30 "mongodb-client-encryption": {
31 "optional": true
32 },
33 "mongodb-extjson": {
34 "optional": true
35 },
36 "snappy": {
37 "optional": true
38 },
39 "bson-ext": {
40 "optional": true
41 },
42 "aws4": {
43 "optional": true
44 }
45 },
46 "dependencies": {
47 "bl": "^2.2.1",
48 "bson": "^1.1.4",
49 "denque": "^1.4.1",
50 "require_optional": "^1.0.1",
51 "safe-buffer": "^5.1.2"
52 },
53 "devDependencies": {
54 "chai": "^4.1.1",
55 "chai-subset": "^1.6.0",
56 "chalk": "^2.4.2",
57 "co": "4.6.0",
58 "coveralls": "^2.11.6",
59 "eslint": "^7.10.0",
60 "eslint-config-prettier": "^6.11.0",
61 "eslint-plugin-es": "^3.0.1",
62 "eslint-plugin-prettier": "^3.1.3",
63 "istanbul": "^0.4.5",
64 "jsdoc": "3.5.5",
65 "lodash.camelcase": "^4.3.0",
66 "mocha": "5.2.0",
67 "mocha-sinon": "^2.1.0",
68 "mongodb-extjson": "^2.1.1",
69 "mongodb-mock-server": "^1.0.1",
70 "prettier": "^1.19.1",
71 "semver": "^5.5.0",
72 "sinon": "^4.3.0",
73 "sinon-chai": "^3.2.0",
74 "snappy": "^6.3.4",
75 "spec-xunit-file": "0.0.1-3",
76 "standard-version": "^8.0.2",
77 "util.promisify": "^1.0.1",
78 "worker-farm": "^1.5.0",
79 "wtfnode": "^0.8.0",
80 "yargs": "^14.2.0"
81 },
82 "license": "Apache-2.0",
83 "engines": {
84 "node": ">=4"
85 },
86 "bugs": {
87 "url": "https://github.com/mongodb/node-mongodb-native/issues"
88 },
89 "scripts": {
90 "atlas": "mocha --opts '{}' ./test/manual/atlas_connectivity.test.js",
91 "check:kerberos": "mocha --opts '{}' -t 60000 test/manual/kerberos.test.js",
92 "check:ldap": "mocha --opts '{}' test/manual/ldap.test.js",
93 "check:tls": "mocha --opts '{}' test/manual/tls_support.test.js",
94 "test": "npm run lint && mocha --recursive test/functional test/unit",
95 "test-nolint": "mocha --recursive test/functional test/unit",
96 "coverage": "istanbul cover mongodb-test-runner -- -t 60000 test/unit test/functional",
97 "lint": "eslint -v && eslint lib test",
98 "format": "npm run lint -- --fix",
99 "bench": "node test/benchmarks/driverBench/",
100 "generate-evergreen": "node .evergreen/generate_evergreen_tasks.js",
101 "release": "standard-version -i HISTORY.md"
102 },
103 "homepage": "https://github.com/mongodb/node-mongodb-native",
104 "optionalDependencies": {
105 "saslprep": "^1.0.0"
106 }
107}