-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.15 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
{
"name": "loopback-filter-by-relations-mixin",
"version": "1.0.2",
"description": "Loopback mixin that supports filtering using nested 'where' conditions for relations",
"main": "./filter-by-relations.js",
"scripts": {
"test": "mocha test/**",
"coverage": "nyc npm test && nyc report --reporter=text-lcov | coveralls"
},
"keywords": [
"loopback",
"mixin",
"relations",
"filter",
"nested"
],
"author": "Yuriy Nevmerzhitskiy",
"license": "MIT",
"dependencies": {
"bluebird": "^3.7.2",
"debug": "^4.1.1",
"traverse": "^0.6.6",
"underscore": "^1.9.2"
},
"devDependencies": {
"chai": "^4.2.0",
"coveralls": "^3.0.11",
"loopback": "^3.27.0",
"loopback-boot": "^3.3.1",
"mocha": "^7.1.1",
"nyc": "^15.0.0"
},
"directories": {
"lib": "lib",
"test": "test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/yuranevmer/loopback-filter-by-relations-mixin.git"
},
"bugs": {
"url": "https://github.com/yuranevmer/loopback-filter-by-relations-mixin/issues"
},
"homepage": "https://github.com/yuranevmer/loopback-filter-by-relations-mixin#readme"
}