forked from webdriverio-community/wdio-vscode-service
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
112 lines (112 loc) · 3.31 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": "wdio-vscode-service",
"version": "5.1.0",
"description": "A service to test VSCode extensions from end to end",
"author": "Christian Bromann <[email protected]>",
"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": "^8.2.1",
"@fastify/static": "^6.10.1",
"@types/ws": "^8.5.4",
"@vscode/test-electron": "^2.3.0",
"@wdio/logger": "^8.6.6",
"clipboardy": "^3.0.0",
"decamelize": "6.0.0",
"download": "^8.0.0",
"fastify": "^4.16.3",
"get-port": "6.1.2",
"slash": "^5.0.1",
"tmp-promise": "^3.0.3",
"undici": "^5.22.0",
"vscode-uri": "^3.0.7",
"wdio-chromedriver-service": "^8.1.1",
"ws": "^8.13.0",
"yargs-parser": "^21.1.1"
},
"peerDependencies": {
"chromedriver": "latest",
"webdriverio": "^8.0.0"
},
"peerDependenciesMeta": {
"webdriverio": {
"optional": true
},
"chromedriver": {
"optional": false
}
},
"devDependencies": {
"@types/chromedriver": "^81.0.1",
"@types/download": "^8.0.2",
"@types/node": "^18.16.1",
"@types/vscode": "^1.77.0",
"@typescript-eslint/eslint-plugin": "^5.59.1",
"@typescript-eslint/parser": "^5.59.1",
"@wdio/cli": "^8.8.7",
"@wdio/globals": "^8.8.7",
"@wdio/local-runner": "^8.8.7",
"@wdio/mocha-framework": "^8.8.7",
"@wdio/spec-reporter": "^8.8.7",
"@wdio/types": "^8.8.7",
"chromedriver": "*",
"eslint": "^8.39.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-base-typescript": "^1.1.0",
"eslint-import-resolver-typescript": "^3.5.5",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-jest": "^27.2.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-unicorn": "^46.0.0",
"eslint-plugin-wdio": "^8.8.7",
"husky": "^8.0.3",
"npm-run-all": "^4.1.5",
"pkg": "^5.8.1",
"release-it": "^15.10.1",
"rimraf": "^3.0.2",
"ts-node": "^10.9.1",
"typedoc": "^0.24.6",
"typescript": "^5.0.4"
},
"files": [
"dist/*",
"src/server/fs-provider"
]
}