-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
53 lines (53 loc) · 1.46 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
{
"name": "camunda-modeler-excel-import-plugin",
"version": "1.4.1",
"description": "Camunda Modeler plugin to import Excel Sheets to DMN 1.3 Decision Tables (and vice versa).",
"main": "index.js",
"repository": {
"type": "git",
"url": "https://github.com/pinussilvestrus/camunda-modeler-excel-import-plugin.git"
},
"files": [
"dist",
"client/style.css",
"menu.js",
"index.js"
],
"author": "Niklas Kiefer <niklas.kiefer@camunda.com (https://github.com/pinussilvestrus)>",
"license": "MIT",
"contributors": [
"Felix Anhalt <felix.anhalt@camunda.com (https://github.com/anhaltFelix)>"
],
"scripts": {
"all": "run-s build test",
"dev": "webpack -w",
"build": "webpack",
"lint": "eslint .",
"mocha": "mocha -r esm \"test/**/*Spec.js\"",
"test": "run-s lint mocha"
},
"dependencies": {
"dmn-moddle": "^10.0.0",
"ids": "^1.0.5",
"node-xlsx": "0.23.0",
"xmlbuilder": "^15.1.1"
},
"devDependencies": {
"@babel/core": "^7.23.3",
"buffer": "^6.0.3",
"camunda-modeler-plugin-helpers": "^5.1.0",
"camunda-modeler-webpack-plugin": "^0.1.0",
"chai": "^4.3.10",
"chai-string": "^1.5.0",
"classnames": "^2.3.2",
"eslint": "^8.54.0",
"eslint-plugin-bpmn-io": "^1.0.0",
"esm": "^3.2.25",
"mocha": "^8.4.0",
"npm-run-all": "^4.1.5",
"path-browserify": "^1.0.1",
"react-svg-loader": "^3.0.3",
"webpack": "^5.89.0",
"webpack-cli": "^5.1.4"
}
}