-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
170 lines (170 loc) · 5.07 KB
/
package.json
File metadata and controls
170 lines (170 loc) · 5.07 KB
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
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
{
"name": "pytestersuits",
"displayName": "TestHelper",
"description": "VSCode extension to make testing much more simple and intuitive.",
"version": "2.4.3",
"engines": {
"vscode": "^1.63.0"
},
"keywords": [
"Testing",
"Test",
"Pytest",
"Jest",
"VSCE",
"Coverage report",
"Automatisation",
"Automate",
"Adder",
"Suite",
"Java",
"JUnit",
"Code",
"Snippet"
],
"categories": [
"Testing",
"Programming Languages"
],
"activationEvents": [
"onCommand:pytestersuits.addTestToFile",
"onView:coverReport"
],
"main": "./out/extension.js",
"contributes": {
"configuration": {
"title": "Pytestersuits",
"properties": {
"pytestersuits.pythonDefaultTestLibrary": {
"description": "The library you will use, when working with Python, to add test and vizualise your coverage report",
"type": "string",
"default": "Choose each time",
"enum": [
"Choose each time",
"pytest"
],
"enumDescriptions": [
"Will you have to pick the library each time you add a test.\nCoverage Report UI won't be accessible.",
"You will use pytest as python test library."
]
},
"pytestersuits.typescriptDefaultTestLibrary": {
"description": "The library you will, when working with Typescript, use to add test and vizualise your coverage report",
"type": "string",
"default": "Choose each time",
"enum": [
"Choose each time",
"Vscode Extension Test suit"
],
"enumDescriptions": [
"Will you have to pick the library each time you add a test.\nCoverage Report UI won't be accessible.",
"You will use 'Vscode Extension Test suit' as Typescript test library.\nCoverage Report UI won't be accessible."
]
},
"pytestersuits.javascriptDefaultTestLibrary": {
"description": "The library you will, when working with Javascript, use to add test and vizualise your coverage report",
"type": "string",
"default": "Choose each time",
"enum": [
"Choose each time",
"Jest"
],
"enumDescriptions": [
"Will you have to pick the library each time you add a test.\nCoverage Report UI won't be accessible.",
"You will use 'Jest' as Javascript test library.\nCoverage Report UI won't be accessible."
]
},
"pytestersuits.javaDefaultTestLibrary": {
"description": "The library you will, when working with Java, use to add test and vizualise your coverage report",
"type": "string",
"default": "Choose each time",
"enum": [
"Choose each time",
"JUnit"
],
"enumDescriptions": [
"Will you have to pick the library each time you add a test.\nCoverage Report UI won't be accessible.",
"You will use 'JUnit' as Java test library.\nCoverage Report UI won't be accessible."
]
},
"pytestersuits.delimiter" : {
"description": "The delimiter you will use to add different test.",
"default": ";",
"type": "string"
}
}
},
"commands": [
{
"command": "pytestersuits.addTestToFile",
"title": "Add Test to File"
},
{
"command": "coverReport.goto",
"title": "Go to",
"icon": {
"dark": "rsc/icons/coverage_report_goto/dark.svg",
"light": "rsc/icons/coverage_report_goto/light.svg"
}
}
],
"viewsContainers": {
"activityBar": [
{
"id": "coverage-report",
"title": "Coverage Report",
"icon": "rsc/activityBar/coverage_report.svg"
}
]
},
"views": {
"coverage-report": [
{
"id": "coverReport",
"name": "Coverage Report"
}
]
},
"menus": {
"view/item/context": [
{
"command": "coverReport.goto",
"when": "view == coverReport && viewItem == lineCoverageReport",
"group": "inline"
}
]
}
},
"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",
"test": "node ./out/test/runTest.js",
"clear": "rm -rf ./out"
},
"publisher": "E-Jacques",
"devDependencies": {
"@types/glob": "^7.1.4",
"@types/mocha": "^9.0.0",
"@types/node": "14.x",
"@types/vscode": "^1.63.0",
"@typescript-eslint/eslint-plugin": "^5.1.0",
"@typescript-eslint/parser": "^5.1.0",
"@vscode/test-electron": "^1.6.2",
"eslint": "^8.1.0",
"glob": "^7.1.7",
"mocha": "^9.1.3",
"nyc": "^15.1.0",
"typescript": "^4.4.4"
},
"dependencies": {
"node-html-parser": "^5.1.0"
},
"repository": {
"url": "https://github.com/E-Jacques/pytestersuits.git",
"type": "github"
},
"icon": "rsc/icon.png"
}