forked from kavod-io/vscode-jest-test-adapter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
152 lines (152 loc) · 4.8 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
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
{
"name": "vscode-jest-test-adapter",
"displayName": "Jest Test Explorer",
"description": "Run your Jest tests in the Sidebar of Visual Studio Code",
"icon": "icon.png",
"author": "Tyler Benfield <[email protected]>",
"publisher": "kavod-io",
"contributors": [
"Craig Fleming (https://github.com/rythos42)",
"Ross Knudsen (https://github.com/rossknudsen)"
],
"version": "0.5.1",
"preview": true,
"license": "MIT",
"homepage": "https://github.com/kavod-io/vscode-jest-test-adapter",
"repository": {
"type": "git",
"url": "https://github.com/kavod-io/vscode-jest-test-adapter.git"
},
"bugs": {
"url": "https://github.com/kavod-io/vscode-jest-test-adapter/issues"
},
"categories": [
"Other"
],
"keywords": [
"test",
"testing",
"jest"
],
"main": "dist/extension.js",
"scripts": {
"build": "npm run webpack-prod",
"clean": "rimraf out dist build junit.xml coverage *.vsix",
"rebuild": "npm run clean && npm run build",
"package": "mkdir build && vsce package -o build/vscode-jest-test-adapter.vsix",
"publish": "vsce publish",
"test": "jest",
"test-ci": "jest --ci --reporters=jest-junit --reporters=default --coverage --coverageReporters=cobertura --coverageReporters=html",
"test-watch": "jest --watch",
"type-check": "tsc --noEmit",
"vscode:prepublish": "npm run webpack-prod",
"webpack-prod": "webpack --mode production",
"webpack-dev": "webpack --mode development",
"webpack-watch": "webpack --mode development --watch"
},
"dependencies": {
"@babel/traverse": "^7.14.0",
"@schemastore/package": "0.0.5",
"cosmiconfig": "^6.0.0",
"jest-editor-support": "^28.1.0",
"lodash": "^4.17.21",
"micromatch": "^4.0.2",
"semver": "^7.3.2",
"strip-ansi": "^6.0.0",
"tslib": "^1.11.1",
"vscode-test-adapter-api": "^1.9.0",
"vscode-test-adapter-util": "^0.7.0"
},
"devDependencies": {
"@types/jest": "^26.0.23",
"@types/lodash": "^4.14.168",
"@types/micromatch": "^4.0.1",
"@types/node": "^15.0.2",
"@types/semver": "^7.1.0",
"@types/vscode": "^1.30.0",
"@types/webpack": "^5.28.0",
"@typescript-eslint/eslint-plugin": "^4.22.1",
"@typescript-eslint/parser": "^4.22.1",
"eslint": "^7.26.0",
"eslint-config-prettier": "^8.3.0",
"jest": "^26.6.3",
"jest-extended": "^0.11.5",
"jest-junit": "^12.0.0",
"jest-watch-typeahead": "^0.6.3",
"memfs": "^3.2.2",
"prettier": "^2.2.1",
"ts-jest": "^26.5.6",
"ts-loader": "^9.1.2",
"ts-node": "^9.1.1",
"typescript": "^4.2.4",
"vsce": "^1.88.0",
"webpack": "^5.36.2",
"webpack-cli": "^4.7.0"
},
"engines": {
"vscode": "^1.30.0"
},
"extensionDependencies": [
"hbenl.vscode-test-explorer"
],
"activationEvents": [
"*"
],
"contributes": {
"configuration": {
"type": "object",
"title": "Jest Test Explorer configuration",
"properties": {
"jestTestExplorer.logpanel": {
"description": "Write diagnotic logs to an output panel.",
"scope": "resource",
"title": "Log Panel",
"type": "boolean"
},
"jestTestExplorer.logfile": {
"description": "Write diagnostic logs to the given file.",
"scope": "resource",
"title": "Log File",
"type": "string"
},
"jestTestExplorer.pathToJest": {
"description": "Override the path to the Jest executable. The default behavior is to attempt to detect common configurations.",
"scope": "resource",
"type": "string"
},
"jestTestExplorer.debugOutput": {
"description": "Specifies where to display the output from the Debug process.",
"default": "internalConsole",
"scope": "resource",
"type": "string",
"enum": [
"internalConsole",
"integratedTerminal",
"externalTerminal"
]
},
"jestTestExplorer.hideEmptyProjects": {
"description": "Hide projects that do not have any tests from the test hierarchy.",
"scope": "resource",
"title": "Hide Empty Projects",
"type": "boolean",
"default": true
},
"jestTestExplorer.flattenExplorer": {
"description": "When true, tests in the Test Explorer will be grouped only by `describe` labels instead of file/folder structure.",
"scope": "resource",
"title": "Flatten Tests in Explorer",
"type": "boolean",
"default": false
},
"jestTestExplorer.featureToggles": {
"description": "A list of feature toggles to enable experimental features.",
"scope": "window",
"title": "Feature Toggles",
"type": "array",
"default": []
}
}
}
}
}