-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
63 lines (63 loc) · 1.62 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": "camunda-modeler-webpack-plugin",
"version": "0.1.0",
"description": "Webpack plugin to easily configure Camunda Modeler extensions",
"main": "src/index.js",
"files": [
"src"
],
"scripts": {
"all": "run-s lint test",
"lint": "eslint .",
"test": "mocha -r esm 'test/**/*.spec.js'",
"dev": "npm run test -- --watch"
},
"repository": {
"type": "git",
"url": "git+https://github.com/camunda/camunda-modeler-webpack-plugin.git"
},
"keywords": [
"camunda-modeler",
"camunda-modeler-plugin",
"webpack",
"webpack-plugin"
],
"author": {
"name": "Niklas Kiefer",
"url": "https://github.com/pinussilvestrus"
},
"contributors": [
{
"name": "bpmn.io contributors",
"url": "https://github.com/bpmn-io"
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/pinussilvestrus/camunda-modeler-webpack-plugin/issues"
},
"homepage": "https://github.com/pinussilvestrus/camunda-modeler-webpack-plugin#readme",
"devDependencies": {
"@babel/core": "^7.16.5",
"camunda-modeler-plugin-helpers": "^5.0.0",
"chai": "^4.3.6",
"eslint": "^7.32.0",
"eslint-plugin-bpmn-io": "^0.13.0",
"eslint-plugin-import": "^2.25.4",
"esm": "^3.2.25",
"memory-fs": "^0.5.0",
"mocha": "^8.4.0",
"npm-run-all": "^4.1.5",
"webpack": "^5.68.0"
},
"dependencies": {
"@babel/plugin-transform-react-jsx": "^7.16.5",
"@babel/preset-react": "^7.16.7",
"babel-loader": "^8.2.3"
},
"peerDependencies": {
"@babel/core": ">=7.0.0",
"webpack": ">=4.0.0",
"camunda-modeler-plugin-helpers": ">=5.0.0"
}
}