This repository has been archived by the owner on May 17, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
61 lines (61 loc) · 1.59 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
{
"name": "mongodb-data-service",
"description": "MongoDB Data Service",
"author": "Durran Jordan <durran@gmail.com>",
"bugs": "https://github.com/mongodb-js/data-service/issues",
"homepage": "https://github.com/mongodb-js/data-service",
"version": "19.2.1",
"repository": {
"type": "git",
"url": "https://github.com/mongodb-js/data-service.git"
},
"engines": {
"node": ">=12"
},
"license": "Apache-2.0",
"keywords": [
"mongodb-js"
],
"scripts": {
"pretest": "node-gyp rebuild --directory node_modules/keytar/ && mongodb-runner start --port=27018",
"test": "mocha",
"posttest": "mongodb-runner stop --port=27018",
"check": "npm run lint && npm run depcheck",
"depcheck": "depcheck",
"lint": "eslint ."
},
"pre-commit": [
"check"
],
"peerDependencies": {
"mongodb": "3.x",
"mongodb-connection-model": ">=19.1.0"
},
"dependencies": {
"async": "^3.2.0",
"debug": "^4.2.0",
"lodash": "^4.17.20",
"mongodb-build-info": "^1.1.1",
"mongodb-index-model": "^2.6.1",
"mongodb-js-errors": "^0.5.0",
"mongodb-ns": "^2.2.0",
"mongodb-security": "^0.2.0",
"mongodb-url": "^3.0.3"
},
"devDependencies": {
"bson": "^4.1.0",
"chai": "^4.2.0",
"depcheck": "^1.3.1",
"eslint": "^7.18.0",
"eslint-config-mongodb-js": "^5.0.3",
"eslint-plugin-mocha": "^8.0.0",
"mocha": "^8.2.1",
"mock-require": "^3.0.3",
"mongodb": "^3.6.3",
"mongodb-connection-model": "^19.1.0",
"mongodb-runner": "^4.8.0",
"pre-commit": "^1.2.2",
"sinon": "^9.2.3",
"sinon-chai": "^3.5.0"
}
}