-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
98 lines (98 loc) · 2.46 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
{
"name": "pytest-runner",
"displayName": "Pytest Runner for Visual Studio Code",
"description": "Run test (locally ,venv and in docker container) in your 🐍 python codebase using pytest.",
"version": "0.0.10",
"publisher": "pamaron",
"keywords": [
"python",
"pytest",
"testing",
"docker"
],
"license": "MIT",
"author": {
"name": "Ernesto Arbitrio"
},
"engines": {
"vscode": "^1.95.0"
},
"icon": "images/pytest-runner-logo-small.png",
"categories": [
"Other",
"Testing"
],
"repository": {
"type": "git",
"url": "https://github.com/ernestoarbitrio/pytest-runner"
},
"homepage": "https://github.com/ernestoarbitrio/pytest-runner/blob/main/README.md",
"bugs": {
"url": "https://github.com/ernestoarbitrio/pytest-runner/issues",
"email": "ernesto.arbitrio@gmail.com"
},
"activationEvents": [
"onCommand:pytest-runner.run-test",
"onCommand:pytest-runner.run-test-docker",
"onCommand:pytest-runner.run-module-test",
"onCommand:pytest-runner.run-module-test-docker",
"onLanguage:python"
],
"main": "./out/extension.js",
"contributes": {
"commands": [
{
"command": "pytest-runner.run-test",
"title": "Run Test"
},
{
"command": "pytest-runner.run-test-docker",
"title": "Run Test Docker"
},
{
"command": "pytest-runner.run-module-test",
"title": "Run Test Module"
},
{
"command": "pytest-runner.run-module-test-docker",
"title": "Run Test Module Docker"
}
]
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"pretest": "npm run compile && npm run lint",
"lint": "eslint src",
"test": "vscode-test"
},
"devDependencies": {
"@types/glob": "^8.1.0",
"@types/mocha": "^10.0.10",
"@types/node": "22.x",
"@types/sinon": "^17.0.3",
"@types/vscode": "^1.96.0",
"@typescript-eslint/eslint-plugin": "^8.19.0",
"@typescript-eslint/parser": "^8.19.0",
"@vscode/test-cli": "^0.0.10",
"@vscode/test-electron": "^2.4.1",
"eslint": "^9.17.0",
"glob": "^11.0.0",
"mocha": "^11.0.1",
"prettier": "3.4.2",
"sinon": "^19.0.2",
"typescript": "^5.7.2"
},
"dependencies": {
"toml": "^3.0.0"
},
"prettier": {
"trailingComma": "es5",
"tabWidth": 4,
"semi": true,
"singleQuote": true,
"parser": "typescript",
"printWidth": 88
}
}