-
Notifications
You must be signed in to change notification settings - Fork 66
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 2.22 KB
/
Copy pathpackage.json
File metadata and controls
80 lines (80 loc) · 2.22 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "bpmn-auto-layout",
"version": "2.0.0-alpha.2",
"description": "Layout BPMN diagrams, generating missing DI information",
"type": "module",
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.cjs"
}
},
"bin": {
"bpmn-auto-layout": "./bin/bpmn-auto-layout.js"
},
"files": [
"bin",
"dist"
],
"scripts": {
"all": "run-s lint typecheck test",
"lint": "eslint .",
"typecheck": "tsc",
"test": "mocha --timeout 15000",
"test:inspect": "node tasks/inspect.mjs",
"test:update-snapshots": "cross-env UPDATE_SNAPSHOTS=true mocha --timeout 15000",
"render:fixture": "npm run build && node tasks/render-fixture.mjs",
"review:layout": "node tasks/layout-review.mjs",
"benchmark:fixture": "npm run build && node tasks/benchmark-fixture.mjs",
"test:performance": "npm run build && node tasks/performance-guardrails.mjs",
"trace:fixture": "npm run build:example && node tasks/trace-fixture.mjs",
"metrics": "node test/metrics.mjs",
"metrics:update": "cross-env UPDATE_BASELINE=true node test/metrics.mjs",
"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": "^10.0.0",
"min-dash": "^5.0.0"
},
"devDependencies": {
"@rollup/plugin-node-resolve": "^16.0.3",
"bpmn-to-image": "^0.10.0",
"cross-env": "^10.1.0",
"diagram-js": "^15.23.0",
"eslint": "^9.39.2",
"eslint-plugin-bpmn-io": "^2.2.0",
"mocha": "^11.7.5",
"npm-run-all": "^4.1.5",
"open-cli": "^8.0.0",
"puppeteer": "^25.3.0",
"rollup": "^4.57.1",
"typescript": "^5.9.3"
},
"engines": {
"node": ">= 18"
},
"workspaces": [
"example"
]
}