forked from kondratyev-nv/vscode-python-test-adapter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
129 lines (129 loc) · 4.13 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
121
122
123
124
125
126
127
128
129
{
"name": "vscode-python-test-adapter",
"displayName": "Python Test Explorer for Visual Studio Code",
"description": "Run your Python tests in the Sidebar of Visual Studio Code",
"icon": "img/icon.png",
"author": "Nikolay Kondratyev",
"publisher": "littlefoxteam",
"version": "0.6.8",
"license": "MIT",
"homepage": "https://github.com/kondratyev-nv/vscode-python-test-adapter",
"repository": {
"type": "git",
"url": "https://github.com/kondratyev-nv/vscode-python-test-adapter.git"
},
"bugs": {
"url": "https://github.com/kondratyev-nv/vscode-python-test-adapter/issues"
},
"badges": [
{
"url": "https://github.com/kondratyev-nv/vscode-python-test-adapter/workflows/GitHub%20Actions%20CI/badge.svg",
"href": "https://github.com/kondratyev-nv/vscode-python-test-adapter/actions?query=workflow%3A%22GitHub+Actions+CI%22+branch%3Amaster",
"description": "Continuous integration (Travis)"
},
{
"url": "https://dev.azure.com/kondratyev-nv/Python%20Test%20Explorer%20for%20Visual%20Studio%20Code/_apis/build/status/Python%20Test%20Explorer%20for%20Visual%20Studio%20Code%20CI?branchName=master",
"href": "https://dev.azure.com/kondratyev-nv/Python%20Test%20Explorer%20for%20Visual%20Studio%20Code/_build/latest?definitionId=1?branchName=master",
"description": "Continuous integration (Azure Pipelines)"
},
{
"url": "https://david-dm.org/kondratyev-nv/vscode-python-unittest-adapter/status.svg",
"href": "https://david-dm.org/kondratyev-nv/vscode-python-unittest-adapter",
"description": "Dependencies status (David)"
}
],
"categories": [
"Other"
],
"keywords": [
"python",
"test",
"testing",
"unittest",
"pytest"
],
"scripts": {
"clean": "rimraf out *.vsix **/*.pyc **/__pycache__ **/.pytest_cache **/.some_venv **/.venv",
"build": "tsc",
"postbuild": "copyfiles \"resources/python/**/*.py\" out",
"watch": "tsc -w",
"lint": "tslint --project tsconfig.json",
"pretest": "npm run build",
"test": "cross-env SOME_PROCESS_VARIABLE=HelloFromProcessEnv cross-env CODE_TESTS_WORKSPACE=./test/test_samples/samples-workspace.code-workspace node ./out/test/vscode-runner.js",
"prepackage": "npm run build",
"package": "vsce package"
},
"extensionDependencies": [
"ms-python.python",
"hbenl.vscode-test-explorer"
],
"dependencies": {
"argparse": "^2.0.1",
"dotenv": "^10.0.0",
"iconv-lite": "^0.6.3",
"js-base64": "^3.6.1",
"tmp": "^0.2.1",
"tslib": "^2.2.0",
"untildify": "^4.0.0",
"vscode-test-adapter-api": "^1.9.0",
"xml2js": "^0.4.23",
"jsonc-parser": "3.0.0"
},
"devDependencies": {
"@types/argparse": "^2.0.8",
"@types/chai": "^4.2.18",
"@types/glob": "^7.1.3",
"@types/mocha": "^8.2.2",
"@types/node": "^15.6.1",
"@types/tmp": "^0.2.0",
"@types/vscode": "^1.23.0",
"@types/xml2js": "^0.4.8",
"chai": "^4.3.4",
"copyfiles": "2.4.1",
"cross-env": "^7.0.3",
"glob": "^7.1.7",
"mocha": "^8.4.0",
"rimraf": "^3.0.2",
"tslint": "^6.1.3",
"typescript": "^4.2.4",
"vsce": "^1.88.0",
"vscode-test": "^1.5.2"
},
"main": "out/src/main.js",
"engines": {
"vscode": "^1.23.0"
},
"activationEvents": [
"onLanguage:python",
"onView:test-explorer",
"onCommand:test-explorer.reload",
"onCommand:test-explorer.run-all",
"onCommand:test-explorer.run-file",
"onCommand:test-explorer.run-test-at-cursor",
"onCommand:test-explorer.rerun",
"onCommand:test-explorer.debug-test-at-cursor",
"onCommand:test-explorer.redebug",
"onCommand:test-explorer.cancel",
"onStartupFinished"
],
"contributes": {
"configuration": {
"properties": {
"pythonTestExplorer.testFramework": {
"type": [
"string",
"null"
],
"enum": [
"unittest",
"pytest",
null
],
"default": null,
"description": "Test framework to use for Python Test Explorer (default is null and Python extension settings are used)",
"scope": "resource"
}
}
}
}
}