-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
34 lines (34 loc) · 1019 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
{
"name": "ts-call-graph",
"version": "1.0.0",
"description": "A program that generates canvas graphs of the uses of methods and attributes in a given TypeScript class.",
"main": "js/main.js ",
"repository": {
"type": "git",
"url": "git+https://github.com/Deskbot/TS-Call-Graph.git"
},
"scripts": {
"build": "./build.sh",
"build-single": "./build-single-file.sh",
"start": "node -r source-map-support/register out/js/main"
},
"keywords": [
"TypeScript"
],
"author": "Thomas Richards",
"license": "GPL-3.0-only",
"bugs": {
"url": "https://github.com/Deskbot/TS-Call-Graph/issues"
},
"homepage": "https://github.com/Deskbot/TS-Call-Graph#readme",
"devDependencies": {
"@types/d3": "^5.7.2",
"@types/node": "^11.15.14",
"browserify": "^16.5.1"
},
"dependencies": {
"d3": "^5.16.0",
"source-map-support": "^0.5.19",
"typescript": "^3.9.3"
}
}