-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.23 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.23 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
{
"name": "loopback-component-filter",
"version": "1.3.0-next.3",
"description": "Loopback component models filter",
"keywords": [
"loopback-extension",
"loopback"
],
"main": "dist/index.js",
"types": "dist/index.d.ts",
"engines": {
"node": ">=10.16"
},
"scripts": {
"start": "nodemon --exec \"node -r ts-node/register --inspect=0.0.0.0\" src/index.ts",
"build": "lb-tsc",
"test": "lb-mocha --allow-console-logs \"test/**/*.test.ts\""
},
"repository": {
"type": "git",
"url": "https://github.com/loopback4/loopback-component-filter"
},
"author": "KoLiBer <koliberr136a1@gmail.com>",
"license": "MIT",
"files": [
"README.md",
"dist"
],
"dependencies": {
"tslib": "^2.3.1"
},
"peerDependencies": {
"@loopback/core": "^2.16.2",
"@loopback/repository": "^3.7.1"
},
"devDependencies": {
"@loopback/build": "^7.0.0",
"@loopback/core": "^2.16.2",
"@loopback/repository": "^3.7.1",
"@loopback/testlab": "^3.4.2",
"@types/node": "^10.17.60",
"nodemon": "^2.0.4",
"ts-node": "^8.10.2",
"typescript": "~4.3.4"
}
}