forked from bptlab/openbpt-modeler-template
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.19 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.19 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
{
"name": "@bptlab/openbpt-modeler-er",
"version": "1.0.0",
"description": "ER modeler based on diagram-js for use in the OpenBPT platform.",
"repository": {
"type": "git",
"url": "https://github.com/bptlab/openbpt-modeler-er"
},
"publishConfig": {
"access": "public"
},
"author": "Maximilian König",
"license": "MIT",
"keywords": [
"modeler",
"modeling",
"template",
"diagram-js",
"er diagram"
],
"main": "index.js",
"files": [
"assets",
"lib",
"LICENSE",
"package.json",
"README.md"
],
"scripts": {
"lint": "eslint . --ext .js",
"lint:fix": "eslint . --ext .js --fix",
"format": "prettier --write ."
},
"dependencies": {
"bpmn-font": "^0.12.1",
"diagram-js": "^15.2.4",
"diagram-js-direct-editing": "^2.1.2",
"ids": "^1.0.5",
"inherits": "^2.0.4",
"jquery": "^3.7.1",
"min-dash": "^4.2.1",
"min-dom": "^5.0.0",
"moddle": "^6.2.3",
"moddle-xml": "^10.1.0",
"object-refs": "^0.4.0",
"tiny-svg": "^4.0.0"
},
"devDependencies": {
"eslint": "^9.35.0",
"eslint-config-prettier": "^10.1.5",
"eslint-plugin-prettier": "^5.5.4",
"prettier": "^3.6.2"
}
}