forked from joaompneves/tsviz
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.24 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1.24 KB
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
{
"name": "tsuml",
"version": "1.0.10",
"description": "Simple tool to create UML diagrams from typescript modules, adapted from tsviz by Joao Neves.",
"main": "bin/tsuml.js",
"bin": {
"tsuml": "bin/tsuml-main.js"
},
"scripts": {
"make": "cd ./src && tsc && cd ../",
"start": "cd ./src && tsc && cd ../ && node ./bin/tsuml-main.js ../projet2/log2990-04/client/src/app/app.module.ts -r -d ./diagram.png",
"debug": "node --nolazy --inspect-brk=9229 ./bin/tsuml-main.js ../projet2/log2990-01/server -r -d ./diagram-server.png"
},
"preferGlobal": true,
"repository": {
"type": "git",
"url": "https://github.com/Mathos1432/tsuml.git"
},
"keywords": [
"typescript",
"uml",
"diagram",
"dependencies"
],
"author": "Mathieu Tremblay",
"license": "ISC",
"bugs": {
"url": "https://github.com/Mathos1432/tsuml/issues"
},
"homepage": "https://github.com/Mathos1432/tsuml",
"dependencies": {
"graphviz": ">=0.0.8",
"typescript": "=1.8.10"
},
"contributors": [
"Tom Davidson <tom@tomdavidson.org> (http://tomdavidson.org)",
"Joao Neves (https://github.com/joaompneves)"
]
}