forked from Derivitec/vscode-dotnet-adapter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
115 lines (115 loc) · 3.54 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
{
"name": "vscode-dotnet-adapter",
"displayName": ".Net Core Test Explorer",
"description": "Run your dotnet core cs tests in the Sidebar of Visual Studio Code",
"icon": "img/icon.png",
"contributors": [
"Michael Armitage (https://github.com/armitagemderivitec)",
"Andrew Bridge (http://github.com/andrewbridge)"
],
"publisher": "derivitec-ltd",
"version": "1.4.3",
"license": "MIT",
"homepage": "https://github.com/Derivitec/vscode-dotnet-adapter",
"repository": {
"type": "git",
"url": "https://github.com/Derivitec/vscode-dotnet-adapter.git"
},
"bugs": {
"url": "https://github.com/Derivitec/vscode-dotnet-adapter/issues"
},
"categories": [
"Other"
],
"keywords": [
"Nunit",
"xUnit",
"C#",
"test"
],
"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/micromatch": "^4.0.1",
"micromatch": "^4.0.2",
"tslib": "^1.9.3",
"vscode-test-adapter-api": "^1.1.0",
"vscode-test-adapter-util": "^0.5.1",
"xmldom": "^0.1.31"
},
"devDependencies": {
"@types/vscode": "^1.23.0",
"typescript": "^3.0.3",
"vsce": "^1.47.0",
"vscode-test": "^1.3.0"
},
"engines": {
"vscode": "^1.23.0"
},
"extensionDependencies": [
"hbenl.vscode-test-explorer"
],
"activationEvents": [
"*"
],
"contributes": {
"configuration": {
"type": "object",
"title": ".Net Core Test Explorer",
"properties": {
"dotnetCoreExplorer.skippattern": {
"description": "Pattern to skip assemblies\n\nFiles already excluded by the files.exclude or search.exclude VSCode settings will also be skipped by the test adapter (ensure you can see dll files in the file explorer)",
"type": "string",
"default": "**/{nunit,xunit}.*.dll",
"scope": "resource"
},
"dotnetCoreExplorer.searchpatterns": {
"description": "A string, array or object of search patterns which match your test files (relative to the workspace folder).\n\nArrays can be used to specify multiple differing patterns. Objects can be used to provide test grouping, where the key is the group name and the value is either a glob pattern string or an array of glob pattern strings.",
"type": [
"string",
"array",
"object"
],
"items": {
"type": "string"
},
"default": "**/bin/**/*.{dll,exe}",
"scope": "resource"
},
"dotnetCoreExplorer.runEnvVars": {
"description": "environment variables required by your tests or project",
"type": "object",
"items": {
"type": "string"
},
"default": {},
"scope": "resource"
},
"dotnetCoreExplorer.attachCpp": {
"description": "Attach C++ debugging during test debugging",
"type": "boolean",
"default": false,
"scope": "resource"
},
"dotnetCoreExplorer.codeLens": {
"description": "enable CodeLens symbol integration with the C# Omnisharp VSCode extension",
"type": "boolean",
"default": true,
"scope": "resource"
},
"dotnetCoreExplorer.logpanel": {
"description": "write diagnotic logs to an output panel",
"type": "boolean",
"scope": "resource"
}
}
}
}
}