-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
60 lines (60 loc) · 1.52 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
54
55
56
57
58
59
60
{
"name": "custom-elements-example",
"version": "0.0.0",
"description": "An example on how to create a custom elements with bpmn-js",
"main": "app/app.js",
"repository": {
"type": "git",
"url": "https://github.com/bpmn-io/bpmn-js-examples"
},
"scripts": {
"all": "run-s lint test build",
"lint": "eslint .",
"auto-test": "npm test -- --auto-watch --no-single-run",
"test": "karma start",
"build": "webpack",
"start": "run-s build serve",
"dev": "run-p \"build -- --watch\" serve",
"serve": "sirv public --dev"
},
"keywords": [
"bpmnjs-example"
],
"author": {
"name": "Ricardo Matias",
"url": "https://github.com/ricardomatias"
},
"contributors": [
{
"name": "bpmn.io contributors",
"url": "https://github.com/bpmn-io"
}
],
"license": "MIT",
"devDependencies": {
"chai": "^4.3.10",
"copy-webpack-plugin": "^12.0.0",
"eslint": "^9.12.0",
"eslint-plugin-bpmn-io": "^2.0.2",
"karma": "^6.4.2",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^3.2.0",
"karma-firefox-launcher": "^2.1.2",
"karma-mocha": "^2.0.1",
"karma-webpack": "^5.0.0",
"mocha": "^10.2.0",
"mocha-test-container-support": "^0.2.0",
"npm-run-all2": "^7.0.0",
"puppeteer": "^23.0.0",
"sirv-cli": "^3.0.0",
"webpack": "^5.89.0",
"webpack-cli": "^6.0.0"
},
"dependencies": {
"bpmn-js": "^18.0.0",
"diagram-js": "^15.1.0",
"inherits-browser": "^0.1.0",
"min-dash": "^4.1.1",
"tiny-svg": "^4.0.0"
}
}