-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
44 lines (44 loc) · 1.61 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
{
"name": "pgerd-to-drawio-diagram-converter",
"version": "1.0.2",
"description": "Converts a Entity Relation Diagram that was exported from PgAdmin 5+ into an XML file that can be loaded into draw.io (diagrams.net) diagram editor",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"demo": "cd ./demo && npm run dev",
"build": "rm -rf ./dist && tsc -p ./tsconfig.json"
},
"author": "Bert Verhelst",
"license": "MIT",
"keywords": ["pgadmin", "drawio", "diagram", "converter", "convert", "browser", "nodejs", "json", "tables", "erd", "entity relation diagram", "sql", "foreign keys"],
"homepage": "https://bertyhell.github.io/pgerd-to-drawio-diagram-converter",
"repository": {
"type": "git",
"url": "https://github.com/bertyhell/pgerd-to-drawio-diagram-converter"
},
"url": "https://github.com/bertyhell/pgerd-to-drawio-diagram-converter/issues",
"devDependencies": {
"@types/cytoscape": "^3.19.9",
"@types/jstoxml": "^2.0.2",
"@types/node": "^18.15.3",
"@typescript-eslint/eslint-plugin": "^5.55.0",
"eslint": "^8.36.0",
"eslint-config-prettier": "^8.7.0",
"eslint-config-standard-with-typescript": "^34.0.1",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-n": "^15.6.1",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-react": "^7.32.2",
"prettier": "^2.8.4",
"typescript": "^4.9.5"
},
"dependencies": {
"cytoscape": "^3.23.0",
"cytoscape-cola": "^2.5.1",
"cytoscape-cose-bilkent": "^4.1.0",
"cytoscape-dagre": "^2.5.0",
"cytoscape-euler": "^1.2.2",
"jstoxml": "^3.2.6",
"ts-node": "^10.9.1"
}
}