{ "name": "moddle", "version": "6.2.3", "description": "A library for importing meta-model based file formats into JS", "scripts": { "all": "run-s 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", "prepare": "npm run build", "test:build": "mocha --reporter=spec --recursive test/distro", "prepublishOnly": "run-s distro" }, "type": "module", "repository": { "type": "git", "url": "https://github.com/bpmn-io/moddle" }, "main": "dist/index.cjs", "module": "dist/index.esm.js", "umd:main": "dist/moddle.umd.cjs", "source": "lib/index.js", "keywords": [ "model", "meta-model", "xml", "xsd", "import", "export" ], "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": { "@rollup/plugin-commonjs": "^24.0.1", "@rollup/plugin-node-resolve": "^15.0.1", "@rollup/plugin-terser": "^0.4.0", "chai": "^4.3.7", "eslint": "^8.34.0", "eslint-plugin-bpmn-io": "^1.0.0", "mocha": "^10.2.0", "npm-run-all": "^4.1.2", "rollup": "^3.17.2" }, "dependencies": { "min-dash": "^4.0.0" }, "files": [ "dist" ] }