forked from loopbackio/loopback-connector
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 889 Bytes
/
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
{
"name": "loopback-connector",
"version": "4.8.0",
"description": "Building blocks for LoopBack connectors",
"engines": {
"node": ">=6"
},
"author": "IBM Corp.",
"keywords": [
"StrongLoop",
"LoopBack",
"Connector"
],
"repository": {
"type": "git",
"url": "https://github.com/strongloop/loopback-connector"
},
"main": "index.js",
"scripts": {
"lint": "eslint .",
"posttest": "npm run lint",
"test": "mocha"
},
"license": "MIT",
"dependencies": {
"async": "^2.1.5",
"bluebird": "^3.4.6",
"debug": "^3.1.0",
"msgpack5": "^4.2.0",
"strong-globalize": "^4.1.1",
"uuid": "^3.0.1"
},
"devDependencies": {
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"eslint": "^4.19.1",
"eslint-config-loopback": "^10.0.0",
"loopback-datasource-juggler": "^3.12.0",
"mocha": "^5.2.0"
}
}