bpmn-to-image
Version:
Convert a BPMN 2.0 diagrams to PDF, SVG or PNG images
54 lines (53 loc) • 1.02 kB
JSON
{
"name": "bpmn-to-image",
"version": "0.10.0",
"description": "Convert a BPMN 2.0 diagrams to PDF, SVG or PNG images",
"main": "./index.js",
"type": "module",
"exports": {
".": "./index.js",
"./package.json": "./package.json"
},
"bin": {
"bpmn-to-image": "./cli.js"
},
"scripts": {
"all": "run-s test",
"test": "mocha test/*.*js"
},
"repository": {
"type": "git",
"url": "git@github.com:bpmn-io/bpmn-to-image.git"
},
"keywords": [
"BPMN",
"BPMN 2.0",
"image",
"export",
"converter",
"cli",
"pdf",
"png",
"svg"
],
"author": "Nico Rehwaldt <https://github.com/nikku>",
"license": "MIT",
"dependencies": {
"bpmn-js": "^18.9.1",
"chalk": "^5.6.2",
"meow": "^14.0.0",
"puppeteer": "^24.34.0"
},
"devDependencies": {
"chai": "^6.0.0",
"del": "^8.0.1",
"execa": "^9.6.1",
"mocha": "^11.0.0",
"npm-run-all2": "^8.0.4"
},
"files": [
"cli.js",
"index.js",
"skeleton.html"
]
}