-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathpackage.json
137 lines (137 loc) · 3.91 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
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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
{
"name": "gcov-viewer",
"displayName": "Gcov Viewer",
"description": "Decorate C/C++ source files with code coverage information generated by gcov.",
"version": "0.6.0",
"license": "MIT",
"publisher": "JacquesLucke",
"author": {
"name": "Jacques Lucke",
"email": "[email protected]"
},
"engines": {
"vscode": "^1.64.0"
},
"repository": {
"type": "git",
"url": "https://github.com/JacquesLucke/gcov-viewer"
},
"bugs": {
"url": "https://github.com/JacquesLucke/gcov-viewer/issues"
},
"categories": [
"Other"
],
"activationEvents": [
"onCommand:gcov-viewer.show",
"onCommand:gcov-viewer.hide",
"onCommand:gcov-viewer.toggle",
"onCommand:gcov-viewer.reloadGcdaFiles",
"onCommand:gcov-viewer.deleteGcdaFiles",
"onCommand:gcov-viewer.selectBuildDirectory",
"onCommand:gcov-viewer.dumpPathsWithCoverageData",
"onCommand:gcov-viewer.viewFunctionsByCallCount",
"onCommand:gcov-viewer.generateSummaryHTML"
],
"main": "./out/extension.js",
"contributes": {
"commands": [
{
"command": "gcov-viewer.show",
"title": "Show",
"category": "Gcov Viewer"
},
{
"command": "gcov-viewer.hide",
"title": "Hide",
"category": "Gcov Viewer"
},
{
"command": "gcov-viewer.toggle",
"title": "Toggle",
"category": "Gcov Viewer"
},
{
"command": "gcov-viewer.reloadGcdaFiles",
"title": "Reload (Import .gcda Files)",
"category": "Gcov Viewer"
},
{
"command": "gcov-viewer.deleteGcdaFiles",
"title": "Reset (Delete .gcda Files)",
"category": "Gcov Viewer"
},
{
"command": "gcov-viewer.selectBuildDirectory",
"title": "Select Build Directory",
"category": "Gcov Viewer"
},
{
"command": "gcov-viewer.dumpPathsWithCoverageData",
"title": "Dump Paths with Coverage Data",
"category": "Gcov Viewer"
},
{
"command": "gcov-viewer.viewFunctionsByCallCount",
"title": "View Functions by Call Count",
"category": "Gcov Viewer"
},
{
"command": "gcov-viewer.generateSummaryHTML",
"title": "Generate Summary as HTML",
"category": "Gcov Viewer"
}
],
"configuration": [
{
"title": "Gcov Viewer",
"properties": {
"gcovViewer.buildDirectories": {
"type": "array",
"title": "Build Directories",
"scope": "window",
"description": "Directories that will be included in the search for .gcda files."
},
"gcovViewer.gcovBinary": {
"type": "string",
"title": "Gcov Binary",
"scope": "machine-overridable",
"description": "Path to the gcov binary",
"default": "gcov"
},
"gcovViewer.highlightMissedLines": {
"type": "boolean",
"title": "Highlight Missed Lines",
"scope": "resource",
"description": "Not only mark the called lines but also the lines that have not been executed. This might not work in some header files, because gcov is not providing the data.",
"default": false
}
}
}
]
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"lint": "eslint src --ext ts",
"watch": "tsc -watch -p ./",
"pretest": "npm run compile && npm run lint"
},
"devDependencies": {
"@types/glob": "^8.1.0",
"@types/mocha": "^10.0.7",
"@types/node": "^13.11.0",
"@types/tmp": "^0.2.6",
"@types/vscode": "^1.64.0",
"@typescript-eslint/eslint-plugin": "^2.30.0",
"@typescript-eslint/parser": "^2.30.0",
"eslint": "^6.8.0",
"glob": "^11.0.0",
"mocha": "^10.7.0",
"typescript": "^4.5.5",
"@vscode/test-electron": "^1.6.1"
},
"dependencies": {
"tmp": "^0.2.3"
}
}