| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263 |
- {
- "name": "diagram-js-minimap",
- "version": "4.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": "git@github.com:bpmn-io/diagram-js-minimap.git"
- },
- "keywords": [
- "diagram-js",
- "minimap"
- ],
- "author": "Philipp Fromme",
- "license": "MIT",
- "devDependencies": {
- "@rollup/plugin-commonjs": "^24.0.1",
- "@rollup/plugin-node-resolve": "^15.0.1",
- "@rollup/plugin-terser": "^0.4.0",
- "chai": "^4.3.7",
- "diagram-js": "^11.11.0",
- "eslint": "^8.36.0",
- "eslint-plugin-bpmn-io": "^1.0.0",
- "karma": "^6.4.1",
- "karma-chrome-launcher": "^3.1.1",
- "karma-firefox-launcher": "^2.1.2",
- "karma-mocha": "^2.0.1",
- "karma-sinon-chai": "^2.0.2",
- "karma-webpack": "^5.0.0",
- "mocha": "^10.2.0",
- "mocha-test-container-support": "^0.2.0",
- "npm-run-all": "^4.1.5",
- "puppeteer": "^19.7.5",
- "rollup": "^3.20.0",
- "sinon": "^15.0.2",
- "sinon-chai": "^3.7.0",
- "webpack": "^5.76.3"
- },
- "dependencies": {
- "hammerjs": "^2.0.8",
- "min-dash": "^4.0.0",
- "min-dom": "^4.1.0",
- "tiny-svg": "^3.0.0"
- },
- "files": [
- "dist",
- "assets"
- ]
- }
|