forked from loopbackio/loopback-connector-mongodb
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
68 lines (68 loc) · 1.6 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
{
"name": "loopback-connector-mongodb",
"version": "6.2.0",
"description": "The official MongoDB connector for the LoopBack framework.",
"engines": {
"node": ">=10"
},
"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.2",
"bson": "^1.0.6",
"debug": "^4.1.0",
"loopback-connector": "^5.0.0",
"mongodb": "^3.7.3",
"strong-globalize": "^6.0.0"
},
"devDependencies": {
"@commitlint/config-conventional": "^13.2.0",
"benchmark": "^2.1.4",
"bluebird": "^3.5.4",
"commitlint": "^15.0.0",
"eslint": "^8.3.0",
"eslint-config-loopback": "^13.1.0",
"eslint-plugin-mocha": "^9.0.0",
"juggler-v4": "file:./deps/juggler-v4",
"loopback-datasource-juggler": "^4.0.0",
"mocha": "^9.1.3",
"nyc": "^15.1.0",
"rc": "^1.2.8",
"semver": "^7.3.5",
"should": "^13.2.1",
"sinon": "^12.0.1"
},
"ci": {
"downstreamIgnoreList": [
"bluemix-metering",
"bluemix-service-broker",
"bluemix-security",
"plan-manager"
]
}
}