-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpackage.json
More file actions
151 lines (151 loc) · 4.92 KB
/
package.json
File metadata and controls
151 lines (151 loc) · 4.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
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
138
139
140
141
142
143
144
145
146
147
148
149
150
151
{
"name": "cpputest-test-adapter",
"displayName": "CppUTest Test Adapter",
"description": "Run your CppUTest tests in the Sidebar of Visual Studio Code",
"icon": "img/icon.png",
"author": "Benjamin Giesinger <benjamin.giesinger@gmail.com>",
"publisher": "bneumann",
"version": "1.3.4",
"license": "MIT",
"homepage": "https://github.com/bneumann/CppUTest-Test-Adapter",
"repository": {
"type": "git",
"url": "https://github.com/bneumann/CppUTest-Test-Adapter.git"
},
"bugs": {
"url": "https://github.com/bneumann/CppUTest-Test-Adapter/issues"
},
"categories": [
"Other"
],
"keywords": [
"test",
"testing"
],
"main": "out/main.js",
"scripts": {
"clean": "rimraf out *.vsix",
"build": "node esbuild.js",
"watch": "tsc -w",
"dev": "node esbuild.js --watch",
"test": "mocha --require ts-node/register **/*.spec.ts",
"rebuild": "npm run clean && npm run build",
"package": "npm run build && vsce package",
"publish": "npm run rebuild && vsce publish",
"publish-buildserver": "vsce publish",
"publish:patch": "npm run rebuild && vsce publish patch",
"publish:pre": "npm run rebuild && vsce publish --pre-release"
},
"dependencies": {
"glob": "^11.1.0",
"tslib": "^2.3.1",
"vscode-test-adapter-api": "^1.9.0",
"vscode-test-adapter-util": "^0.7.1",
"xml2js": "^0.5.0"
},
"devDependencies": {
"@types/chai": "^4.2.22",
"@types/chai-as-promised": "^7.1.4",
"@types/glob": "^7.1.4",
"@types/mocha": "^9.1.1",
"@types/node": "^22.7.4",
"@types/vscode": "~1.61.0",
"@types/xml2js": "^0.4.9",
"@vscode/vsce": "^3.1.1",
"chai": "^4.3.4",
"chai-as-promised": "^7.1.1",
"esbuild": "^0.25.0",
"mocha": "^11.7.5",
"rimraf": "^3.0.2",
"ts-mockito": "^2.6.1",
"ts-node": "^10.9.2",
"typescript": "^5.4.5"
},
"engines": {
"vscode": "^1.63.0"
},
"extensionDependencies": [
"hbenl.vscode-test-explorer"
],
"activationEvents": [
"onStartupFinished"
],
"contributes": {
"configuration": {
"type": "object",
"title": "CppUTest Test Adapter",
"properties": {
"cpputestTestAdapter.testExecutable": {
"description": "Executable that contains all tests. Can be multiple executables separated by semicolon. Wildcard is supported (e.g. myExecutable;bin/test/ut_*)",
"default": "",
"type": "string",
"scope": "resource"
},
"cpputestTestAdapter.testExecutablePath": {
"description": "Path where the executable should be run in",
"default": "",
"type": "string",
"scope": "resource"
},
"cpputestTestAdapter.preLaunchTask": {
"description": "Task to run before running the test executable",
"default": "",
"type": "string",
"scope": "resource"
},
"cpputestTestAdapter.testLocationFetchMode": {
"description": "",
"default": "auto",
"type": "string",
"enum": [
"auto",
"test query",
"debug dump",
"disabled"
],
"enumDescriptions": [
"Selects the best fetch mode for the current operating system and CppUTest capabilities",
"Gets test location information by querying the test executables",
"Gets test location information from debug symbols in test executables",
"Test location fetch disabled"
],
"scope": "resource"
},
"cpputestTestAdapter.logpanel": {
"description": "Write diagnostic logs to an output panel",
"type": "boolean",
"scope": "resource"
},
"cpputestTestAdapter.logfile": {
"description": "Write diagnostic logs to the given file",
"type": "string",
"scope": "resource"
},
"cpputestTestAdapter.debugLaunchConfigurationName": {
"description": "The name of the configuration object from the launch.json file to use for debugging tests. Defaults to the first profile",
"default": "",
"type": "string",
"scope": "resource"
},
"cpputestTestAdapter.objDumpExecutable": {
"description": "The path to the objdump executable",
"default": "objdump",
"type": "string",
"scope": "resource"
},
"cpputestTestAdapter.ignoreStderr": {
"description": "Ignore stderr output when determining test result. When true, stderr is not treated as test failure",
"default": false,
"type": "boolean",
"scope": "resource"
},
"cpputestTestAdapter.maxBuffer": {
"description": "Maximum buffer size in bytes for stdout/stderr. Increase if you get ERR_CHILD_PROCESS_STDIO_MAXBUFFER errors",
"default": 1048576,
"type": "number",
"scope": "resource"
}
}
}
}
}