forked from bneumann/CppUTest-Test-Adapter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
111 lines (111 loc) · 3.35 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
{
"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.0.3",
"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": "tsc",
"watch": "tsc -w",
"test": "mocha --require ts-node/register **/*.spec.ts",
"rebuild": "npm run clean && npm run build",
"package": "vsce package",
"publish": "npm run rebuild && vsce publish",
"publish:patch": "npm run rebuild && vsce publish patch"
},
"dependencies": {
"@types/xml2js": "^0.4.9",
"glob": "^7.2.0",
"tslib": "^2.3.1",
"vscode-test-adapter-api": "^1.9.0",
"vscode-test-adapter-util": "^0.7.1",
"xml2js": "^0.4.23"
},
"devDependencies": {
"@types/chai": "^4.2.22",
"@types/chai-as-promised": "^7.1.4",
"@types/glob": "^7.1.4",
"@types/mocha": "^9.0.0",
"@types/vscode": "~1.61.0",
"chai": "^4.3.4",
"chai-as-promised": "^7.1.1",
"mocha": "^9.1.3",
"ts-mockito": "^2.6.1",
"ts-node": "^10.3.0",
"typescript": "^4.4.4",
"vsce": "^1.100.1",
"rimraf": "^3.0.2"
},
"engines": {
"vscode": "^1.61.0"
},
"extensionDependencies": [
"hbenl.vscode-test-explorer"
],
"activationEvents": [
"*"
],
"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.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"
}
}
}
}
}