This repository was archived by the owner on Aug 3, 2023. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
86 lines (86 loc) · 2.34 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
{
"name": "wdio-edgedriver-service",
"version": "3.0.3",
"description": "WebdriverIO service to start & stop EdgeDriver",
"author": "Rafal Skorka",
"license": "MIT",
"homepage": "https://webdriver.io",
"keywords": [
"wdio",
"edgedriver",
"webdriver",
"wdio-plugin",
"wdio-service"
],
"repository": {
"type": "git",
"url": "git+https://github.com/webdriverio-community/wdio-edgedriver-service.git"
},
"bugs": {
"url": "https://github.com/webdriverio-community/wdio-edgedriver-service/issues"
},
"main": "./build/cjs/index.js",
"type": "module",
"module": "./build/index.js",
"exports": {
".": [
{
"import": "./build/index.js",
"require": "./build/cjs/index.js"
},
"./build/cjs/index.js"
]
},
"types": "./build/index.d.ts",
"typeScriptVersion": "3.8.3",
"engines": {
"node": "^16.13 || >=18"
},
"scripts": {
"build": "run-s clean compile copy",
"ci": "run-s test:lint build test",
"compile": "tsc --build tsconfig.json",
"copy": "cp src/cjs/package.json build/cjs",
"clean": "rimraf ./build",
"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:lint": "eslint src tests",
"test:e2e": "cd tests && npx wdio run ./wdio.conf.ts",
"watch": "npm run compile -- --watch"
},
"devDependencies": {
"@types/node": "^20.4.2",
"@typescript-eslint/eslint-plugin": "^6.0.0",
"@typescript-eslint/parser": "^6.0.0",
"@wdio/cli": "^8.13.1",
"@wdio/local-runner": "^8.13.1",
"@wdio/mocha-framework": "^8.12.1",
"@wdio/types": "^8.10.4",
"eslint": "^8.45.0",
"eslint-plugin-import": "^2.27.5",
"npm-run-all": "^4.1.5",
"release-it": "^16.1.2",
"ts-node": "^10.9.1",
"typescript": "^5.1.6",
"webdriverio": "^8.13.1"
},
"peerDependencies": {
"@wdio/types": "^7.0.0 || ^8.0.0"
},
"peerDependenciesMeta": {
"@wdio/types": {
"optional": true
}
},
"dependencies": {
"@wdio/logger": "^8.11.0",
"edgedriver": "^5.2.2",
"get-port": "^7.0.0",
"split2": "^4.2.0",
"wait-port": "^1.0.4"
}
}