-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
88 lines (88 loc) · 2.65 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
{
"name": "test-runner",
"displayName": "web/test-runner-extension",
"description": "vscode plugin for @web/test-runner to run / debug one or more test",
"version": "0.0.21",
"engines": {
"vscode": "^1.76.0"
},
"categories": [
"Other"
],
"activationEvents": [
"*"
],
"main": "./out/extension.js",
"contributes": {
"commands": [
{
"command": "test-runner.runWebTestRunner",
"title": "TestRunner: Start test on current file"
},
{
"command": "test-runner.runInWatchMode",
"title": "TestRunner:Start test on current file in watch mode"
}
],
"configuration": {
"properties": {
"test-runner.codeLensSelector": {
"type": "string",
"default": "**/*.{test,spec}.{js,jsx,ts,tsx}",
"description": "CodeLens will be shown on files matching this pattern"
},
"test-runner.config-directory": {
"type": [
"string",
"null"
],
"default": null,
"description": "Specifies the absolute folder path containing the web test runner config file."
}
}
}
},
"scripts": {
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"pretest": "npm run compile && npm run lint",
"lint": "eslint src --ext ts",
"test": "node ./out/test/runTest.js",
"vscode:prepublish": "npm run esbuild-base -- --minify",
"esbuild-base": "esbuild ./src/extension.ts --bundle --packages=external --outfile=out/extension.js --format=cjs --platform=node",
"esbuild": "npm run esbuild-base -- --sourcemap",
"esbuild-watch": "npm run esbuild-base -- --sourcemap --watch",
"test-compile": "tsc -p ./",
"package:local": "vsce package",
"package:publish": "vsce publish -p <PERSONAL_ACCESS_TOKEN>"
},
"devDependencies": {
"@types/find-root": "^1.1.2",
"@types/glob": "^8.1.0",
"@types/mocha": "^10.0.1",
"@types/node": "^18.15.8",
"@types/vscode": "^1.76.0",
"@typescript-eslint/eslint-plugin": "^5.56.0",
"@typescript-eslint/parser": "^5.56.0",
"@vscode/vsce": "^2.18.0",
"esbuild": "^0.17.13",
"eslint": "^8.36.0",
"glob": "^9.3.2",
"mocha": "^10.2.0",
"typescript": "^5.0.2",
"vscode-test": "^1.5.0"
},
"publisher": "manishgowardipe",
"dependencies": {
"@vscode-logging/logger": "^1.2.3",
"@web/config-loader": "^0.1.3",
"@web/test-runner": "^0.15.1",
"find-root": "^1.1.0",
"vscode-test-adapter-api": "^1.9.0",
"vscode-test-adapter-util": "^0.7.1"
},
"extensionDependencies": [
"hbenl.vscode-test-explorer"
],
"repository": "https://github.com/Manish3323/web-test-runner"
}