UNPKG

yuml2svg

Version:

UML diagramming tool based on the yUML syntax

57 lines (56 loc) 1.21 kB
{ "name": "yuml2svg", "displayName": "yUML to SVG", "description": "UML diagramming tool based on the yUML syntax", "version": "5.0.1", "license": "MIT", "repository": { "type": "git", "url": "https://github.com/aduh95/yuml2svg" }, "bugs": { "url": "https://github.com/aduh95/yuml2svg/issues" }, "engines": { "node": "^12.17.0 || >=13.2.0" }, "categories": [ "Programming Languages", "Snippets", "Other" ], "keywords": [ "yuml", "uml", "diagram", "sequence", "markdown" ], "type": "module", "main": "./index.mjs", "exports": { ".": "./index.mjs" }, "bin": { "yuml2svg": "bin/yuml2svg" }, "scripts": { "lint": "eslint --ext=.js,.mjs ./src/", "test": "node test/bootstrap.js", "preversion": "yarn lint && yarn test", "postversion": "git push && git push --tags" }, "dependencies": { "@aduh95/viz.js": "^3.0.1", "color": "^3.0.0", "jsdom": "^16.0.0" }, "devDependencies": { "@types/node": "*", "eslint": "^7.0.0-rc.0", "eslint-config-defaults": "^9.0.0", "eslint-config-prettier": "^6.2.0", "eslint-plugin-prettier": "^3.0.0", "prettier": "^2.0.1" } }