-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
112 lines (112 loc) · 3.41 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
{
"name": "vscode-testplane",
"displayName": "Testplane",
"description": "Integration Testplane with VS Code",
"version": "1.2.0",
"icon": "images/logo.png",
"publisher": "gemini-testing",
"engines": {
"vscode": "^1.73.0"
},
"categories": [
"Testing"
],
"activationEvents": [
"workspaceContains:**/*{testplane,hermione}*.conf*.{ts,js,cts,cjs}",
"workspaceContains:node_modules/.bin/testplane"
],
"main": "./out/extension.js",
"contributes": {
"commands": [
{
"category": "Test",
"command": "tpn.install",
"title": "Install Testplane"
}
],
"keybindings": {
"command": "workbench.action.terminal.runSelectedText",
"key": "ctrl+shift+8",
"mac": "cmd+shift+8",
"when": "editorTextFocus && editorLangId =~ /(javascript|typescript)/"
},
"views": {
"test": [
{
"type": "webview",
"id": "tpn.settingsView",
"name": "Testplane"
}
]
},
"configuration": {
"title": "Testplane",
"properties": {
"testplane.configPath": {
"markdownDescription": "The path to the Testplane [configuration file](https://testplane.io/docs/v8/config/main/)",
"type": "string",
"scope": "window"
}
}
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/gemini-testing/vscode-testplane.git"
},
"license": "MIT",
"scripts": {
"vscode:prepublish": "npm run build",
"build": "tsup --minify --clean",
"watch": "tsup --watch --sourcemap",
"test": "npm run lint && npm run test-e2e",
"test-e2e": "npm run test-e2e:basic && npm run test-e2e:settings-view && npm run test-e2e:vscode-settings && npm run test-e2e:empty",
"test-e2e:basic": "wdio run ./tests/e2e/basic/wdio.conf.ts",
"test-e2e:settings-view": "wdio run ./tests/e2e/settings-view/wdio.conf.ts",
"test-e2e:vscode-settings": "wdio run ./tests/e2e/vscode-settings/wdio.conf.ts",
"test-e2e:empty": "wdio run ./tests/e2e/empty/wdio.conf.ts",
"eslint": "eslint src --ext ts --cache",
"lint": "eslint --cache . && prettier --check .",
"reformat": "eslint --fix . && prettier --write .",
"precommit": "npm run lint",
"commitmsg": "commitlint -e",
"release": "standard-version"
},
"devDependencies": {
"@commitlint/cli": "^18.6.1",
"@commitlint/config-conventional": "^18.6.2",
"@types/lodash": "^4.17.7",
"@types/node": "18.x",
"@types/strftime": "^0.9.8",
"@types/vscode": "^1.73.0",
"@types/which": "^3.0.4",
"@typescript-eslint/eslint-plugin": "^6.19.1",
"@typescript-eslint/parser": "^6.19.1",
"@wdio/cli": "^8.40.5",
"@wdio/globals": "^8.40.5",
"@wdio/local-runner": "^8.40.5",
"@wdio/mocha-framework": "^8.40.3",
"@wdio/spec-reporter": "^8.40.3",
"birpc": "^0.2.17",
"error-stack-parser": "^2.1.4",
"eslint": "^8.56.0",
"eslint-config-gemini-testing": "^3.0.0",
"eslint-config-prettier": "^9.1.0",
"lodash": "^4.17.21",
"pathe": "^1.1.2",
"prettier": "^3.2.5",
"standard-version": "^9.5.0",
"strftime": "^0.10.3",
"strip-ansi": "^7.1.0",
"testplane": "^8.20.2",
"ts-node": "^10.9.2",
"tsup": "^8.2.4",
"typescript": "^5.3.3",
"wdio-vscode-service": "^6.1.0",
"webdriverio": "^8.40.5",
"which": "^4.0.0"
},
"peerDependencies": {
"testplane": ">8.20.0"
}
}