This repository has been archived by the owner on Apr 27, 2023. It is now read-only.
generated from hbenl/vscode-example-test-adapter
-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
93 lines (93 loc) · 2.94 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
{
"name": "vscode-pester-test-adapter",
"displayName": "Pester Test Explorer",
"description": "Run your Pester tests in the Sidebar of Visual Studio Code",
"icon": "img/test-explorer-pester.png",
"publisher": "TylerLeonhardt",
"version": "0.0.23",
"license": "MIT",
"homepage": "https://github.com/TylerLeonhardt/vscode-pester-test-adapter",
"repository": {
"type": "git",
"url": "https://github.com/TylerLeonhardt/vscode-pester-test-adapter.git"
},
"bugs": {
"url": "https://github.com/TylerLeonhardt/vscode-pester-test-adapter/issues"
},
"categories": [
"Other"
],
"keywords": [
"PowerShell",
"Pester",
"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": {
"tslib": "~2.1.0",
"vscode-test-adapter-api": "~1.9.0",
"vscode-test-adapter-util": "~0.7.1",
"xml-js": "~1.6.11"
},
"devDependencies": {
"@types/node": "^14.14.20",
"@types/vscode": "~1.50.0",
"rimraf": "~3.0.2",
"typescript": "~4.2.3",
"vsce": "~1.85.1"
},
"engines": {
"vscode": "^1.50.0"
},
"extensionDependencies": [
"hbenl.vscode-test-explorer"
],
"activationEvents": [
"workspaceContains:**/*.[Tt]ests.ps1"
],
"contributes": {
"configuration": {
"type": "object",
"title": "Pester Test Explorer configuration",
"properties": {
"pesterExplorer.logpanel": {
"description": "Write diagnotic logs to an output panel.",
"type": "boolean",
"default": true,
"scope": "resource"
},
"pesterExplorer.logfile": {
"description": "Write diagnostic logs to the given file.",
"type": "string",
"scope": "resource"
},
"pesterExplorer.testResultsFilePath": {
"description": "The path to the file _relative_ to your workspace. (i.e. `foo/TestExplorerResults.xml` would exist in a `foo` folder in the root of your workspace.)",
"type": "string",
"default": "TestExplorerResults.xml",
"scope": "resource"
},
"pesterExplorer.autoDiscoverOnOpen": {
"description": "If set to true, test discovery will be triggered when a workspace/folder is opened. If set to false, you will be prompted.",
"type": "boolean",
"default": false,
"scope": "resource"
},
"pesterExplorer.testRootDirectory": {
"description": "Specify the root directory of the location of your tests. The default behavior attempts to find a folder called 'test', 'tests', 'Test', or 'Tests' relative to the workspace/folder opened. If it can't find a folder like this, the root of the workspace/folder is used.",
"type": "string",
"scope": "resource"
}
}
}
}
}