-
Notifications
You must be signed in to change notification settings - Fork 41
/
package.json
64 lines (64 loc) · 1.48 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
{
"name": "bpmn-auto-layout",
"version": "1.0.0",
"description": "Layout BPMN diagrams, generating missing DI information",
"type": "module",
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.cjs"
}
},
"files": [
"dist"
],
"scripts": {
"all": "run-s lint test",
"lint": "eslint .",
"test": "mocha",
"test:inspect": "open test/output/index.html",
"test:update-snapshots": "cross-env UPDATE_SNAPSHOTS=true mocha",
"pretest": "run-s build",
"build": "rollup -c",
"build:example": "npm run build -w example",
"prepare": "run-s build",
"start": "npm run start -w example"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bpmn-io/bpmn-auto-layout.git"
},
"keywords": [
"bpmn",
"layout"
],
"author": {
"name": "bpmn.io contributors",
"url": "https://github.com/bpmn-io"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/bpmn-io/bpmn-auto-layout/issues"
},
"homepage": "https://github.com/bpmn-io/bpmn-auto-layout#readme",
"dependencies": {
"bpmn-moddle": "^9.0.1",
"min-dash": "^4.1.1"
},
"devDependencies": {
"@rollup/plugin-node-resolve": "^15.1.0",
"cross-env": "^7.0.3",
"eslint": "^8.41.0",
"eslint-plugin-bpmn-io": "^1.0.0",
"mocha": "^10.2.0",
"npm-run-all": "^4.1.5",
"open-cli": "^8.0.0",
"rollup": "^4.12.1"
},
"engines": {
"node": ">= 18"
},
"workspaces": [
"example"
]
}