loopback-connector/package.json

56 lines
1.3 KiB
JSON
Raw Normal View History

2014-05-23 08:31:19 +00:00
{
"name": "loopback-connector",
"version": "6.1.0",
2014-06-03 06:40:17 +00:00
"description": "Building blocks for LoopBack connectors",
2016-11-18 20:47:19 +00:00
"engines": {
"node": ">=18"
2016-11-18 20:47:19 +00:00
},
2019-04-18 21:32:38 +00:00
"author": "IBM Corp.",
2014-05-23 08:31:19 +00:00
"keywords": [
"StrongLoop",
"LoopBack",
"Connector"
],
"repository": {
"type": "git",
"url": "https://github.com/loopbackio/loopback-connector"
2014-05-23 08:31:19 +00:00
},
"main": "index.js",
"scripts": {
2016-04-09 19:00:28 +00:00
"lint": "eslint .",
"lint:fix": "eslint . --fix",
2016-04-09 19:00:28 +00:00
"posttest": "npm run lint",
"test": "npm run test:ci",
"test:ci": "nyc --reporter=lcov mocha"
2014-05-23 08:31:19 +00:00
},
"license": "MIT",
"dependencies": {
"async": "^3.2.5",
2020-04-26 23:34:21 +00:00
"bluebird": "^3.7.2",
"debug": "^4.3.4",
"msgpack5": "^4.5.1",
"strong-globalize": "^6.0.6",
"uuid": "^9.0.1"
2014-05-23 17:18:11 +00:00
},
"devDependencies": {
"@commitlint/config-conventional": "^18.4.3",
"chai": "^4.3.10",
"chai-as-promised": "^7.1.1",
"commitlint": "^18.4.3",
"eslint": "^8.55.0",
"eslint-config-loopback": "^13.1.0",
"loopback-datasource-juggler": "^5.0.4",
"mocha": "^10.2.0",
"nyc": "^15.1.0"
},
"ci": {
"downstreamIgnoreList": [
"loopback-connector-db2z",
"loopback-connector-ibmi",
"loopback-connector-informix",
"loopback-connector-mqlight",
"loopback-connector-kv-extreme-scale"
]
2014-05-23 08:31:19 +00:00
}
}