-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 1.47 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
{
"name": "wing-test-provider",
"displayName": "Wing Test Provider",
"description": "Show Wing tests in the Test Explorer.",
"version": "0.0.1",
"publisher": "raphaelmanke",
"private": true,
"license": "MIT",
"repository": "https://github.com/RaphaelManke/wing-test-explorer",
"enabledApiProposals": [
"testCoverage",
"testContinuousRun"
],
"engines": {
"vscode": "^1.68.0"
},
"categories": [
"Other",
"Testing"
],
"activationEvents": [
"workspaceContains:*.w",
"onLanguage:wing"
],
"contributes": {
"configuration": {
"title": "Wing Test Provider",
"properties": {
"wing.test.logLevel": {
"type": "string",
"enum": [
"info",
"verbose",
"debug"
],
"default": "info",
"description": "The log level used by the Wing Test Explorer."
},
"wing.test.fileEnding": {
"type": "string",
"default": ".w",
"description": "The file ending used by the Wing Test Explorer to detect test files."
}
}
}
},
"main": "./out/extension.js",
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"lint": "eslint \"src/**/*.ts\"",
"watch": "tsc -watch -p ./",
"download-api": "vscode-dts main && vscode-dts dev",
"postinstall": "npm run download-api"
},
"devDependencies": {
"@types/node": "^16.11.7",
"@typescript-eslint/eslint-plugin": "^5.42.0",
"@typescript-eslint/parser": "^5.42.0",
"eslint": "^8.26.0",
"typescript": "^5.0.2",
"vscode-dts": "^0.3.3"
}
}