forked from bpmn-io/bpmn-auto-layout
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
executable file
·40 lines (40 loc) · 996 Bytes
/
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
{
"name": "bpmn-auto-layout",
"version": "0.1.0",
"description": "Layout BPMN diagrams, generating missing DI information",
"main": "dist/index.js",
"module": "dist/index.esm.js",
"umd:main": "dist/bpmn-auto-layout.umd.js",
"source": "index.js",
"scripts": {
"all": "run-s lint test",
"lint": "eslint .",
"build": "rollup -c",
"test": "mocha"
},
"repository": {
"type": "git",
"url": "git+https://github.com/digitalmaas/bpmn-moddle-auto-layout.git"
},
"keywords": [
"bpmn",
"layout"
],
"author": "hoferch91",
"license": "MIT",
"dependencies": {
"bpmn-moddle": "^6.0.0",
"min-dash": "^3.5.2"
},
"devDependencies": {
"eslint": "^6.7.2",
"eslint-plugin-bpmn-io": "^0.10.0",
"rollup": "^2.36.1",
"rollup-plugin-commonjs": "^10.0.1",
"rollup-plugin-json": "^4.0.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-terser": "^7.0.2",
"mocha": "^6.2.2",
"npm-run-all": "^4.1.5"
}
}