-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
154 lines (154 loc) · 4.27 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
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
152
153
154
{
"name": "vscode-banditcpp-test-adapter",
"displayName": "Bandit Test Explorer",
"description": "Run your Bandit tests in the Sidebar of Visual Studio Code",
"icon": "img/testexplorer-banditcpp.png",
"author": "Matthias Füg <[email protected]>",
"publisher": "dampsoft",
"version": "1.5.3",
"license": "MIT",
"homepage": "https://github.com/dampsoft/vscode-banditcpp-test-adapter/blob/master/README.md",
"repository": {
"type": "git",
"url": "https://github.com/dampsoft/vscode-banditcpp-test-adapter.git"
},
"bugs": {
"url": "https://github.com/dampsoft/vscode-banditcpp-test-adapter/issues",
"email": "[email protected]"
},
"categories": [
"Other"
],
"keywords": [
"test",
"testing",
"unit test",
"bandit",
"c++"
],
"main": "out/main.js",
"scripts": {
"postinstall": "node ./node_modules/vscode/bin/install",
"build": "tsc -b",
"watch": "tsc -b -w",
"rebuild": "npm run clean && npm run build",
"package": "vsce package",
"publish": "vsce publish",
"clean": "gulp clean",
"check": "npm-upgrade check"
},
"dependencies": {
"async-mutex": "^0.1.3",
"chokidar": ">=2.1.5",
"fs-extra": "^8.1.0",
"npm-audit-resolver": "^1.5.0",
"performance-now": "^2.1.0",
"tslib": "^1.10.0",
"uuid": "^3.3.3",
"vscode-nls": "^4.1.1",
"vscode-test-adapter-api": "^1.7.0",
"vscode-test-adapter-util": "^0.7.0"
},
"devDependencies": {
"@types/fs-extra": "^8.0.0",
"@types/mocha": "^5.2.7",
"@types/node": "^12.7.2",
"del": "^5.0.0",
"event-stream": "4.0.1",
"gulp": "^4.0.2",
"gulp-cli": "^2.2.0",
"gulp-filter": "^6.0.0",
"gulp-sourcemaps": "^2.6.5",
"gulp-typescript": "5.0.1",
"mocha": "^6.2.0",
"tslint": "^5.18.0",
"typescript": "^3.5.3",
"vsce": ">=1.66.0",
"vscode": "^1.1.36",
"vscode-nls-dev": "^3.3.1",
"npm-upgrade": ">=2.0.0"
},
"engines": {
"node": ">=10.15",
"vscode": "^1.23.0"
},
"extensionDependencies": [
"hbenl.vscode-test-explorer"
],
"activationEvents": [
"*"
],
"contributes": {
"configuration": {
"type": "object",
"title": "Bandit Test Explorer configuration",
"properties": {
"banditTestExplorer.testsuites": {
"description": "%properties.banditTestExplorer.testsuites%",
"type": [
"string",
"array",
"object"
],
"scope": "resource"
},
"banditTestExplorer.parallelProcessLimit": {
"description": "%properties.banditTestExplorer.parallelProcessLimit%",
"type": "integer",
"scope": "resource",
"default": 1
},
"banditTestExplorer.watchTimeoutSec": {
"description": "%properties.banditTestExplorer.watchTimeoutSec%",
"type": "number",
"default": 5,
"scope": "resource"
},
"banditTestExplorer.allowKillProcess": {
"description": "%properties.banditTestExplorer.allowKillProcess%",
"type": "boolean",
"scope": "resource"
},
"banditTestExplorer.logpanel": {
"description": "%properties.banditTestExplorer.logpanel%",
"type": "boolean",
"scope": "resource"
},
"banditTestExplorer.logfile": {
"description": "%properties.banditTestExplorer.logfile%",
"type": "string",
"scope": "resource"
},
"banditTestExplorer.loglevel": {
"description": "%properties.banditTestExplorer.loglevel%",
"type": "string",
"scope": "resource",
"default": "error",
"enum": [
"debug",
"info",
"warning",
"error"
]
},
"banditTestExplorer.progressVisualization": {
"description": "%properties.banditTestExplorer.progressVisualization%",
"type": "string",
"scope": "resource",
"default": "dialogBox",
"enum": [
"dialogBox",
"statusBar"
]
}
}
},
"commands": [
{
"title": "%command.start_test_filtered%",
"command": "bandit-test-explorer.run",
"category": "Bandit Test Explorer"
}
]
}
}