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 4
/
package.json
98 lines (98 loc) · 2.77 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
{
"name": "wdio-geckodriver-service",
"version": "5.0.2",
"description": "WebdriverIO service to start & stop GeckoDriver",
"author": "Rafal Skorka",
"license": "MIT",
"homepage": "https://github.com/webdriverio-community/wdio-geckodriver-service#readme",
"keywords": [
"wdio",
"geckodriver",
"webdriver",
"wdio-plugin",
"wdio-service"
],
"repository": {
"type": "git",
"url": "git+https://github.com/webdriverio-community/wdio-geckodriver-service.git"
},
"bugs": {
"url": "https://github.com/webdriverio-community/wdio-geckodriver-service/issues"
},
"main": "./dist/cjs/index.js",
"type": "module",
"module": "./dist/index.js",
"exports": {
".": [
{
"import": "./dist/index.js",
"require": "./dist/cjs/index.js"
},
"./dist/cjs/index.js"
]
},
"types": "./dist/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",
"clean": "rimraf ./dist",
"copy": "cp src/cjs/package.json dist/cjs",
"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 test",
"test:e2e": "cd test && 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-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-node": "^11.1.0",
"eslint-plugin-promise": "^6.1.1",
"eslint-plugin-wdio": "^8.8.7",
"geckodriver": "^4.0.5",
"husky": "^8.0.3",
"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",
"webdriverio": "^8.0.0"
},
"peerDependenciesMeta": {
"@wdio/types": {
"optional": true
},
"webdriverio": {
"optional": false
}
},
"dependencies": {
"@wdio/logger": "^8.11.0",
"fs-extra": "^11.1.1",
"geckodriver": "^4.0.5",
"get-port": "^7.0.0",
"wait-port": "^1.0.4"
}
}