This repository has been archived by the owner on Mar 29, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
63 lines (63 loc) · 1.71 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
{
"name": "bpmn-js-connectors-extension",
"version": "0.4.6",
"description": "The bpmn-js connectors extension",
"scripts": {
"dev": "npm start",
"all": "run-s lint bundle build:example",
"bundle": "rollup -c",
"test": "echo 'no tests'",
"build:example": "NODE_ENV=production webpack",
"start": "webpack serve --open",
"lint": "eslint .",
"prepare": "npm run bundle"
},
"source": "src/index.js",
"main": "dist/index.js",
"module": "dist/index.es.js",
"repository": "https://github.com/bpmn-io/bpmn-js-connectors-extension.git",
"license": "MIT",
"devDependencies": {
"@bpmn-io/add-exporter": "^0.2.0",
"@bpmn-io/element-templates-icons-renderer": "^0.3.0",
"@bpmn-io/properties-panel": "^1.1.1",
"@ibm/plex": "^6.0.0",
"@rollup/plugin-commonjs": "^22.0.2",
"@rollup/plugin-node-resolve": "^14.1.0",
"bpmn-js": "^11.1.1",
"bpmn-js-properties-panel": "^1.15.0",
"camunda-bpmn-js-behaviors": "^0.4.0",
"clsx": "^1.1.1",
"copy-webpack-plugin": "^11.0.0",
"css-loader": "^6.6.0",
"downloadjs": "^1.4.7",
"eslint": "^8.24.0",
"eslint-plugin-bpmn-io": "^0.16.0",
"file-drops": "^0.5.0",
"file-open": "^0.1.1",
"htm": "^3.1.1",
"npm-run-all": "^4.1.2",
"preact": "^10.10.6",
"rollup": "^2.70.1",
"rollup-plugin-css-only": "^3.1.0",
"style-loader": "^3.3.1",
"webpack": "^5.51.0",
"webpack-cli": "^4.8.0",
"webpack-dev-server": "^4.0.0",
"zeebe-bpmn-moddle": "^0.17.0"
},
"dependencies": {
"min-dom": "^4.0.3",
"tiny-svg": "^3.0.0"
},
"peerDependencies": {
"bpmn-js": ">= 8.7",
"diagram-js": ">= 7.8"
},
"sideEffects": [
"*.css"
],
"files": [
"dist"
]
}