-
Notifications
You must be signed in to change notification settings - Fork 86
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 2.12 KB
/
package.json
File metadata and controls
84 lines (84 loc) · 2.12 KB
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
{
"name": "vscode-extension-tester",
"version": "8.23.0",
"description": "ExTester is a package that is designed to help you run UI tests for your Visual Studio Code extensions using selenium-webdriver.",
"icon": "icons/logo.png",
"main": "out/extester.js",
"types": "out/extester.d.ts",
"files": [
"out/**/*.js",
"out/**/*.d.ts",
"resources/*"
],
"bin": {
"extest": "out/cli.js"
},
"scripts": {
"prepack": "npm run build",
"build": "npm run clean && npm run compile && chmod a+x ./out/cli.js",
"compile": "tsc -p ./ && npm run lint",
"lint": "eslint --fix --fix-type layout src",
"clean": "rimraf out"
},
"author": "Red Hat",
"license": "Apache-2.0",
"publishConfig": {
"access": "public"
},
"maintainers": [
{
"name": "Dominik Jelinek",
"email": "djelinek@redhat.com"
}
],
"bugs": {
"url": "https://github.com/redhat-developer/vscode-extension-tester/issues"
},
"homepage": "https://github.com/redhat-developer/vscode-extension-tester#readme",
"repository": {
"type": "git",
"url": "https://github.com/redhat-developer/vscode-extension-tester.git",
"directory": "packages/extester"
},
"keywords": [
"webdriver",
"selenium-webdriver",
"selenium",
"test",
"vscode",
"extension",
"extester",
"vscode-extension-tester",
"ui-test"
],
"supportedVersions": {
"vscode-min": "1.109.5",
"vscode-max": "1.111.0"
},
"dependencies": {
"@redhat-developer/locators": "^1.20.0",
"@redhat-developer/page-objects": "^1.20.0",
"@types/selenium-webdriver": "^4.35.5",
"@vscode/vsce": "^3.7.1",
"c8": "^11.0.0",
"commander": "^14.0.3",
"compare-versions": "^6.1.1",
"find-up": "8.0.0",
"fs-extra": "^11.3.4",
"glob": "^13.0.6",
"got": "^14.6.6",
"hpagent": "^1.2.0",
"js-yaml": "^4.1.1",
"sanitize-filename": "^1.6.3",
"selenium-webdriver": "^4.41.0",
"targz": "^1.0.1",
"unzipper": "^0.12.3"
},
"peerDependencies": {
"mocha": ">=5.2.0",
"typescript": ">=4.6.2"
},
"devDependencies": {
"@types/unzipper": "^0.10.11"
}
}