-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathpackage.json
34 lines (34 loc) · 982 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
34
{
"name": "camunda-modeler-property-info-plugin",
"version": "0.0.1",
"description": "This plugin serves a better overview which properties are set per shape.",
"main": "index.js",
"scripts": {
"build": "browserify client/client.js > client/client-bundle.js",
"auto-build": "watchify client/client.js -o client/client-bundle.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/umb/camunda-modeler-property-info-plugin.git"
},
"keywords": [
"camunda",
"modeler",
"plugin",
"properties"
],
"author": "Patrick Boesch",
"license": "Apache License 2.0",
"bugs": {
"url": "https://github.com/umb/camunda-modeler-property-info-plugin/issues"
},
"homepage": "https://github.com/umb/camunda-modeler-property-info-plugin#readme",
"devDependencies": {
"browserify": "^17.0.0",
"camunda-modeler-plugin-helpers": "^1.7.0",
"watchify": "^3.9.0"
},
"dependencies": {
"lodash": "^3.0.0"
}
}