forked from bpmn-io/diagram-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
94 lines (94 loc) · 2.33 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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
{
"name": "diagram-js",
"version": "14.0.0",
"description": "A toolbox for displaying and modifying diagrams on the web",
"main": "lib/Diagram.js",
"module": "lib/Diagram.js",
"types": "lib/Diagram.d.ts",
"files": [
"lib",
"assets",
"test/util",
"test/helper",
"test/matchers",
"!.eslintrc",
"!lib/**/*.spec.ts"
],
"scripts": {
"all": "run-s lint test generate-types",
"lint": "eslint .",
"dev": "npm test -- --auto-watch --no-single-run",
"generate-types": "run-s generate-types:*",
"generate-types:generate": "del-cli \"lib/**/*.d.ts\" && npx bio-dts -r lib",
"generate-types:test": "tsc --noEmit --noImplicitAny",
"test": "karma start",
"prepublishOnly": "run-s generate-types"
},
"repository": {
"type": "git",
"url": "https://github.com/bpmn-io/diagram-js"
},
"engines": {
"node": "*"
},
"keywords": [
"modeler",
"modeling",
"canvas",
"diagram-js"
],
"author": {
"name": "Nico Rehwaldt",
"url": "https://github.com/nikku"
},
"contributors": [
{
"name": "bpmn.io contributors",
"url": "https://github.com/bpmn-io"
}
],
"license": "MIT",
"sideEffects": [
"*.css"
],
"devDependencies": {
"@babel/core": "^7.20.2",
"@testing-library/preact": "^3.2.3",
"babel-loader": "^9.1.0",
"babel-plugin-istanbul": "^6.1.1",
"bio-dts": "^0.8.1",
"chai": "^4.3.6",
"del-cli": "^5.0.0",
"eslint": "^8.24.0",
"eslint-plugin-bpmn-io": "^1.0.0",
"eslint-plugin-import": "^2.26.0",
"jquery": "^3.5.1",
"karma": "^6.4.0",
"karma-chrome-launcher": "^3.1.1",
"karma-coverage": "^2.2.0",
"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",
"mocha": "^10.1.0",
"mocha-test-container-support": "^0.2.0",
"npm-run-all2": "^6.0.0",
"puppeteer": "^22.0.0",
"sinon": "^17.0.0",
"sinon-chai": "^3.7.0",
"typescript": "^5.0.0",
"webpack": "^5.74.0"
},
"dependencies": {
"@bpmn-io/diagram-js-ui": "^0.2.2",
"clsx": "^2.0.0",
"didi": "^10.0.1",
"inherits-browser": "^0.1.0",
"min-dash": "^4.1.0",
"min-dom": "^4.1.0",
"object-refs": "^0.4.0",
"path-intersection": "^3.0.0",
"tiny-svg": "^3.0.1"
}
}