-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
45 lines (45 loc) · 1.09 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
{
"name": "bpmn-js-example-custom-rendering",
"version": "0.0.0",
"description": "An example of creating custom rendering for bpmn-js",
"scripts": {
"all": "run-s lint build",
"build": "webpack --mode production",
"dev": "webpack-dev-server --content-base=public --open",
"lint": "eslint .",
"start": "run-s dev"
},
"repository": {
"type": "git",
"url": "https://github.com/bpmn-io/bpmn-js-example-model-extension"
},
"keywords": [
"bpmnjs-example"
],
"author": {
"name": "Philipp Fromme",
"url": "https://github.com/philippfromme"
},
"contributors": [
{
"name": "bpmn.io contributors",
"url": "https://github.com/bpmn-io"
}
],
"license": "MIT",
"devDependencies": {
"copy-webpack-plugin": "^4.6.0",
"eslint": "^5.0.1",
"eslint-plugin-bpmn-io": "^0.5.3",
"npm-run-all": "^4.1.3",
"raw-loader": "^0.5.1",
"webpack": "^4.15.1",
"webpack-cli": "^3.0.8",
"webpack-dev-server": "^3.1.14"
},
"dependencies": {
"bpmn-js": "^3.2.2",
"diagram-js": "^3.1.3",
"tiny-svg": "^2.2.1"
}
}