-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.66 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.66 KB
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
{
"name": "@rc/loopback-component-relation-filter",
"version": "0.2.1",
"description": "Enables where query filters over related models via loopback api.",
"main": "index.js",
"directories": {
"test": "test"
},
"engines": {
"node": "^8.0.0",
"npm": "^5.0.0"
},
"scripts": {
"lint": "node_modules/.bin/eslint .",
"test:watch": "WATCH_TESTS=\"--watch\" npm run test",
"test:base": "mocha $NODE_DEBUG_OPTION $WATCH_TESTS --recursive --check-leaks --full-trace --exit",
"test:unit": "npm run test:base ./test/support/setup/unit.js ./test/unit",
"test:integration": "npm run test:base ./test/support/setup/integration.js ./test/integration",
"test": "npm run test:base ./test/support/setup/integration.js ./test/integration ./test/unit"
},
"repository": {
"type": "git",
"url": "git+https://github.com/collaorodrigo7/loopback-component-relation-filter.git"
},
"keywords": [
"loopback",
"relations",
"filter",
"where",
"query"
],
"author": "Michael Rüfenacht",
"license": "MIT",
"bugs": {
"url": "https://github.com/collaorodrigo7/loopback-component-relation-filter/issues"
},
"homepage": "https://github.com/collaorodrigo7/loopback-component-relation-filter",
"devDependencies": {
"chai": "^4.1.2",
"eslint": "^4.12.1",
"eslint-config-joinbox": "git+https://github.com/joinbox/joinbox-linter-configuration.git",
"loopback-connector-postgresql": "^3.2.0",
"loopback-connector-mysql": "^5.2.0",
"mocha": "^4.0.1",
"npm": "^5.5.1",
"strong-error-handler": "^2.3.0"
},
"dependencies": {
"knex": "^0.14.2",
"@joinbox/loopback-microservice": "^0.1.0"
}
}