-
Notifications
You must be signed in to change notification settings - Fork 99
/
package.json
55 lines (55 loc) · 1.28 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
{
"name": "loopback-connector",
"version": "6.1.10",
"description": "Building blocks for LoopBack connectors",
"engines": {
"node": ">=18"
},
"author": "IBM Corp.",
"keywords": [
"StrongLoop",
"LoopBack",
"Connector"
],
"repository": {
"type": "git",
"url": "https://github.com/loopbackio/loopback-connector"
},
"main": "index.js",
"scripts": {
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"posttest": "npm run lint",
"test": "npm run test:ci",
"test:ci": "nyc --reporter=lcov mocha"
},
"license": "MIT",
"dependencies": {
"async": "^3.2.6",
"bluebird": "^3.7.2",
"debug": "^4.3.7",
"msgpack5": "^4.5.1",
"strong-globalize": "^6.0.6",
"uuid": "^10.0.0"
},
"devDependencies": {
"@commitlint/config-conventional": "^19.5.0",
"chai": "^4.5.0",
"chai-as-promised": "^7.1.2",
"commitlint": "^19.5.0",
"eslint": "^8.57.1",
"eslint-config-loopback": "^13.1.0",
"loopback-datasource-juggler": "^5.1.1",
"mocha": "^10.8.2",
"nyc": "^17.1.0"
},
"ci": {
"downstreamIgnoreList": [
"loopback-connector-db2z",
"loopback-connector-ibmi",
"loopback-connector-informix",
"loopback-connector-mqlight",
"loopback-connector-kv-extreme-scale"
]
}
}