-
Notifications
You must be signed in to change notification settings - Fork 236
/
package.json
60 lines (60 loc) · 1.46 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
{
"name": "loopback-connector-mongodb",
"version": "7.0.0-alpha.1",
"description": "The official MongoDB connector for the LoopBack framework.",
"engines": {
"node": "18 || 20"
},
"author": "IBM Corp.",
"main": "index.js",
"scripts": {
"benchmarks": "make benchmarks",
"leak-detection": "make leak-detection",
"test": "nyc --reporter=lcov mocha --exit --timeout=5000 test/*.test.js node_modules/juggler-v4/test.js",
"lint": "eslint .",
"posttest": "npm run lint"
},
"files": [
"intl",
"lib",
"docs.json",
"index.js",
"setup.sh"
],
"repository": {
"type": "git",
"url": "git://github.com/loopbackio/loopback-connector-mongodb.git"
},
"keywords": [
"connector",
"datasource",
"loopback",
"mongodb"
],
"license": "MIT",
"dependencies": {
"async": "^3.2.4",
"bson": "^1.1.6",
"debug": "^4.3.4",
"loopback-connector": "^5.0.1",
"mongodb": "^4.6.0",
"strong-globalize": "^6.0.5"
},
"devDependencies": {
"@commitlint/config-conventional": "^17.1.0",
"benchmark": "^2.1.4",
"bluebird": "^3.7.2",
"commitlint": "^17.1.1",
"eslint": "^8.23.0",
"eslint-config-loopback": "^13.1.0",
"eslint-plugin-mocha": "^9.0.0",
"juggler-v4": "file:./deps/juggler-v4",
"loopback-datasource-juggler": "^4.27.1",
"mocha": "^9.2.2",
"nyc": "^15.1.0",
"rc": "^1.2.8",
"semver": "^7.3.7",
"should": "^13.2.3",
"sinon": "^12.0.1"
}
}