forked from bpmn-io/diagram-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
84 lines (84 loc) · 1.96 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
{
"name": "diagram-js",
"version": "7.8.1",
"description": "A toolbox for displaying and modifying diagrams on the web",
"main": "index.js",
"files": [
".babelrc",
"lib",
"assets",
"test/util",
"test/helper",
"test/matchers",
"!.eslintrc"
],
"scripts": {
"all": "run-s lint test",
"lint": "eslint .",
"dev": "npm test -- --auto-watch --no-single-run",
"test": "karma start"
},
"repository": {
"type": "git",
"url": "https://github.com/bpmn-io/diagram-js"
},
"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": {
"chai": "^4.2.0",
"eslint": "^7.14.0",
"eslint-plugin-bpmn-io": "^0.12.0",
"eslint-plugin-import": "^2.22.1",
"istanbul-instrumenter-loader": "^3.0.1",
"jquery": "^3.5.1",
"karma": "^5.2.3",
"karma-chrome-launcher": "^3.1.0",
"karma-coverage": "^2.0.3",
"karma-firefox-launcher": "^2.1.0",
"karma-ie-launcher": "^1.0.0",
"karma-mocha": "^2.0.1",
"karma-phantomjs-launcher": "^1.0.4",
"karma-safari-launcher": "^1.0.0",
"karma-sinon-chai": "^2.0.2",
"karma-webpack": "^4.0.2",
"mocha": "^8.2.1",
"mocha-test-container-support": "^0.2.0",
"npm-run-all": "^4.1.2",
"phantomjs-prebuilt": "^2.1.12",
"puppeteer": "^8.0.0",
"raw-loader": "^1.0.0",
"sinon": "^7.5.0",
"sinon-chai": "^3.5.0",
"url-loader": "^4.1.1",
"webpack": "^4.44.2"
},
"dependencies": {
"css.escape": "^1.5.1",
"didi": "^5.2.1",
"hammerjs": "^2.0.1",
"inherits": "^2.0.4",
"min-dash": "^3.5.2",
"min-dom": "^3.1.3",
"object-refs": "^0.3.0",
"path-intersection": "^2.2.1",
"tiny-svg": "^2.2.2"
}
}