forked from loopbackio/loopback-connector-mongodb
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.09 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
{
"name": "loopback-connector-mongodb",
"version": "4.1.0",
"description": "The official MongoDB connector for the LoopBack framework.",
"engines": {
"node": ">=6"
},
"main": "index.js",
"scripts": {
"benchmarks": "make benchmarks",
"leak-detection": "make leak-detection",
"test": "mocha",
"lint": "eslint .",
"posttest": "npm run lint"
},
"repository": {
"type": "git",
"url": "git://github.com/strongloop/loopback-connector-mongodb.git"
},
"keywords": [
"connector",
"datasource",
"loopback",
"strongloop",
"mongodb"
],
"license": "MIT",
"dependencies": {
"async": "^2.6.1",
"bson": "^1.0.6",
"debug": "^3.1.0",
"loopback-connector": "^4.5.0",
"mongodb": "^3.1.4",
"strong-globalize": "^4.1.1"
},
"devDependencies": {
"benchmark": "^2.1.4",
"bluebird": "^3.5.4",
"eslint": "^5.1.0",
"eslint-config-loopback": "^10.0.0",
"loopback-datasource-juggler": "^3.23.0",
"mocha": "^5.2.0",
"rc": "^1.2.8",
"semver": "^5.5.1",
"should": "^13.2.1",
"sinon": "^6.1.3"
}
}