-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
72 lines (72 loc) · 2.17 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "loopback4-bpmn-server",
"version": "1.0.0",
"description": "Loopback4 extension to use bpmn-server library",
"keywords": [
"loopback-extension",
"loopback"
],
"main": "dist/index.js",
"types": "dist/index.d.ts",
"engines": {
"node": "16 || 17 || 18"
},
"scripts": {
"build": "lb-tsc",
"build:watch": "lb-tsc --watch",
"lint": "npm run eslint && npm run prettier:check",
"lint:fix": "npm run eslint:fix && npm run prettier:fix",
"prettier:cli": "lb-prettier \"**/*.ts\" \"**/*.js\"",
"prettier:check": "npm run prettier:cli -- -l",
"prettier:fix": "npm run prettier:cli -- --write",
"eslint": "lb-eslint --report-unused-disable-directives .",
"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"
},
"repository": {
"type": "git",
"url": ""
},
"author": "Paolo Conci PC",
"license": "MIT",
"files": [
"README.md",
"dist",
"src",
"!*/__tests__"
],
"peerDependencies": {
"debug": "^4.3.4",
"loopback4-tenant-table-filter": "file:loopback4-tenant-table-filter-1.0.8.tgz",
"@loopback/authentication": "^10.1.3",
"@loopback/authentication-jwt": "^0.14.3",
"@loopback/authorization": "^0.14.3",
"@loopback/boot": "^6.1.3",
"@loopback/context": "^6.1.3",
"@loopback/core": "^5.1.3",
"@loopback/repository": "^6.1.3",
"@loopback/rest": "^13.1.3",
"loopback-connector-postgresql": "^6.0.8"
},
"dependencies": {
"bpmn-moddle": "^8.0.1",
"bpmn-server": "file:bpmn-server-1.3.28.tgz",
"camunda-bpmn-moddle": "^7.0.1",
"tslib": "^2.0.0"
},
"devDependencies": {
"@loopback/build": "^10.1.3",
"@loopback/core": "^5.1.3",
"@loopback/eslint-config": "^14.0.4",
"@loopback/testlab": "^6.1.3",
"@types/node": "^16.18.50",
"eslint": "^8.48.0",
"source-map-support": "^0.5.21",
"typescript": "~5.2.2"
}
}