UNPKG

dmn-moddle

Version:
79 lines (78 loc) 1.96 kB
{ "name": "dmn-moddle", "version": "11.0.0", "description": "A moddle wrapper for DMN 1.3", "scripts": { "all": "run-s generate-schema lint test distro", "lint": "eslint .", "dev": "npm test -- --watch", "test": "mocha --reporter=spec --recursive test/spec", "distro": "run-s build test:build", "build": "rollup -c", "test:build": "mocha --reporter=spec --recursive test/distro", "prepublishOnly": "run-s distro", "generate-schema": "node tasks/generate-schema.cjs", "test:tck": "npm run test:integration", "test:integration": "mocha --reporter=spec test/integration/*.js" }, "repository": { "type": "git", "url": "https://github.com/bpmn-io/dmn-moddle" }, "type": "module", "exports": { ".": { "import": "./dist/index.js", "require": "./dist/index.cjs" }, "./resources/*": "./resources/*", "./package.json": "./package.json" }, "engines": { "node": ">= 18" }, "keywords": [ "dmn", "moddle", "meta-model" ], "author": { "name": "Sebastian Stamm", "url": "https://github.com/SebastianStamm" }, "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", "chai": "^4.4.1", "cmof-parser": "^0.5.1", "eslint": "^9.30.1", "eslint-plugin-bpmn-io": "^2.2.0", "glob": "^11.0.3", "jsondiffpatch": "^0.7.3", "mocha": "^10.3.0", "npm-run-all2": "^8.0.0", "rollup": "^4.12.1", "sax": "^1.2.4", "tiny-stack": "^2.0.1", "xsd-schema-validator": "^0.10.0" }, "dependencies": { "min-dash": "^4.0.0", "moddle": "^7.0.0", "moddle-xml": "^11.0.0" }, "files": [ "dist", "resources", "!resources/dmn/xmi" ] }