-
Notifications
You must be signed in to change notification settings - Fork 75
/
package.json
95 lines (95 loc) · 2.56 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
{
"name": "bpmn-js-token-simulation",
"version": "0.36.0",
"description": "bpmn-js token simulation extension",
"module": "lib/index.js",
"main": "lib/index.js",
"scripts": {
"all": "run-s bundle:src lint test bundle",
"bundle:src": "rollup -c --bundleConfigAsCjs",
"bundle": "webpack --mode production",
"bundle:watch": "webpack -w",
"start": "cross-env SINGLE_START=modeler npm run dev",
"start:example": "webpack serve --static ./example --open",
"lint": "eslint .",
"test": "karma start",
"dev": "npm test -- --auto-watch --no-single-run"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bpmn-io/bpmn-js-token-simulation.git"
},
"author": "bpmn.io contributors",
"contributors": [
{
"name": "Patrick Dehn",
"url": "https://github.com/pedesen"
},
{
"name": "Philipp Fromme",
"url": "https://github.com/philippfromme"
},
{
"name": "Sebastian Warnke",
"url": "https://github.com/sebwarnke"
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/bpmn-io/bpmn-js-token-simulation/issues"
},
"homepage": "https://github.com/bpmn-io/bpmn-js-token-simulation#readme",
"files": [
"assets",
"lib",
"index.js"
],
"engines": {
"node": ">= 16"
},
"sideEffects": [
"*.css"
],
"devDependencies": {
"@bpmn-io/add-exporter": "^0.2.0",
"@bpmn-io/properties-panel": "^3.23.0",
"babel-loader": "^9.2.1",
"babel-plugin-istanbul": "^7.0.0",
"bpmn-js": "^18.0.0",
"bpmn-js-properties-panel": "^5.23.0",
"chai": "^4.5.0",
"copy-webpack-plugin": "^12.0.2",
"cross-env": "^7.0.3",
"downloadjs": "^1.4.7",
"eslint": "^9.14.0",
"eslint-plugin-bpmn-io": "^2.0.2",
"file-drops": "^0.5.0",
"file-open": "^0.1.1",
"karma": "^6.4.4",
"karma-chrome-launcher": "^3.2.0",
"karma-coverage": "^2.2.1",
"karma-debug-launcher": "^0.0.5",
"karma-env-preprocessor": "^0.1.1",
"karma-firefox-launcher": "^2.1.3",
"karma-mocha": "^2.0.1",
"karma-sinon-chai": "^2.0.2",
"karma-webpack": "^5.0.1",
"mocha": "^10.8.2",
"mocha-test-container-support": "^0.2.0",
"npm-run-all2": "^7.0.1",
"puppeteer": "^23.7.0",
"rollup": "^4.24.4",
"rollup-plugin-string": "^3.0.0",
"sinon": "^17.0.1",
"sinon-chai": "^3.7.0",
"webpack": "^5.96.1",
"webpack-cli": "^6.0.0",
"webpack-dev-server": "^5.1.0"
},
"dependencies": {
"inherits-browser": "^0.1.0",
"min-dash": "^4.0.0",
"min-dom": "^4.2.1",
"randomcolor": "^0.6.2"
}
}