forked from bpmn-io/bpmn-js-properties-panel
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
110 lines (110 loc) · 3.22 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
{
"name": "bpmn-js-properties-panel",
"version": "1.0.0-alpha.0",
"description": "A simple properties panel for bpmn-js",
"files": [
"dist"
],
"scripts": {
"all": "run-s lint test distro",
"distro": "run-s build test:build",
"build": "run-p 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",
"start:templates": "cross-env SINGLE_START=templates npm run dev",
"prepare": "run-s bundle"
},
"repository": {
"type": "git",
"url": "https://github.com/bpmn-io/bpmn-js-properties-panel"
},
"keywords": [
"bpmn-io",
"bpmn-js",
"properties",
"properties-panel"
],
"main": "dist/index.js",
"module": "dist/index.esm.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/element-templates-validator": "^0.3.0",
"@bpmn-io/extract-process-variables": "^0.4.3",
"array-move": "^3.0.1",
"classnames": "^2.3.1",
"ids": "^1.0.0",
"min-dash": "^3.8.0",
"min-dom": "^3.1.3",
"semver": "^7.3.5"
},
"devDependencies": {
"@babel/core": "^7.14.3",
"@babel/plugin-transform-react-jsx": "^7.14.3",
"@bpmn-io/properties-panel": "^0.10.1",
"@rollup/plugin-alias": "^3.1.2",
"@rollup/plugin-babel": "^5.3.0",
"@rollup/plugin-commonjs": "^19.0.0",
"@rollup/plugin-json": "^4.1.0",
"@rollup/plugin-node-resolve": "^13.0.0",
"@testing-library/preact": "^2.0.1",
"babel-loader": "^8.2.2",
"bpmn-js": "^8.9.0",
"bpmn-moddle": "^7.1.1",
"camunda-bpmn-moddle": "^6.1.0",
"chai": "^4.3.4",
"copy-webpack-plugin": "^9.0.0",
"cross-env": "^7.0.3",
"css-loader": "^5.2.6",
"diagram-js": "^7.5.0",
"eslint": "^7.28.0",
"eslint-plugin-bpmn-io": "^0.12.0",
"eslint-plugin-import": "^2.23.4",
"eslint-plugin-react-hooks": "^4.2.0",
"istanbul-instrumenter-loader": "^3.0.1",
"karma": "^6.3.3",
"karma-chrome-launcher": "^3.1.0",
"karma-coverage": "^2.0.3",
"karma-debug-launcher": "0.0.4",
"karma-env-preprocessor": "^0.1.1",
"karma-mocha": "^2.0.1",
"karma-sinon-chai": "^2.0.2",
"karma-webpack": "^5.0.0",
"mocha": "^9.1.3",
"mocha-test-container-support": "^0.2.0",
"npm-run-all": "^4.1.5",
"puppeteer": "^10.0.0",
"raw-loader": "^4.0.2",
"react-svg-loader": "^3.0.3",
"rollup": "^2.52.6",
"rollup-plugin-copy": "^3.4.0",
"rollup-plugin-react-svg": "^3.0.3",
"sinon": "^11.1.1",
"sinon-chai": "^3.7.0",
"sirv-cli": "^1.0.12",
"webpack": "^5.38.1",
"zeebe-bpmn-moddle": "^0.10.0"
},
"peerDependencies": {
"bpmn-js": "8.x",
"diagram-js": "7.x",
"@bpmn-io/properties-panel": "0.10.x"
}
}