-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
56 lines (56 loc) · 1.33 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
{
"name": "vscode-test-explorer-status-bar",
"displayName": "Test Explorer Status Bar",
"description": "A Status Bar for the Text Explorer UI extension.",
"icon": "img/icon.png",
"author": "Connor Shea <connor.james.shea@gmail.com>",
"publisher": "connorshea",
"version": "1.2.0",
"license": "MIT",
"homepage": "https://github.com/connorshea/vscode-test-explorer-status-bar",
"repository": {
"type": "git",
"url": "https://github.com/connorshea/vscode-test-explorer-status-bar.git"
},
"bugs": {
"url": "https://github.com/connorshea/vscode-test-explorer-status-bar/issues"
},
"categories": [
"Other"
],
"keywords": [
"test",
"testing",
"status-bar",
"test-explorer"
],
"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.2.0",
"vscode-test-adapter-api": "^1.9.0"
},
"devDependencies": {
"@types/vscode": "^1.55.0",
"typescript": "^4.2.4",
"vsce": "^1.88.0",
"vscode-test": "^1.5.2"
},
"engines": {
"vscode": "^1.55.0"
},
"extensionDependencies": [
"hbenl.vscode-test-explorer"
],
"activationEvents": [
"*"
],
"contributes": {}
}