-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
109 lines (109 loc) · 3.11 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
96
97
98
99
100
101
102
103
104
105
106
107
108
109
{
"name": "camunda-dmn-js",
"version": "3.1.0",
"description": "Embeddable Camunda modeling distributions based on dmn-js",
"main": "dist/index.js",
"module": "dist/index.esm.js",
"files": [
"dist"
],
"scripts": {
"all": "run-s lint test distro test:distro",
"lint": "eslint .",
"dev": "npm test -- --auto-watch --no-single-run",
"test": "karma start karma.config.js",
"distro": "rimraf dist && rollup -c --bundleConfigAsCjs",
"test:distro": "node tasks/test-distro.mjs",
"start": "run-s start:base",
"start:base": "cross-env SINGLE_START=base-modeler npm run dev",
"start:platform": "cross-env SINGLE_START=camunda-platform-modeler npm run dev",
"start:cloud": "cross-env SINGLE_START=camunda-cloud-modeler npm run dev",
"prepare": "run-s distro",
"prepublishOnly": "run-s test:distro"
},
"repository": {
"type": "git",
"url": "https://github.com/camunda/camunda-dmn-js"
},
"keywords": [
"dmn",
"dmn13",
"camunda",
"zeebe",
"modeling",
"dmn-js"
],
"author": {
"name": "Maciej Barelkowski",
"url": "https://github.com/barmac"
},
"contributors": [
{
"name": "bpmn.io contributors",
"url": "https://github.com/bpmn-io"
}
],
"license": "MIT",
"dependencies": {
"@bpmn-io/align-to-origin": "^0.7.0",
"camunda-dmn-moddle": "^1.3.0",
"diagram-js": "^15.2.4",
"diagram-js-grid": "^1.1.0",
"diagram-js-origin": "^1.3.4",
"dmn-js": "^17.1.0",
"dmn-js-drd": "^17.1.0",
"min-dash": "^4.2.1",
"zeebe-dmn-moddle": "^1.0.0"
},
"devDependencies": {
"@babel/cli": "^7.25.9",
"@babel/core": "^7.26.0",
"@babel/preset-env": "^7.26.0",
"@rollup/plugin-babel": "^6.0.4",
"@rollup/plugin-commonjs": "^28.0.1",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^16.0.0",
"@rollup/plugin-replace": "^6.0.0",
"@rollup/plugin-terser": "^0.4.4",
"@testing-library/dom": "^10.4.0",
"axe-core": "^4.10.2",
"babel-loader": "^9.2.1",
"babel-plugin-inferno": "~5.1.0",
"babel-plugin-istanbul": "^7.0.0",
"chai": "^4.5.0",
"cross-env": "^7.0.3",
"dmn-js-properties-panel": "^3.7.0",
"dmn-js-shared": "^17.0.1",
"eslint": "^9.14.0",
"eslint-plugin-bpmn-io": "^2.0.2",
"execa": "^8.0.0",
"inferno": "~5.6.2",
"karma": "^6.4.4",
"karma-chai": "^0.1.0",
"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-safari-launcher": "^1.0.0",
"karma-sinon-chai": "^2.0.2",
"karma-webpack": "^5.0.1",
"min-dom": "^5.1.1",
"mocha": "^10.8.2",
"mocha-test-container-support": "^0.2.0",
"npm-run-all2": "^7.0.1",
"puppeteer": "^24.0.0",
"raw-loader": "^4.0.2",
"rimraf": "^6.0.0",
"rollup": "^4.24.4",
"rollup-plugin-copy": "^3.5.0",
"sinon": "^17.0.1",
"sinon-chai": "^3.7.0",
"webpack": "^5.96.1"
},
"peerDependencies": {
"dmn-js-properties-panel": "^3.2.1",
"inferno": "5.6.x"
}
}