1{ 2 "name": "bpmn-js-bpmnlint", 3 "version": "0.24.0", 4 "description": "bpmn-js integration for bpmnlint", 5 "main": "dist/index.js", 6 "module": "dist/index.esm.js", 7 "source": "lib/index.js", 8 "umd:main": "dist/bpmn-js-bpmnlint.umd.js", 9 "scripts": { 10 "all": "run-s lint test distro", 11 "lint": "eslint .", 12 "start": "cross-env SINGLE_START=true npm run dev", 13 "test": "karma start --no-auto-test --single-run", 14 "dev": "karma start", 15 "distro": "run-s build test:build copy-assets", 16 "build": "NODE_ENV=production rollup -c --bundleConfigAsCjs", 17 "build:watch": "npm run build -- -w", 18 "test:build": "karma start test/distro/karma.conf.js", 19 "copy-assets": "cpx assets/css/* dist/assets/css/ -v", 20 "prepublishOnly": "run-s distro" 21 }, 22 "exports": { 23 ".": { 24 "require": "./dist/index.js", 25 "import": "./dist/index.esm.js" 26 }, 27 "./package.json": "./package.json", 28 "./dist/*": "./dist/*" 29 }, 30 "repository": { 31 "type": "git", 32 "url": "git+https://github.com/bpmn-io/bpmn-js-bpmnlint.git" 33 }, 34 "author": "Philipp Fromme <https://github.com/philippfromme>", 35 "contributors": [ 36 { 37 "name": "Nico Rehwaldt", 38 "url": "https://github.com/nikku" 39 } 40 ], 41 "license": "MIT", 42 "devDependencies": { 43 "bpmn-js": "^18.11.0", 44 "bpmnlint": "^11.8.0", 45 "bpmnlint-loader": "^0.1.6", 46 "chai": "^6.0.0", 47 "cpx2": "^8.0.0", 48 "cross-env": "^10.1.0", 49 "diagram-js": "^15.7.0", 50 "eslint": "^9.39.2", 51 "eslint-plugin-bpmn-io": "^2.2.0", 52 "karma": "^6.4.4", 53 "karma-chrome-launcher-2": "^3.3.0", 54 "karma-debug-launcher": "^0.0.5", 55 "karma-env-preprocessor": "^0.1.1", 56 "karma-mocha": "^2.0.1", 57 "karma-webpack": "^5.0.1", 58 "mocha": "^11.0.0", 59 "mocha-test-container-support": "^0.2.0", 60 "npm-run-all2": "^8.0.4", 61 "puppeteer": "^24.34.0", 62 "rollup": "^4.54.0", 63 "rollup-plugin-string": "^3.0.0", 64 "sinon": "^21.0.0", 65 "sinon-chai": "^4.0.0", 66 "webpack": "^5.104.1" 67 }, 68 "dependencies": { 69 "min-dash": "^5.0.0", 70 "min-dom": "^5.2.0" 71 }, 72 "peerDependencies": { 73 "bpmn-js": "*", 74 "bpmnlint": ">= 3.2", 75 "diagram-js": "*" 76 }, 77 "files": [ 78 "dist" 79 ] 80} 81