forked from mongodb/node-mongodb-native
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
132 lines (132 loc) · 4.49 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
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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
{
"name": "mongodb",
"version": "4.1.3",
"description": "The official MongoDB driver for Node.js",
"main": "lib/index.js",
"files": [
"lib",
"src",
"etc/prepare.js",
"mongodb.d.ts",
"mongodb.ts34.d.ts"
],
"types": "mongodb.d.ts",
"typesVersions": {
"<=4.0.2": {
"mongodb.d.ts": [
"mongodb.ts34.d.ts"
]
}
},
"repository": {
"type": "git",
"url": "[email protected]:mongodb/node-mongodb-native.git"
},
"keywords": [
"mongodb",
"driver",
"official"
],
"author": {
"name": "The MongoDB NodeJS Team",
"email": "[email protected]"
},
"dependencies": {
"bson": "^4.5.3",
"denque": "^2.0.1",
"mongodb-connection-string-url": "^2.1.0"
},
"devDependencies": {
"@istanbuljs/nyc-config-typescript": "^1.0.1",
"@microsoft/api-extractor": "^7.18.14",
"@microsoft/tsdoc-config": "^0.15.2",
"@types/chai": "^4.2.22",
"@types/chai-subset": "^1.3.3",
"@types/kerberos": "^1.1.1",
"@types/mocha": "^9.0.0",
"@types/node": "^16.10.3",
"@types/saslprep": "^1.0.1",
"@types/semver": "^7.3.8",
"@types/whatwg-url": "^8.2.1",
"@typescript-eslint/eslint-plugin": "^4.33.0",
"@typescript-eslint/parser": "^4.33.0",
"bluebird": "^3.7.2",
"chai": "^4.3.4",
"chai-subset": "^1.6.0",
"chalk": "^4.1.2",
"co": "4.6.0",
"downlevel-dts": "^0.7.0",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"eslint-plugin-tsdoc": "^0.2.14",
"js-yaml": "^4.1.0",
"lodash.camelcase": "^4.3.0",
"mocha": "^9.1.2",
"mocha-sinon": "^2.1.2",
"mongodb-mock-server": "^2.0.1",
"nyc": "^15.1.0",
"prettier": "^2.4.1",
"rimraf": "^3.0.2",
"semver": "^7.3.5",
"sinon": "^11.1.2",
"sinon-chai": "^3.7.0",
"source-map-support": "^0.5.20",
"standard-version": "^9.3.1",
"ts-node": "^10.2.1",
"tsd": "^0.17.0",
"typedoc": "^0.22.5",
"typescript": "4.4.3",
"typescript-cached-transpile": "^0.0.6",
"xml2js": "^0.4.23",
"yargs": "^17.2.1"
},
"license": "Apache-2.0",
"engines": {
"node": ">=12.9.0"
},
"bugs": {
"url": "https://jira.mongodb.org/projects/NODE/issues/"
},
"homepage": "https://github.com/mongodb/node-mongodb-native",
"optionalDependencies": {
"saslprep": "^1.0.3"
},
"scripts": {
"build:evergreen": "node .evergreen/generate_evergreen_tasks.js",
"build:ts": "rimraf lib && ./node_modules/typescript/bin/tsc",
"build:dts": "npm run build:ts && api-extractor run && rimraf 'lib/**/*.d.ts*' && downlevel-dts mongodb.d.ts mongodb.ts34.d.ts",
"build:docs": "typedoc",
"check:bench": "node test/benchmarks/driverBench",
"check:coverage": "nyc npm run test:all",
"check:lint": "npm run build:dts && npm run check:dts && npm run check:eslint && npm run check:tsd",
"check:eslint": "eslint -v && eslint --max-warnings=0 --ext '.js,.ts' src test",
"check:tsd": "tsd --version && tsd",
"check:dts": "./node_modules/typescript/bin/tsc --noEmit mongodb.d.ts && tsd",
"check:test": "mocha --file test/tools/runner --recursive test/functional test/integration",
"check:unit": "mocha --recursive test/unit/",
"check:ts": "./node_modules/typescript/bin/tsc -v && ./node_modules/typescript/bin/tsc --noEmit",
"check:atlas": "mocha --config \"test/manual/mocharc.json\" test/manual/atlas_connectivity.test.js",
"check:adl": "mocha --file test/tools/runner test/manual/data_lake.test.js",
"check:aws": "mocha --file test/tools/runner test/functional/mongodb_aws.test.js",
"check:ocsp": "mocha --config \"test/manual/mocharc.json\" test/manual/ocsp_support.test.js",
"check:kerberos": "mocha --config \"test/manual/mocharc.json\" test/manual/kerberos.test.js",
"check:tls": "mocha --config \"test/manual/mocharc.json\" test/manual/tls_support.test.js",
"check:ldap": "mocha --config \"test/manual/mocharc.json\" test/manual/ldap.test.js",
"check:csfle": "mocha --file test/tools/runner test/functional/client_side_encryption",
"check:snappy": "mocha --file test/tools/runner test/functional/unit_snappy.test.js",
"prepare": "node etc/prepare.js",
"release": "standard-version -i HISTORY.md",
"test": "npm run check:lint && npm run test:all",
"test:all": "npm run check:unit && npm run check:test"
},
"tsd": {
"directory": "test/types",
"compilerOptions": {
"strict": true,
"target": "esnext",
"module": "commonjs",
"moduleResolution": "node"
}
}
}