-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
79 lines (79 loc) · 1.91 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
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
{
"name": "camunda-bpmn-js-behaviors",
"version": "1.9.1",
"description": "Camunda Platform 7 and 8 behaviors for bpmn-js",
"main": "lib/index.js",
"scripts": {
"all": "run-s lint test",
"lint": "eslint .",
"dev": "npm test -- --auto-watch --no-single-run",
"test": "karma start karma.config.js"
},
"repository": {
"type": "git",
"url": "https://github.com/camunda/camunda-bpmn-js-behaviors"
},
"keywords": [
"bpmn",
"bpmn20",
"camunda",
"zeebe",
"modeling",
"bpmn-js"
],
"author": {
"name": "Philipp Fromme",
"url": "https://github.com/philippfromme"
},
"contributors": [
{
"name": "bpmn.io contributors",
"url": "https://github.com/bpmn-io"
}
],
"license": "MIT",
"dependencies": {
"ids": "^1.0.0",
"min-dash": "^4.0.0"
},
"devDependencies": {
"@babel/core": "^7.23.7",
"babel-loader": "^9.1.3",
"babel-plugin-istanbul": "^7.0.0",
"bpmn-js": "^18.0.0",
"camunda-bpmn-moddle": "^7.0.1",
"chai": "^4.4.1",
"cross-env": "^7.0.3",
"eslint": "^9.12.0",
"eslint-plugin-bpmn-io": "^2.0.2",
"execa": "^8.0.0",
"karma": "^6.4.2",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^3.2.0",
"karma-coverage": "^2.2.1",
"karma-debug-launcher": "^0.0.5",
"karma-env-preprocessor": "^0.1.1",
"karma-firefox-launcher": "^2.1.2",
"karma-mocha": "^2.0.1",
"karma-safari-launcher": "^1.0.0",
"karma-sinon-chai": "^2.0.2",
"karma-webpack": "^5.0.0",
"min-dom": "^4.0.0",
"mocha": "^10.0.0",
"mocha-test-container-support": "^0.2.0",
"npm-run-all2": "^7.0.0",
"puppeteer": "^24.0.0",
"sinon": "^17.0.1",
"sinon-chai": "^3.7.0",
"webpack": "^5.74.0",
"zeebe-bpmn-moddle": "^1.9.0"
},
"peerDependencies": {
"bpmn-js": ">= 9",
"camunda-bpmn-moddle": ">= 7",
"zeebe-bpmn-moddle": ">= 0.18"
},
"files": [
"lib"
]
}