-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
86 lines (86 loc) · 2.4 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
{
"name": "test-adapter-converter",
"displayName": "Test Adapter Converter",
"description": "Converter extension from the Test Adapter UI to native VS Code testing",
"publisher": "ms-vscode",
"version": "0.2.0",
"engines": {
"vscode": "^1.93.0"
},
"capabilities": {
"untrustedWorkspaces": {
"supported": true
}
},
"categories": [
"Other"
],
"activationEvents": [
"onCommand:test-explorer.run",
"onCommand:test-explorer.run-all"
],
"main": "./out/extension.js",
"contributes": {
"commands": [
{
"command": "testExplorerConverter.useNativeTesting",
"title": "Use Native Testing"
},
{
"command": "testExplorerConverter.activate",
"title": "Activate Test Adapter Converter"
}
],
"menus": {
"commandPalette": [
{
"command": "testExplorerConverter.activate",
"when": "false"
},
{
"command": "testExplorerConverter.useNativeTesting",
"when": "false"
}
]
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/microsoft/vscode-test-adapter-converter.git"
},
"author": "Connor Peet <connor@peet.io>",
"license": "MIT",
"bugs": {
"url": "https://github.com/microsoft/vscode-test-adapter-converter/issues"
},
"homepage": "https://github.com/microsoft/vscode-test-adapter-converter#readme",
"scripts": {
"vscode:prepublish": "npm run -S esbuild-base -- --minify",
"esbuild-base": "rimraf out && esbuild ./src/extension.ts --bundle --outfile=out/extension.js --external:vscode --format=cjs --platform=node --target=node20",
"build": "npm run -S esbuild-base -- --sourcemap",
"watch": "npm run -S esbuild-base -- --sourcemap --watch",
"fmt": "prettier --write \"src/**/*.ts\"&& npm run test -- --fix",
"test": "eslint src --ext ts && tsc --noEmit"
},
"devDependencies": {
"@types/vscode": "^1.93.0",
"@typescript-eslint/eslint-plugin": "^5.47.1",
"@typescript-eslint/parser": "^5.47.1",
"esbuild": "^0.23.1",
"eslint": "^8.30.0",
"eslint-plugin-header": "^3.1.1",
"prettier": "^2.8.1",
"rimraf": "^3.0.2",
"typescript": "^5.6.2",
"vscode-test-adapter-api": "^1.9.0"
},
"prettier": {
"printWidth": 100,
"singleQuote": true,
"tabWidth": 2,
"arrowParens": "avoid"
},
"dependencies": {
"stacktrace-parser": "^0.1.10"
}
}