UNPKG

schema-to-erd

Version:

Generate ERD UML file from Schema DDL file

61 lines (60 loc) 1.58 kB
{ "name": "schema-to-erd", "version": "2.0.4", "description": "Generate ERD UML file from Schema DDL file", "main": "dist/cjs/index.js", "module": "dist/esm/index.js", "types": "./src/index.d.ts", "files": [ "dist" ], "scripts": { "lint": "eslint src/**/*.ts", "test": "mocha --timeout 10000 test/**/*.cjs", "build": "rm -rf dist/ && npm run build:esm && npm run build:cjs", "build:esm": "tsc", "build:cjs": "tsc --module CommonJS --outDir dist/cjs", "release": "npm publish --access public" }, "repository": { "type": "git", "url": "git+https://github.com/youngkiu/schema-to-erd.git" }, "keywords": [ "sql", "schema", "DDL", "ERD", "UML" ], "author": "youngkiu@gmail.com", "bin": { "schema2erd": "bin/cli.js" }, "license": "MIT", "bugs": { "url": "https://github.com/youngkiu/schema-to-erd/issues" }, "homepage": "https://github.com/youngkiu/schema-to-erd#readme", "dependencies": { "commander": "^9.4.1", "json-schema": "^0.4.0", "plantuml-encoder": "^1.4.0", "sql-ddl-to-json-schema": "^4.0.6" }, "devDependencies": { "@types/glob": "^8.0.0", "@types/jest": "^29.2.0", "@types/json-schema": "^7.0.11", "@types/node": "^18.11.3", "@typescript-eslint/eslint-plugin": "^5.41.0", "@typescript-eslint/parser": "^5.41.0", "eslint": "^8.26.0", "eslint-config-airbnb-base": "^15.0.0", "eslint-plugin-import": "^2.26.0", "glob": "^8.0.3", "mocha": "^10.0.0", "ts-node": "^10.9.1", "typescript": "^4.8.4" } }