typeorm-erd
Version:
Create ERD from TypeORM with outputs as Mermaid, or PlantUML
53 lines (52 loc) • 1.37 kB
JSON
{
"name": "typeorm-erd",
"description": "Create ERD from TypeORM with outputs as Mermaid, or PlantUML",
"version": "0.0.4",
"author": "Simon Reilly",
"devDependencies": {
"@tsconfig/node16": "^1.0.2",
"@types/jest": "^27.5.1",
"@types/node": "^17.0.36",
"@typescript-eslint/eslint-plugin": "^5.27.0",
"@typescript-eslint/parser": "^5.27.0",
"embedme": "^1.22.0",
"eslint": "^8.16.0",
"husky": "^7.0.0",
"jest": "^28.1.0",
"reflect-metadata": "^0.1.13",
"sqlite3": "^5.0.8",
"syncpack": "^8.0.0",
"ts-jest": "^28.0.3",
"ts-node": "^10.8.0",
"typeorm": "^0.3.6",
"typescript": "^4.7.2"
},
"files": [
"dist/"
],
"keywords": [
"entity relationship diagram",
"erd",
"mermaid",
"typeorm",
"typescript"
],
"license": "ISC",
"main": "dist/index.js",
"peerDependencies": {
"reflect-metadata": "^0.1.13",
"typeorm": "^0.3.6"
},
"repository": "simonireilly/typeorm-erd",
"scripts": {
"beta": "yarn version --prerelease --preid=beta",
"build": "tsc --p tsconfig.production.json",
"dev": "ts-node ./src/index.ts",
"examples": "ts-node ./examples.ts",
"fmt": "syncpack format && syncpack fix-mismatches && embedme ./README.md",
"lint": "eslint",
"lint:fix": "eslint --fix",
"prepare": "husky install",
"test": "jest"
}
}