moddle
Version:
A library for importing meta-model based file formats into JS
66 lines (65 loc) • 1.46 kB
JSON
{
"name": "moddle",
"version": "7.2.0",
"description": "A library for importing meta-model based file formats into JS",
"scripts": {
"all": "run-s lint test test:schema",
"lint": "eslint .",
"pretest": "run-s build",
"dev": "npm test -- --watch",
"test": "mocha --reporter=spec --recursive test",
"test:schema": "ajv -s resources/schema/moddle.json -d 'test/fixtures/**/*.json'",
"build": "rollup -c",
"prepare": "run-s build"
},
"type": "module",
"exports": {
".": {
"import": "./dist/index.js",
"require": "./dist/index.cjs"
},
"./package.json": "./package.json"
},
"repository": {
"type": "git",
"url": "https://github.com/bpmn-io/moddle"
},
"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": {
"ajv": "^8.12.0",
"ajv-cli": "^5.0.0",
"chai": "^4.3.7",
"eslint": "^9.12.0",
"eslint-plugin-bpmn-io": "^2.0.2",
"fast-glob": "^3.3.2",
"mocha": "^10.2.0",
"npm-run-all": "^4.1.2",
"rollup": "^4.12.0"
},
"dependencies": {
"min-dash": "^4.2.1"
},
"files": [
"dist",
"resources/schema/moddle.json"
]
}