-
Notifications
You must be signed in to change notification settings - Fork 15
/
package.json
53 lines (53 loc) · 1.23 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
{
"name": "bpmnlint-playground",
"version": "0.8.0",
"description": "A bpmnlint playground",
"type": "module",
"bin": {
"bpmnlint-playground": "./bin/cli.js"
},
"scripts": {
"all": "run-s bundle",
"bundle": "rollup -c --bundleConfigAsCjs",
"start": "(cd example && npm start)",
"prepublishOnly": "run-s bundle",
"test": "echo 'no tests yet <3' && exit 0"
},
"author": {
"name": "Nico Rehwaldt",
"url": "https://github.com/nikku"
},
"engines": {
"node": ">= 20"
},
"license": "MIT",
"devDependencies": {
"bpmn-js": "^18.0.0",
"bpmn-js-bpmnlint": "^0.22.3",
"bpmnlint": "^10.3.1",
"downloadjs": "^1.4.7",
"file-drops": "^0.5.0",
"npm-run-all2": "^7.0.1",
"rollup-plugin-copy": "^3.5.0",
"rollup-plugin-string": "^3.0.0"
},
"dependencies": {
"@rollup/plugin-commonjs": "^28.0.1",
"@rollup/plugin-node-resolve": "^16.0.0",
"ansi-colors": "^4.1.3",
"color-support": "^1.1.3",
"exit-hook": "^3.2.0",
"rollup": "^4.24.4",
"rollup-plugin-bpmnlint": "^0.4.1",
"rollup-plugin-livereload": "^2.0.5",
"rollup-plugin-serve": "^3.0.0"
},
"files": [
"bin",
"config",
"public"
],
"workspaces": [
"example"
]
}