-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
73 lines (73 loc) · 1.74 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
{
"name": "@wdio/jsonwp-service",
"version": "0.1.0",
"description": "A WebdriverIO service that enables JSONWireProtocol commands for your session.",
"homepage": "https://webdriver.io",
"license": "MIT",
"author": {
"name": "Christian Bromann",
"email": "[email protected]",
"url": "https://bromann.dev"
},
"keywords": [
"webdriver",
"webdriverio",
"wdio",
"wdio-service"
],
"repository": {
"type": "git",
"url": "git://github.com/webdriverio-community/wdio-jsonwp-service.git"
},
"type": "module",
"types": "./dist/index.d.ts",
"exports": {
".": [
{
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
}
]
},
"scripts": {
"build": "tsc -b .",
"clean": "rimraf ./node_modules package-lock.yaml ./dist",
"install": "test -f ./dist/install.js && node ./dist/install.js || echo \"Skipping install, project not build!\"",
"test": "run-s test:*",
"test:lint": "eslint .",
"test:unit": "vitest --run",
"watch": "npm run build -- --watch"
},
"devDependencies": {
"@types/node": "^20.14.6",
"@vitest/coverage-v8": "^2.1.5",
"@wdio/eslint": "^0.0.5",
"eslint": "^9.15.0",
"husky": "^9.1.7",
"npm-run-all2": "^7.0.1",
"release-it": "^18.1.1",
"typescript": "^5.6.3",
"vitest": "^2.1.5",
"wait-port": "^1.1.0",
"webdriverio": "*"
},
"dependencies": {
"@wdio/types": "^9.2.2"
},
"peerDependencies": {
"@wdio/protocols": "^8.x || ^9.x",
"webdriver": "^8.x || ^9.x",
"webdriverio": "^8.x || ^9.x"
},
"peerDependenciesMeta": {
"webdriverio": {
"optional": true
},
"webdriver": {
"optional": false
}
},
"publishConfig": {
"access": "public"
}
}