-
Notifications
You must be signed in to change notification settings - Fork 18
/
package.json
63 lines (63 loc) · 1.66 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
{
"name": "diagram-js-minimap",
"version": "5.1.0",
"description": "A minimap for diagram-js",
"main": "dist/index.js",
"module": "dist/index.esm.js",
"umd:main": "dist/diagram-minimap.umd.js",
"source": "lib/index.js",
"scripts": {
"all": "run-s lint test distro",
"lint": "eslint .",
"dev": "npm test -- --auto-watch --no-single-run",
"test": "karma start",
"distro": "run-s build test:build",
"build": "rollup -c --bundleConfigAsCjs",
"build:watch": "run-s bundle -- -w",
"test:build": "karma start test/distro/karma.conf.js",
"prepublishOnly": "run-s distro"
},
"repository": {
"type": "git",
"url": "[email protected]:bpmn-io/diagram-js-minimap.git"
},
"keywords": [
"diagram-js",
"minimap"
],
"author": "Philipp Fromme",
"license": "MIT",
"devDependencies": {
"@rollup/plugin-commonjs": "^28.0.0",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-terser": "^0.4.4",
"chai": "^4.4.1",
"diagram-js": "^14.7.1",
"eslint": "^9.0.0",
"eslint-plugin-bpmn-io": "^2.0.1",
"inherits-browser": "^0.1.0",
"karma": "^6.4.3",
"karma-chrome-launcher": "^3.2.0",
"karma-firefox-launcher": "^2.1.3",
"karma-mocha": "^2.0.1",
"karma-sinon-chai": "^2.0.2",
"karma-webpack": "^5.0.1",
"mocha": "^10.4.0",
"mocha-test-container-support": "^0.2.0",
"npm-run-all2": "^7.0.0",
"puppeteer": "^23.0.0",
"rollup": "^4.9.4",
"sinon": "^17.0.1",
"sinon-chai": "^3.7.0",
"webpack": "^5.91.0"
},
"dependencies": {
"min-dash": "^4.2.1",
"min-dom": "^4.2.1",
"tiny-svg": "^3.1.2"
},
"files": [
"dist",
"assets"
]
}