-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
52 lines (52 loc) · 1.34 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
{
"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"
}
}