-
Notifications
You must be signed in to change notification settings - Fork 197
/
package.json
116 lines (116 loc) · 3.36 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
110
111
112
113
114
115
116
{
"name": "bpmn-js-properties-panel",
"version": "5.26.0",
"description": "A simple properties panel for bpmn-js",
"files": [
"dist"
],
"scripts": {
"all": "run-s lint test distro",
"distro": "run-s build test:build",
"clean": "rimraf dist",
"build": "run-p clean bundle",
"bundle": "rollup -c",
"bundle:watch": "rollup -c -w",
"lint": "eslint .",
"dev": "npm test -- --auto-watch --no-single-run",
"test": "karma start karma.config.js",
"test:build": "mocha --reporter=spec --recursive test/distro",
"start": "npm run start:cloud",
"start:cloud": "cross-env SINGLE_START=cloud npm run dev",
"start:platform": "cross-env SINGLE_START=platform npm run dev",
"start:bpmn": "cross-env SINGLE_START=bpmn npm run dev",
"prepare": "run-s build"
},
"repository": {
"type": "git",
"url": "https://github.com/bpmn-io/bpmn-js-properties-panel"
},
"keywords": [
"bpmn-io",
"bpmn-js",
"properties",
"properties-panel"
],
"engines": {
"node": "*"
},
"main": "dist/index.js",
"module": "dist/index.esm.js",
"umd:main": "dist/bpmn-js-properties-panel.umd.js",
"author": {
"name": "Nico Rehwaldt",
"url": "https://github.com/nikku"
},
"contributors": [
{
"name": "bpmn.io contributors",
"url": "https://github.com/bpmn-io"
}
],
"license": "MIT",
"dependencies": {
"@bpmn-io/extract-process-variables": "^1.0.0",
"array-move": "^4.0.0",
"ids": "^1.0.5",
"min-dash": "^4.2.1",
"min-dom": "^4.2.1"
},
"devDependencies": {
"@babel/core": "^7.25.2",
"@babel/plugin-transform-react-jsx": "^7.25.2",
"@bpmn-io/element-template-chooser": "^1.0.0",
"@bpmn-io/properties-panel": "^3.25.0",
"@bpmn-io/variable-resolver": "^1.3.0",
"@rollup/plugin-alias": "^5.1.1",
"@rollup/plugin-babel": "^6.0.4",
"@rollup/plugin-commonjs": "^28.0.0",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^15.3.0",
"@testing-library/preact": "^3.2.4",
"axe-core": "^4.9.1",
"babel-loader": "^9.2.1",
"babel-plugin-istanbul": "^7.0.0",
"bpmn-js": "^18.0.0",
"bpmn-js-create-append-anything": "^0.5.2",
"bpmn-moddle": "^9.0.1",
"camunda-bpmn-js-behaviors": "^1.6.1",
"camunda-bpmn-moddle": "^7.0.1",
"chai": "^4.5.0",
"cross-env": "^7.0.3",
"diagram-js": "^15.0.0",
"downloadjs": "^1.4.7",
"eslint": "^9.0.0",
"eslint-plugin-bpmn-io": "^2.0.2",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-react-hooks": "^5.0.0",
"file-drops": "^0.5.0",
"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-mocha": "^2.0.1",
"karma-sinon-chai": "^2.0.2",
"karma-webpack": "^5.0.1",
"mocha": "^10.7.3",
"mocha-test-container-support": "^0.2.0",
"npm-run-all2": "^7.0.0",
"puppeteer": "^23.6.1",
"raw-loader": "^4.0.2",
"react-svg-loader": "^3.0.3",
"rimraf": "^6.0.1",
"rollup": "^4.22.4",
"rollup-plugin-react-svg": "^3.0.3",
"sinon": "^17.0.1",
"sinon-chai": "^3.7.0",
"webpack": "^5.95.0",
"zeebe-bpmn-moddle": "^1.6.0"
},
"peerDependencies": {
"@bpmn-io/properties-panel": ">= 3.7",
"bpmn-js": ">= 11.5",
"camunda-bpmn-js-behaviors": ">= 0.4",
"diagram-js": ">= 11.9"
}
}