loopback-datasource-juggler/package.json

78 lines
1.9 KiB
JSON
Raw Normal View History

2011-10-01 15:51:51 +00:00
{
"name": "loopback-datasource-juggler",
"version": "4.27.1",
"publishConfig": {
2016-03-29 00:08:56 +00:00
"export-tests": true
},
2017-04-06 21:32:30 +00:00
"description": "LoopBack DataSource Juggler",
"keywords": [
"StrongLoop",
"LoopBack",
"DataSource",
2013-11-08 17:14:39 +00:00
"Connector",
"Database",
"Juggler",
"ORM"
],
2019-05-06 17:27:52 +00:00
"author": "IBM Corp.",
2016-11-15 13:21:02 +00:00
"engines": {
"node": ">=10"
2016-11-15 13:21:02 +00:00
},
2011-10-01 15:51:51 +00:00
"repository": {
"type": "git",
"url": "https://github.com/strongloop/loopback-datasource-juggler"
2011-10-01 15:51:51 +00:00
},
"main": "index.js",
2018-05-02 23:21:49 +00:00
"types": "index.d.ts",
"browser": {
"depd": "./lib/browser.depd.js"
},
2011-10-01 15:51:51 +00:00
"scripts": {
"lint": "eslint .",
"build": "npm run build-ts-types",
"build-ts-types": "tsc -p tsconfig.json --outDir dist",
"test": "nyc mocha",
2018-05-02 23:21:49 +00:00
"posttest": "npm run tsc && npm run lint"
2011-10-01 15:51:51 +00:00
},
"devDependencies": {
"@commitlint/cli": "^13.1.0",
"@commitlint/config-conventional": "^13.1.0",
"@types/node": "^10.17.60",
"async-iterators": "^0.2.2",
2018-12-07 14:40:17 +00:00
"bson": "^4.0.1",
"eslint": "^7.32.0",
"eslint-config-loopback": "^13.1.0",
"eslint-plugin-mocha": "^9.0.0",
"loopback-connector-throwing": "file:./test/fixtures/loopback-connector-throwing",
"mocha": "^8.4.0",
"nyc": "^15.1.0",
2019-04-30 09:43:44 +00:00
"should": "^13.2.3",
"typescript": "^4.0.3"
2013-03-26 00:39:47 +00:00
},
"dependencies": {
"async": "^3.2.3",
"change-case": "^4.1.2",
"debug": "^4.3.4",
"depd": "^2.0.0",
"inflection": "^1.13.2",
2019-03-01 19:29:56 +00:00
"lodash": "^4.17.11",
"loopback-connector": "^5.0.0",
2016-08-17 12:24:20 +00:00
"minimatch": "^3.0.3",
"nanoid": "^3.1.20",
"qs": "^6.5.0",
"strong-globalize": "^6.0.5",
"traverse": "^0.6.6",
"uuid": "^8.3.1"
},
2016-11-25 18:33:00 +00:00
"license": "MIT",
"ci": {
"downstreamIgnoreList": [
2016-11-30 18:18:07 +00:00
"loopback-connector-db2z",
"loopback-connector-ibmi",
2016-11-30 18:18:07 +00:00
"loopback-connector-informix",
"loopback-connector-mqlight",
"loopback-connector-kv-extreme-scale"
2016-11-25 18:33:00 +00:00
]
}
2013-09-10 19:19:20 +00:00
}