-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.78 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.78 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
53
54
55
56
57
58
59
60
61
62
63
{
"name": "lbx-change-sets",
"version": "7.0.1",
"description": "lbx-change-sets",
"keywords": [
"loopback-extension",
"loopback",
"change-tracking",
"change-sets",
"soft-delete",
"rollback",
"restore"
],
"main": "dist/index.js",
"types": "dist/index.d.ts",
"engines": {
"node": "18 || 20"
},
"scripts": {
"build": "lb-tsc",
"build:watch": "lb-tsc --watch",
"start": "cd showcase && npm run start",
"lint": "npm run eslint",
"lint:fix": "npm run eslint:fix",
"eslint": "eslint . --max-warnings=0",
"eslint:fix": "npm run eslint -- --fix",
"pretest": "npm run rebuild",
"test": "lb-mocha --allow-console-logs \"dist/__tests__\"",
"posttest": "npm run lint",
"test:dev": "lb-mocha --allow-console-logs dist/__tests__/**/*.js && npm run posttest",
"clean": "lb-clean dist *.tsbuildinfo .eslintcache",
"rebuild": "npm run clean && npm run build"
},
"author": "Tim Fabian",
"license": "MIT",
"files": [
"README.md",
"dist",
"src",
"!*/__tests__"
],
"peerDependencies": {
"@loopback/core": "*",
"@loopback/repository": "*",
"@loopback/rest": "*",
"@loopback/security": "*",
"lodash": "4"
},
"dependencies": {
"tslib": "^2.6.2"
},
"devDependencies": {
"@loopback/build": "^11.0.2",
"@loopback/core": "^6.0.2",
"@loopback/rest": "^14.0.2",
"@loopback/testlab": "^7.0.2",
"@types/lodash": "^4.17.4",
"@types/node": "^20.14.0",
"eslint-config-service-soft": "^1.5.0",
"source-map-support": "^0.5.21",
"typescript": "~5.4.5"
}
}