-
Notifications
You must be signed in to change notification settings - Fork 35
/
Copy pathpackage.json
41 lines (41 loc) · 920 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
36
37
38
39
40
41
{
"name": "dmn-js-example-bundling",
"version": "0.0.0",
"description": "An example how to use dmn-js with npm + webpack",
"main": "app/app.js",
"scripts": {
"all": "run-s bundle open",
"bundle": "webpack",
"bundle:watch": "webpack -w",
"open": "open-cli ./public/index.html",
"dev": "npm run bundle:watch"
},
"repository": {
"type": "git",
"url": "https://github.com/bpmn-io/dmn-js-examples"
},
"keywords": [
"dmn-js-example"
],
"author": {
"name": "Nico Rehwaldt",
"url": "https://github.com/nikku"
},
"contributors": [
{
"name": "bpmn.io contributors",
"url": "https://github.com/bpmn-io"
}
],
"license": "MIT",
"devDependencies": {
"npm-run-all": "^4.1.5",
"open-cli": "^7.0.0",
"raw-loader": "^4.0.0",
"webpack": "^5.93.0",
"webpack-cli": "^4.7.2"
},
"dependencies": {
"dmn-js": "^17.0.2"
}
}