-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
138 lines (138 loc) · 3.85 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
{
"packageManager": "[email protected]",
"publisher": "ncpa0cpl",
"name": "vscode-gest",
"displayName": "Gest",
"type": "commonjs",
"version": "1.0.0",
"main": "./dist/extension.js",
"icon": "./icon.png",
"engines": {
"vscode": "^1.78.0"
},
"scripts": {
"fix:lint": "eslint --fix .",
"fix:prettier": "prettier -w ./src",
"test:unit": "jest --coverage",
"test:lint": "eslint ./src",
"test:prettier": "prettier -c ./src",
"test:tsc": "tsc --noEmit",
"build": "node ./scripts/build.mjs",
"package": "yarn build && vsce package --yarn --no-dependencies"
},
"repository": {
"type": "git",
"url": "https://github.com/react-gjs/vscode-gest.git"
},
"license": "MIT",
"author": {
"name": "Szymon Bretner",
"email": "[email protected]"
},
"activationEvents": [
"workspaceContains:**/gest.config.{js,ts,mjs,cjs,json}",
"workspaceContains:node_modules/.bin/gest"
],
"extensionKind": [
"workspace"
],
"contributes": {
"commands": [
{
"command": "gest.runAll",
"title": "Gest: Run All Tests"
}
],
"configuration": [
{
"title": "Gest-Runner Config",
"properties": {
"gest.cwd": {
"type": "string",
"default": null,
"description": "Working directory.",
"scope": "window"
},
"gest.gestPath": {
"type": "string",
"default": null,
"description": "Path to the Gest executable.",
"scope": "window"
},
"gest.verboseArg": {
"type": "boolean",
"default": null,
"description": "--verbose cli argument for Gest.",
"scope": "window"
},
"gest.silenceLogsArg": {
"type": "boolean",
"default": null,
"description": "--silenceLogs cli argument for Gest.",
"scope": "window"
},
"gest.arguments": {
"type": "array",
"items": {
"type": "string"
},
"default": null,
"description": "Additional arguments for Gest.",
"scope": "window"
},
"gest.env": {
"type": "array",
"items": {
"type": "string"
},
"default": null,
"description": "Additional environment variables for Gest.",
"scope": "window"
},
"gest.clearTerminal": {
"type": "boolean",
"default": null,
"description": "Whether to clear the terminal before running Gest.",
"scope": "window"
},
"gest.parserPlugins": {
"type": "array",
"items": {
"type": "string"
},
"default": null,
"description": "Additional Babel plugins to use when parsing test files. See all available plugins [here](https://babeljs.io/docs/babel-parser#plugins).",
"scope": "window"
}
}
}
]
},
"dependencies": {
"@babel/parser": "^7.22.5",
"@babel/plugin-syntax-typescript": "^7.22.5",
"@vscode/vsce": "^2.19.0",
"reflect-metadata": "^0.1.13",
"rimraf": "^5.0.1"
},
"devDependencies": {
"@swc/core": "^1.3.63",
"@swc/jest": "^0.2.26",
"@types/jest": "^29.5.2",
"@types/vscode": ">1.78.2",
"@typescript-eslint/eslint-plugin": "^5.59.11",
"@typescript-eslint/parser": "^5.59.11",
"esbuild": "^0.18.2",
"eslint": "^8.42.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-prettier": "^4.2.1",
"generator-code": "^1.7.7",
"git-hook-tasks": "ncpa0cpl/git-hook-tasks",
"husky": "^8.0.3",
"jest": "^29.5.0",
"prettier": "^2.8.8",
"prettier-plugin-jsdoc": "^0.4.2",
"typescript": "^5.1.3",
"yo": "^4.3.1"
}
}