UNPKG

bpmn-moddle

Version:
76 lines (75 loc) 1.85 kB
{ "name": "bpmn-moddle", "version": "9.0.3", "description": "A moddle wrapper for BPMN 2.0", "scripts": { "all": "run-s generate-schema lint test", "lint": "eslint .", "dev": "npm test -- --watch", "pretest": "run-s build", "test": "mocha --reporter=spec --recursive test", "distro": "run-s build test:build", "build": "rollup -c", "prepare": "run-s build", "generate-schema": "node tasks/generate-schema.cjs" }, "type": "module", "repository": { "type": "git", "url": "https://github.com/bpmn-io/bpmn-moddle" }, "exports": { ".": { "import": "./dist/index.js", "require": "./dist/index.cjs" }, "./resources/*": "./resources/*", "./package.json": "./package.json" }, "engines": { "node": ">= 18" }, "keywords": [ "bpmn", "moddle", "bpmn20", "meta-model" ], "author": { "name": "Nico Rehwaldt", "url": "https://github.com/nikku" }, "contributors": [ { "name": "bpmn.io contributors", "url": "https://github.com/bpmn-io" } ], "license": "MIT", "sideEffects": false, "devDependencies": { "@babel/eslint-parser": "^7.25.8", "@babel/plugin-syntax-import-attributes": "^7.23.3", "@rollup/plugin-json": "^6.1.0", "@rollup/plugin-node-resolve": "^16.0.0", "bpmn-in-color-moddle": "^0.1.0", "chai": "^4.4.1", "cmof-parser": "^0.5.2", "eslint": "^9.12.0", "eslint-plugin-bpmn-io": "^2.0.1", "mocha": "^10.3.0", "npm-run-all2": "^8.0.0", "rollup": "^4.12.1", "xsd-schema-validator": "^0.10.0" }, "dependencies": { "min-dash": "^4.2.1", "moddle": "^7.0.0", "moddle-xml": "^11.0.0" }, "files": [ "dist", "resources", "!resources/bpmn/cmof" ] }