-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
33 lines (33 loc) · 911 Bytes
/
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
{
"name": "camunda-modeler-script-editor",
"version": "1.0.0",
"description": "CodeMirror script editor for Camunda modeler",
"main": "index.js",
"scripts": {
"all": "run-s bundle",
"bundle": "webpack ./client/client.js -o client/client-bundle.js --devtool sourcemap --mode development"
},
"repository": {
"type": "git",
"url": "git+https://github.com/igorsimko/camunda-script-editor-plugin.git"
},
"keywords": [
"camunda",
"modeler",
"plugin",
"script",
"editor"
],
"author": "Igor Šimko",
"license": "MIT",
"bugs": {
"url": "https://github.com/igorsimko/camunda-script-editor-plugin/issues"
},
"homepage": "https://github.com/igorsimko/camunda-script-editor-plugin.git#readme",
"devDependencies": {
"camunda-modeler-plugin-helpers": "^3.0.0",
"npm-run-all": "^4.1.5",
"webpack": "^4.28.1",
"webpack-cli": "^3.2.1"
}
}