-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathpackage.json
171 lines (171 loc) · 4.89 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
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
{
"name": "testify",
"displayName": "Testify",
"description": "Run JavaScript tests easily using CodeLens",
"version": "1.13.0",
"author": {
"name": "felixjb",
"email": "[email protected]"
},
"publisher": "felixjb",
"license": "MIT",
"categories": [
"Testing"
],
"keywords": [
"test",
"testing",
"unit",
"ava",
"jest",
"mocha",
"playwright",
"vitest"
],
"private": true,
"preview": false,
"galleryBanner": {
"color": "#8647ae",
"theme": "dark"
},
"icon": "resources/icon.png",
"main": "./out/extension.js",
"activationEvents": [
"onLanguage:javascript",
"onLanguage:javascriptreact",
"onLanguage:typescript",
"onLanguage:typescriptreact",
"onLanguage:vue"
],
"engineStrict": true,
"engines": {
"node": "^20.18.1",
"npm": "^10.8.2",
"vscode": "^1.96.1"
},
"repository": {
"type": "git",
"url": "https://github.com/felixjb/testify"
},
"bugs": {
"url": "https://github.com/felixjb/testify/issues"
},
"contributes": {
"commands": [
{
"command": "testify.run.test",
"title": "Run Test"
},
{
"command": "testify.debug.test",
"title": "Debug Test"
},
{
"command": "testify.watch.test",
"title": "Watch Test"
}
],
"configuration": [
{
"properties": {
"testify.additionalArgs": {
"default": "",
"description": "Specifies arguments to be passed to the test framework command",
"scope": "resource",
"type": "string"
},
"testify.envVars": {
"default": {
"NODE_ENV": "test"
},
"description": "Specifies environment variables to be exported before running a test",
"scope": "resource",
"type": "object"
},
"testify.skipFiles": {
"default": [],
"description": "Specifies files that should be skipped during debugging",
"items": {
"type": "string"
},
"scope": "resource",
"type": "array"
},
"testify.testRunnerPath": {
"default": "",
"description": "Specifies a custom path for the test runner executable",
"scope": "resource",
"type": "string"
},
"testify.autoClear": {
"default": true,
"description": "When enabled, the output channel will be cleared before running a test",
"scope": "resource",
"type": "boolean"
}
}
}
]
},
"scripts": {
"contributors:add": "all-contributors add",
"contributors:generate": "all-contributors generate",
"clean": "npx rimraf dist out .vscode-test && npm ci",
"prettier:format": "prettier \"**/*.{ts,json}\" --ignore-path .gitignore --write .",
"prettier:check": "prettier --check \"**/*.{ts,json}\" --ignore-path .gitignore",
"lint:fix": "eslint src --ext .ts --fix",
"lint:check": "eslint src --ext .ts",
"typecheck": "tsc -p ./ --noEmit",
"compile": "tsc -p ./",
"compile:watch": "tsc -watch -p ./",
"test": "npm run compile && node ./out/test/run-test.js",
"validate": "npm-run-all --parallel prettier:format lint:fix test",
"bundle": "webpack --mode development",
"bundle:watch": "webpack --mode development --watch",
"bundle:production": "webpack --mode production --devtool hidden-source-map",
"vscode:prepublish": "npm run bundle:production",
"package": "vsce package",
"publish": "vsce publish"
},
"dependencies": {
"@babel/core": "^7.24.4",
"@babel/parser": "^7.24.4",
"@babel/plugin-syntax-decorators": "^7.24.1",
"@babel/plugin-syntax-jsx": "^7.24.1",
"@babel/plugin-syntax-typescript": "^7.24.1",
"@babel/traverse": "^7.24.1"
},
"devDependencies": {
"@commitlint/cli": "^19.2.2",
"@commitlint/config-conventional": "^19.2.2",
"@types/babel__traverse": "^7.20.5",
"@types/glob": "^8.1.0",
"@types/mocha": "^10.0.6",
"@types/node": "^18.19.31",
"@types/vscode": "1.88.0",
"@typescript-eslint/eslint-plugin": "^7.7.0",
"@typescript-eslint/parser": "^7.7.0",
"@vscode/test-electron": "^2.3.9",
"@vscode/vsce": "^2.25.0",
"all-contributors-cli": "^6.26.1",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"glob": "^7.2.3",
"lint-staged": "^15.2.2",
"mocha": "^10.4.0",
"npm-run-all": "^4.1.5",
"prettier": "^3.2.5",
"simple-git-hooks": "^2.11.1",
"ts-loader": "^9.5.1",
"ts-node": "^10.9.2",
"typescript": "^5.4.5",
"webpack": "^5.91.0",
"webpack-cli": "^5.1.4"
},
"__metadata": {
"id": "f3dec115-c205-429d-99ed-385f03b84714",
"publisherDisplayName": "Felix J. Batista",
"publisherId": "669d2f49-2b2d-42c4-937d-6751704b7cc9",
"isPreReleaseVersion": false
}
}