forked from beicause/call-graph
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
97 lines (97 loc) · 2.92 KB
/
package.json
File metadata and controls
97 lines (97 loc) · 2.92 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
{
"name": "call-graph",
"displayName": "Call Graph",
"description": "call graph for vscode",
"version": "1.1.2",
"publisher": "LuoZhihao",
"engines": {
"vscode": "^1.65.0"
},
"categories": [
"Visualization"
],
"activationEvents": [
"onCommand:CallGraph.showOutgoingCallGraph",
"onCommand:CallGraph.showIncomingCallGraph",
"onWebviewPanel:CallGraph.previewIncoming",
"onWebviewPanel:CallGraph.previewOutgoing"
],
"main": "./out/extension.js",
"contributes": {
"commands": [
{
"command": "CallGraph.showOutgoingCallGraph",
"title": "CallGraph: Show outgoing call graph"
},
{
"command": "CallGraph.showIncomingCallGraph",
"title": "CallGraph: Show incoming call graph"
}
],
"menus": {
"editor/context": [
{
"command": "CallGraph.showOutgoingCallGraph"
},
{
"command": "CallGraph.showIncomingCallGraph"
}
]
},
"configuration": {
"title": "CallGraph",
"properties": {
"call-graph.saveDir": {
"type": "string",
"default": "${workspace}",
"description": "the dir where svg and dot file will be saved"
},
"call-graph.ignoreFile": {
"type": "string",
"default": "${workspace}/.callgraphignore",
"description": "the file that specific paths should ignore"
}
}
}
},
"scripts": {
"vscode:prepublish": "yarn run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"pretest": "yarn run compile && yarn run lint",
"lint": "eslint src --ext ts",
"test": "node ./out/test/runTest.js"
},
"devDependencies": {
"@types/glob": "^7.2.0",
"@types/mocha": "^9.1.0",
"@types/node": "14.x",
"@types/picomatch": "^2.3.0",
"@types/vscode": "^1.65.0",
"@typescript-eslint/eslint-plugin": "^5.16.0",
"@typescript-eslint/parser": "^5.16.0",
"@vscode/test-electron": "^2.1.3",
"eslint": "^8.11.0",
"glob": "^7.2.0",
"mocha": "^9.2.2",
"typescript": "^4.5.5"
},
"repository": {
"type": "git",
"url": "https://github.com/beicause/call-graph.git"
},
"license": "Apache",
"icon": "images/call-graph.png",
"bugs": {
"url": "https://github.com/beicause/call-graph/issues"
},
"homepage": "https://github.com/beicause/call-graph/blob/master/README.md",
"keywords": [
"graphviz",
"call graph",
"dot"
],
"dependencies": {
"picomatch": "^2.3.1"
}
}