forked from The-Compiler/vscode-python-tox
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
120 lines (120 loc) · 2.92 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
{
"name": "python-tox",
"displayName": "python-tox",
"description": "Integrates the tox task automation tool",
"keywords": [
"python",
"tox"
],
"version": "1.0.0",
"license": "MIT",
"publisher": "the-compiler",
"repository": {
"type": "git",
"url": "https://github.com/The-Compiler/vscode-python-tox.git"
},
"bugs": {
"url": "https://github.com/The-Compiler/vscode-python-tox/issues",
"email": "[email protected]"
},
"badges": [
{
"url": "https://img.shields.io/static/v1?label=Sponsor&message=%E2%9D%A4&logo=GitHub&color=pink",
"href": "https://github.com/sponsors/The-Compiler/",
"description": "Sponsor on GitHub Sponsors"
}
],
"icon": "img/tox.png",
"galleryBanner": {
"color": "#92a16d",
"theme": "light"
},
"engines": {
"vscode": "^1.59.0"
},
"categories": [
"Programming Languages",
"Linters",
"Other"
],
"activationEvents": [
"onCommand:workbench.action.tasks.runTask",
"onCommand:python-tox.select",
"onCommand:python-tox.selectWithArgs",
"onCommand:python-tox.selectMultiple",
"onCommand:python-tox.selectMultipleWithArgs",
"onCommand:python-tox.openDocs",
"workspaceContains:tox.ini",
"onLanguage:ini"
],
"main": "./out/extension.js",
"contributes": {
"taskDefinitions": [
{
"type": "tox",
"required": [
"testenv"
],
"properties": {
"testenv": {
"type": "string",
"description": "The testenv to execute"
}
}
}
],
"commands": [
{
"command": "python-tox.select",
"title": "Select and run tox environment"
},
{
"command": "python-tox.selectMultiple",
"title": "Select and run multiple tox environments"
},
{
"command": "python-tox.selectWithArgs",
"title": "Select and run tox environment with custom arguments"
},
{
"command": "python-tox.selectMultipleWithArgs",
"title": "Select and run multiple tox environments with custom arguments"
},
{
"command": "python-tox.openDocs",
"title": "Open tox documentation in default browser"
}
]
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"pretest": "npm run compile && npm run lint",
"lint": "eslint src --ext ts --max-warnings=0",
"test": "node ./out/test/runTest.js",
"package": "vsce package",
"publish": "vsce publish"
},
"devDependencies": {
"@types/glob": "^7.2.0",
"@types/mocha": "^9.1.1",
"@types/node": "^18.0.0",
"@types/vscode": "^1.59.0",
"@typescript-eslint/eslint-plugin": "^5.29.0",
"@typescript-eslint/parser": "^5.29.0",
"@vscode/test-electron": "^2.1.4",
"eslint": "^8.18.0",
"glob": "^8.0.3",
"mocha": "^10.0.0",
"ts-mockito": "^2.6.1",
"typescript": "^4.7.4",
"vsce": "^2.9.2"
},
"__metadata": {
"id": "4bf06dca-7623-4c24-bebc-086fabf79e93",
"publisherDisplayName": "The Compiler",
"publisherId": "f0b11697-58e0-4d45-ba83-2e47875557e2",
"isPreReleaseVersion": false
}
}