-
Notifications
You must be signed in to change notification settings - Fork 28
/
package.json
106 lines (106 loc) · 3.17 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
{
"name": "wdio-vscode-service",
"version": "6.1.2",
"description": "A service to test VSCode extensions from end to end",
"author": "Christian Bromann <mail@bromann.dev>",
"homepage": "https://github.com/webdriverio-community/wdio-vscode-service",
"license": "MIT",
"type": "module",
"exports": "./dist/index.js",
"types": "./dist/index.d.ts",
"typeScriptVersion": "3.8.3",
"engines": {
"node": "^16.13 || >=18"
},
"scripts": {
"build": "run-s build:*",
"build:ts": "tsc -b .",
"build:compile": "pkg --target win --out-path ./dist/chromium ./dist/chromium/index.js",
"build:chmod": "chmod +x ./dist/chromium/index.js",
"ci": "run-s test:lint build test",
"clean": "rimraf ./node_modules ./dist",
"docs": "typedoc",
"prepare": "husky install",
"release": "release-it --github.release",
"release:ci": "npm run release -- --ci --npm.skipChecks --no-git.requireCleanWorkingDir",
"release:patch": "npm run release -- patch",
"release:minor": "npm run release -- minor",
"release:major": "npm run release -- major",
"test": "run-s test:*",
"test:setup": "node ./.github/scripts/link.mjs",
"test:lint": "eslint src test",
"test:e2e": "run-s test:e2e:*",
"test:e2e:run": "wdio run ./test/wdio.conf.ts",
"test:e2e:cleanup": "git checkout -- package.json",
"watch": "npm run build:ts -- --watch"
},
"keywords": [
"webdriverio",
"wdio",
"wdio-service",
"vscode",
"tests"
],
"dependencies": {
"@fastify/cors": "^9.0.1",
"@fastify/static": "^7.0.1",
"@types/ws": "^8.5.10",
"@vscode/test-electron": "^2.3.9",
"@wdio/logger": "^8.28.0",
"@xhmikosr/downloader": "^15.0.1",
"clipboardy": "^3.0.0",
"decamelize": "6.0.0",
"fastify": "^4.26.1",
"get-port": "7.0.0",
"hpagent": "^1.2.0",
"slash": "^5.1.0",
"tmp-promise": "^3.0.3",
"undici": "^5.28.3",
"vscode-uri": "^3.0.8",
"ws": "^8.16.0",
"yargs-parser": "^21.1.1"
},
"peerDependencies": {
"webdriverio": "^8.32.2"
},
"peerDependenciesMeta": {
"webdriverio": {
"optional": true
}
},
"devDependencies": {
"@types/download": "^8.0.5",
"@types/node": "^18.19.17",
"@types/vscode": "^1.86.0",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"@wdio/cli": "^8.32.2",
"@wdio/globals": "^8.32.2",
"@wdio/local-runner": "^8.32.2",
"@wdio/mocha-framework": "^8.32.2",
"@wdio/spec-reporter": "^8.32.2",
"@wdio/types": "^8.32.2",
"eslint": "^8.56.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-base-typescript": "^1.1.0",
"eslint-import-resolver-typescript": "^3.6.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-jest": "^27.9.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-unicorn": "^51.0.1",
"eslint-plugin-wdio": "^8.24.12",
"husky": "^8.0.3",
"npm-run-all2": "^6.1.2",
"pkg": "^5.8.1",
"release-it": "^17.1.1",
"rimraf": "^5.0.5",
"ts-node": "^10.9.2",
"typedoc": "^0.25.8",
"typescript": "^5.3.3"
},
"files": [
"dist/*",
"src/server/fs-provider"
]
}