-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
60 lines (60 loc) · 1.54 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
{
"name": "helloworld-extester",
"displayName": "HelloWorld ExTester",
"description": "HelloWorld example extension for ExTester",
"icon": "icons/logo.png",
"preview": true,
"private": true,
"version": "0.1.0",
"main": "./out/extension.js",
"author": {
"name": "ExTester"
},
"publisher": "ExTester",
"license": "Apache-2.0",
"engines": {
"vscode": "^1.85.0"
},
"repository": {
"type": "git",
"url": "https://github.com/redhat-developer/vscode-extension-tester.git",
"directory": "examples/helloworld-extester"
},
"categories": [
"Other",
"Testing"
],
"contributes": {
"commands": [
{
"command": "extension.helloWorld",
"title": "Hello World"
},
{
"command": "extension.webview",
"title": "Webview Test"
}
]
},
"scripts": {
"vscode:prepublish": "npm run compile",
"compile": "tsc -p ./ && npm run lint",
"lint": "eslint src",
"watch": "tsc -watch -p ./",
"ui-test": "extest setup-and-run './out/ui-test/*.test.js' --code_version max --code_settings settings.json --extensions_dir .test-extensions"
},
"devDependencies": {
"@stylistic/eslint-plugin": "^2.11.0",
"@types/chai": "^4.3.16",
"@types/mocha": "^10.0.10",
"@types/node": "^22.10.1",
"@types/vscode": "^1.85.0",
"@typescript-eslint/eslint-plugin": "^8.16.0",
"chai": "^4.4.1",
"eslint": "^9.16.0",
"eslint-define-config": "^2.1.0",
"mocha": "^10.8.2",
"typescript": "^5.7.2",
"vscode-extension-tester": "^8.10.0"
}
}