UNPKG

nomnoml

Version:

The sassy UML renderer that generates diagrams from text

67 lines (66 loc) 1.97 kB
{ "name": "nomnoml", "version": "1.7.0", "description": "The sassy UML renderer that generates diagrams from text", "homepage": "http://www.nomnoml.com", "author": "Daniel Kallin <daniel.kallin@gmail.com>", "license": "MIT", "keywords": [ "uml" ], "main": "dist/nomnoml.js", "files": [ "index.d.ts", "dist/nomnoml.js", "dist/nomnoml-cli.js", "dist/webapp.js", "index.html", "nomnoml.css", "favicon.png", "img/interaction-tutorial.svg", "codemirror/solarized.nomnoml.css", "codemirror/nomnoml.codemirror-mode.js", "codemirror/codemirror.css", "codemirror/codemirror-compressed.js" ], "types": "index.d.ts", "dependencies": { "graphre": "^0.1.3" }, "devDependencies": { "@rollup/plugin-commonjs": "^28.0.1", "@rollup/plugin-node-resolve": "^15.3.0", "@rollup/plugin-typescript": "^12.1.1", "@rollup/plugin-terser": "0.4.4", "@types/node": "^22.10.1", "@types/react": "^18.3.12", "@types/react-dom": "^18.3.1", "file-saver": "^2.0.5", "react": "^18.3.1", "react-dom": "^18.3.1", "rollup": "^4.28.0", "rollup-plugin-git-version": "^0.3.1", "rollup-plugin-ignore": "^1.0.10", "tslib": "^2.8.1", "typescript": "^5.7.2" }, "scripts": { "prepare": "npm run webapp", "build": "npm run lib && npm run webapp && npm run test", "checktypes": "tsc --noEmit -p src && tsc --noEmit -p webapp", "webapp": "rollup --bundleConfigAsCjs -c webapp/rollup.config.js", "lib": "rollup --bundleConfigAsCjs -c src/rollup.config.js && npm test", "test": "node --test && npm run test_cli", "test_cli": "rm -f test/output.svg && node dist/nomnoml-cli.js test/import-test.nomnoml test/output.svg" }, "repository": { "type": "git", "url": "https://github.com/skanaar/nomnoml.git" }, "bugs": { "url": "https://github.com/skanaar/nomnoml/issues" }, "bin": { "nomnoml": "dist/nomnoml-cli.js" } }