-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
35 lines (35 loc) · 907 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
{
"name": "camunda-modeler-process-io-specification-plugin",
"version": "0.4.0",
"description": "Document BPMN process inputs and outputs using the Camunda Modeler",
"main": "index.js",
"scripts": {
"all": "run-s bundle",
"bundle": "webpack",
"bundle:watch": "webpack --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/camunda/camunda-modeler-process-io-specification-plugin.git"
},
"keywords": [
"camunda",
"modeler",
"plugin"
],
"author": "Nico Rehwaldt",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.23.9",
"camunda-modeler-plugin-helpers": "^5.0.0",
"camunda-modeler-webpack-plugin": "^0.1.0",
"npm-run-all2": "^6.1.1",
"webpack": "^5.90.0",
"webpack-cli": "^5.1.4"
},
"dependencies": {
"bpmn-js": "^16.4.0",
"diagram-js": "^13.4.0",
"inherits-browser": "^0.1.0"
}
}