-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
47 lines (47 loc) · 1.13 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
{
"name": "chor-js-demo",
"version": "1.1.0",
"description": "A demo showcasing the chor-js BPMN 2.0 choreography diagram modeler.",
"main": "app/app.js",
"scripts": {
"lint": "eslint .",
"build": "parcel build app/index.html -d build --public-url ./",
"dev": "parcel app/index.html -p 9013"
},
"keywords": [
"choreography-modeler"
],
"author": {
"name": "Jan Ladleif",
"url": "https://github.com/jan-ladleif"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/bptlab/chor-js-demo"
},
"assetTypesToStringify": [
"bpmn"
],
"browserslist": [
"last 2 Firefox versions",
"last 2 Chrome versions",
"last 2 Safari versions",
"last 2 Edge versions",
"last 2 Opera versions",
"last 2 Baidu versions"
],
"devDependencies": {
"@babel/core": "^7.8.7",
"eslint": "^4.19.1",
"eslint-plugin-bpmn-io": "^0.7.0",
"less": "^3.11.1",
"parcel-bundler": "^1.12.4",
"parcel-plugin-stringify-anything": "^1.2.0"
},
"dependencies": {
"bpmn-js-properties-panel": "^0.35.0",
"chor-js": "0.7.1",
"inherits": "^2.0.4"
}
}