This repository has been archived by the owner on May 3, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 34
/
package.json
77 lines (77 loc) · 1.72 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
{
"name": "typeorm-uml",
"version": "1.6.5",
"description": "Generates UML diagrams for TypeORM projects",
"author": "Eugene Manuilov <[email protected]>",
"license": "MIT",
"homepage": "https://github.com/eugene-manuilov/typeorm-uml#readme",
"bugs": {
"url": "https://github.com/eugene-manuilov/typeorm-uml/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/eugene-manuilov/typeorm-uml.git"
},
"keywords": [
"typeorm",
"schema",
"diagram",
"uml",
"database"
],
"engines": {
"node": ">=10.0.0"
},
"files": [
"/bin",
"/lib"
],
"main": "lib/index.js",
"bin": {
"typeorm-uml": "./bin/run"
},
"oclif": {
"bin": "typeorm-uml"
},
"types": "lib/index.d.ts",
"scripts": {
"prebuild": "rimraf lib",
"build": "tsc -b --force",
"watch": "tsc --watch",
"format": "npm run lint --silent -- --fix",
"lint": "eslint . --ext .ts --ignore-pattern lib --ignore-pattern node_modules",
"prepublish": "npm run build",
"test": "echo \"Error: no test specified\" && exit 1",
"typeorm-uml": "./bin/run"
},
"dependencies": {
"@oclif/command": "^1.8.16",
"plantuml-encoder": "^1.4.0"
},
"devDependencies": {
"@types/node": "^10.17.60",
"@typescript-eslint/eslint-plugin": "^4.33.0",
"@typescript-eslint/parser": "^4.33.0",
"eslint": "^7.32.0",
"eslint-config-standard": "^16.0.3",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.3.1",
"husky": "^5.2.0",
"lint-staged": "^10.5.4",
"rimraf": "^3.0.2",
"typeorm": "^0.2.44",
"typescript": "^3.9.10"
},
"peerDependencies": {
"typeorm": "^0.2.0"
},
"lint-staged": {
"*.ts": "eslint"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
}
}