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 3
/
package.json
108 lines (108 loc) · 3.15 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
{
"name": "wdio-safaridriver-service",
"version": "2.1.1",
"description": "WebdriverIO service to start & stop Safaridriver",
"author": "Adrien Ruiz Gauder <caritsqa@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/webdriverio-community/wdio-safaridriver-service/issues"
},
"homepage": "https://github.com/webdriverio-community/wdio-safaridriver-service#readme",
"contributors": [
"Adrien Ruiz Gauder <caritsqa@gmail.com>",
"Rafal Skorka",
"Mattias Ekstrand <mattias.ekstrand@gmail.com>",
"Christian Bromann <christian@saucelabs.com>"
],
"repository": {
"type": "git",
"url": "git+https://github.com/webdriverio-community/wdio-safaridriver-service.git"
},
"keywords": [
"wdio",
"wdio-service",
"safaridriver",
"webdriverio",
"webdriver"
],
"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": "tsc -b .",
"ci": "run-s lint build test",
"clean": "rimraf ./node_modules package-lock.yaml ./dist",
"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",
"test:e2e": "npx wdio run ./test/wdio.conf.ts",
"watch": "npm run build -- --watch"
},
"devDependencies": {
"@types/fs-extra": "^11.0.1",
"@types/mocha": "^10.0.1",
"@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/spec-reporter": "^8.12.2",
"@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",
"husky": "^8.0.3",
"npm-run-all": "^4.1.5",
"release-it": "^16.1.2",
"rimraf": "^5.0.1",
"ts-node": "^10.9.1",
"typescript": "^5.1.6"
},
"dependencies": {
"@types/split2": "^4.2.0",
"@types/tcp-port-used": "^1.0.1",
"@wdio/logger": "^8.11.0",
"fs-extra": "^11.1.1",
"safaridriver": "^0.1.0",
"split2": "^4.2.0",
"tcp-port-used": "^1.0.2"
},
"peerDependencies": {
"@wdio/types": "^7.0.0 || ^8.0.0-alpha.219",
"webdriverio": "^7.0.0 || ^8.0.0-alpha.219"
},
"peerDependenciesMeta": {
"@wdio/types": {
"optional": true
},
"webdriverio": {
"optional": false
}
}
}