forked from bneumann/CppUTest-Test-Adapter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
85 lines (85 loc) · 2.21 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
{
"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 <[email protected]>",
"publisher": "bneumann",
"version": "0.1.8",
"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",
"rebuild": "npm run clean && npm run build",
"package": "vsce package",
"publish": "vsce publish"
},
"dependencies": {
"@types/xml2js": "^0.4.5",
"tslib": "^1.9.3",
"vscode-test-adapter-api": "^1.9.0",
"vscode-test-adapter-util": "^0.7.1",
"xml2js": "^0.4.22"
},
"devDependencies": {
"@types/vscode": "~1.23.0",
"typescript": "^3.5.3",
"vsce": "^1.72.0"
},
"engines": {
"vscode": "^1.23.0"
},
"extensionDependencies": [
"hbenl.vscode-test-explorer"
],
"activationEvents": [
"*"
],
"contributes": {
"configuration": {
"type": "object",
"title": "CppUTest Explorer configuration",
"properties": {
"cpputestExplorer.testExecutable": {
"description": "executable that contains all tests",
"default": "",
"type": "string",
"scope": "resource"
},
"cpputestExplorer.testExecutablePath": {
"description": "path where the executable should be run in",
"default": "",
"type": "string",
"scope": "resource"
},
"cpputestExplorer.logpanel": {
"description": "write diagnotic logs to an output panel",
"type": "boolean",
"scope": "resource"
},
"cpputestExplorer.logfile": {
"description": "write diagnostic logs to the given file",
"type": "string",
"scope": "resource"
}
}
}
}
}