-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
76 lines (76 loc) · 1.88 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
{
"name": "@bpmn-io/element-template-icon-renderer",
"version": "0.5.2",
"description": "A bpmn-js extension to render element templates icons",
"main": "src/index.js",
"publishConfig": {
"access": "public"
},
"files": [
"src"
],
"scripts": {
"all": "run-s lint test",
"lint": "eslint .",
"test": "karma start",
"dev": "npm test -- --no-single-run --auto-watch",
"start": "cross-env SINGLE_START=renderer npm run dev"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/bpmn-io/element-template-icon-renderer.git"
},
"keywords": [
"element-templates",
"bpmn-js",
"bpmn-js-extension"
],
"author": {
"name": "Niklas Kiefer",
"url": "https://github.com/pinussilvestrus"
},
"contributors": [
{
"name": "bpmn.io contributors",
"url": "https://github.com/bpmn-io"
}
],
"license": "MIT",
"devDependencies": {
"bpmn-js": "^17.1.0",
"chai": "^4.3.6",
"cross-env": "^7.0.3",
"diagram-js": "^14.2.0",
"eslint": "^8.24.0",
"eslint-plugin-bpmn-io": "^0.16.0",
"karma": "^6.4.1",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^3.1.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-sinon-chai": "^2.0.2",
"karma-webpack": "^5.0.0",
"min-dom": "^4.1.0",
"mocha": "^10.0.0",
"mocha-test-container-support": "^0.2.0",
"npm-run-all": "^4.1.5",
"puppeteer": "^18.0.5",
"raw-loader": "^4.0.2",
"sinon": "^9.2.4",
"sinon-chai": "^3.7.0",
"source-map-loader": "^4.0.0",
"webpack": "^5.74.0",
"zeebe-bpmn-moddle": "^0.19.0"
},
"dependencies": {
"inherits-browser": "^0.1.0",
"tiny-svg": "^3.0.1"
},
"peerDependencies": {
"bpmn-js": ">= 8",
"diagram-js": ">= 7"
},
"sideEffects": false
}