forked from bptlab/chor-js
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 1.87 KB
/
package.json
File metadata and controls
82 lines (82 loc) · 1.87 KB
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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"name": "@bptlab/openbpt-modeler-bpmn-choreography",
"version": "1.0.0",
"description": "A fork of the chor-js repository for use in the OpenBPT platform.",
"publishConfig": {
"access": "public"
},
"keywords": [
"choreography model",
"choreography",
"modeler",
"browser",
"choreo-js",
"toolkit",
"bpmn"
],
"main": "index.js",
"directories": {
"lib": "lib"
},
"scripts": {
"lint": "eslint .",
"test": "karma start",
"bundle": "node bundler.js",
"prepublishOnly": "npm run bundle",
"visualTest": "node ./test/testBundler.js"
},
"author": {
"name": "bptlab",
"url": "https://github.com/bptlab"
},
"contributors": [
{
"name": "Jan Ladleif",
"url": "https://github.com/jan-ladleif"
},
{
"name": "Maximilian König"
}
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/bptlab/openbpt-modeler-bpmn-choreography"
},
"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": {
"chai": "^4.5.0",
"eslint": "^6.8.0",
"eslint-plugin-bpmn-io": "^0.8.2",
"karma": "^5.2.3",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^3.2.0",
"karma-mocha": "^2.0.1",
"karma-parcel": "^0.5.2",
"mocha": "^8.4.0",
"mocha-test-container-support": "^0.2.0",
"parcel-bundler": "^1.12.5",
"parcel-plugin-stringify-anything": "^1.2.0",
"puppeteer": "^3.3.0",
"sinon": "^9.2.4",
"sinon-chai": "^3.7.0",
"source-map-support": "^0.5.21"
},
"dependencies": {
"bpmn-js": "^7.5.0",
"diagram-js": "^6.8.2",
"inherits": "^2.0.4",
"min-dash": "^3.8.1",
"tiny-svg": "^2.2.4"
}
}