-
Notifications
You must be signed in to change notification settings - Fork 21
/
package.json
91 lines (91 loc) · 2.55 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
{
"name": "@bpmn-io/properties-panel",
"version": "3.25.0",
"description": "Library for creating bpmn-io properties panels.",
"main": "dist/index.js",
"module": "dist/index.esm.js",
"files": [
"dist",
"assets",
"preact"
],
"scripts": {
"all": "run-s lint clean build test",
"clean": "del-cli preact dist",
"build": "rollup -c --bundleConfigAsCjs",
"build:watch": "npm run build -- --watch",
"lint": "eslint .",
"dev": "npm test -- --auto-watch --no-single-run",
"test": "karma start karma.config.js",
"prepare": "run-s build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bpmn-io/properties-panel.git"
},
"publishConfig": {
"access": "public"
},
"engines": {
"node": "*"
},
"author": "Niklas Kiefer <[email protected]> (https://github.com/pinussilvestrus)",
"contributors": [
{
"name": "bpmn.io contributors",
"url": "https://github.com/bpmn-io"
}
],
"license": "MIT",
"dependencies": {
"@bpmn-io/feel-editor": "^1.9.0",
"@codemirror/view": "^6.28.1",
"classnames": "^2.3.1",
"feelers": "^1.4.0",
"focus-trap": "^7.5.2",
"min-dash": "^4.1.1",
"min-dom": "^4.0.3"
},
"devDependencies": {
"@babel/core": "^7.23.6",
"@babel/plugin-transform-react-jsx": "^7.23.4",
"@rollup/plugin-babel": "^6.0.4",
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^15.2.3",
"@testing-library/preact": "^3.2.4",
"axe-core": "^4.3.5",
"babel-loader": "^9.1.3",
"babel-plugin-inline-react-svg": "^2.0.2",
"babel-plugin-istanbul": "^7.0.0",
"babel-plugin-module-resolver": "^5.0.0",
"chai": "^4.3.10",
"copy-webpack-plugin": "^12.0.0",
"cross-env": "^7.0.3",
"del-cli": "^6.0.0",
"diagram-js": "^15.1.0",
"eslint": "^9.12.0",
"eslint-plugin-bpmn-io": "^2.0.2",
"eslint-plugin-import": "^2.30.0",
"eslint-plugin-react-hooks": "^5.0.0",
"karma": "^6.4.2",
"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.0",
"mocha": "^10.2.0",
"mocha-test-container-support": "^0.2.0",
"npm-run-all2": "^7.0.0",
"preact": "^10.19.3",
"puppeteer": "^23.0.0",
"raw-loader": "^4.0.2",
"replace-in-file": "^7.0.2",
"rollup": "^4.9.1",
"rollup-plugin-copy": "^3.5.0",
"sinon": "^17.0.1",
"sinon-chai": "^3.7.0",
"webpack": "^5.89.0"
}
}