-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
60 lines (60 loc) · 1.55 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
{
"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"
}
}