-
Notifications
You must be signed in to change notification settings - Fork 21
/
package.json
38 lines (38 loc) · 936 Bytes
/
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
{
"name": "typescript-call-graph",
"version": "0.0.3",
"description": "Create a call graph of your TypeScript files",
"keywords": [
"TypeScript",
"call graph",
"callgraph"
],
"author": "Boris Yakubchik",
"homepage": "https://yboris.dev",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/whyboris/TypeScript-Call-Graph.git"
},
"main": "bin/index.js",
"bin": {
"tcg": "./bin/index.js"
},
"scripts": {
"start": "tsc && node bin/index.js index.ts",
"test": "node bin/index.js index.ts extract.ts cascade.ts graphviz.ts helper.ts xyz.ts",
"global": "npm install -g ."
},
"dependencies": {
"@types/node": "18.11.3",
"d3-graphviz": "4.4.0",
"express": "4.18.2",
"graphviz": "0.0.9",
"inquirer": "8.2.3",
"kleur": "4.1.5",
"mermaid": "9.1.7",
"open": "8.4.0",
"typescript": "4.8.4"
},
"devDependencies": {}
}