This repository has been archived by the owner on Aug 3, 2023. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 26
/
package.json
96 lines (96 loc) · 2.5 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
{
"name": "wdio-chromedriver-service",
"version": "8.1.1",
"description": "WebdriverIO service to start & stop ChromeDriver",
"author": "Mattias Ekstrand <[email protected]>",
"homepage": "https://github.com/webdriverio-community/wdio-chromedriver-service#readme",
"license": "MIT",
"contributors": [
"Mattias Ekstrand <[email protected]>",
"Erwin Heitzman <[email protected]>",
"Christian Bromann <[email protected]>"
],
"repository": {
"type": "git",
"url": "git://github.com/webdriverio-community/wdio-chromedriver-service.git"
},
"bugs": {
"url": "https://github.com/webdriverio-community/wdio-chromedriver-service/issues"
},
"keywords": [
"webdriverio",
"wdio",
"wdio-service",
"chromedriver",
"tests"
],
"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",
"clean": "rimraf ./build",
"compile": "tsc --build tsconfig.json",
"copy": "shx cp src/cjs/package.json build/cjs",
"test": "run-s test:*",
"test:eslint": "eslint src tests",
"test:unit": "vitest",
"watch": "npm run compile -- --watch"
},
"peerDependencies": {
"@wdio/types": "^7.0.0 || ^8.0.0-alpha.219",
"chromedriver": "*",
"webdriverio": "^7.0.0 || ^8.0.0-alpha.219"
},
"peerDependenciesMeta": {
"chromedriver": {
"optional": true
},
"@wdio/types": {
"optional": true
},
"webdriverio": {
"optional": false
}
},
"dependencies": {
"@wdio/logger": "^8.1.0",
"fs-extra": "^11.1.0",
"split2": "^4.1.0",
"tcp-port-used": "^1.0.2"
},
"devDependencies": {
"@types/chromedriver": "^81.0.1",
"@types/fs-extra": "^11.0.1",
"@types/node": "^20.1.0",
"@types/split2": "^4.2.0",
"@types/tcp-port-used": "^1.0.1",
"@typescript-eslint/eslint-plugin": "^5.49.0",
"@typescript-eslint/parser": "^5.49.0",
"@wdio/globals": "^8.2.1",
"c8": "^8.0.0",
"chromedriver": "^115.0.0",
"eslint": "^8.32.0",
"eslint-plugin-import": "^2.27.5",
"npm-run-all": "^4.1.5",
"release-it": "^16.1.0",
"rimraf": "^5.0.0",
"shx": "^0.3.4",
"typescript": "^5.0.2",
"vitest": "0.30.1"
}
}