-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
61 lines (61 loc) · 1.42 KB
/
package.json
File metadata and controls
61 lines (61 loc) · 1.42 KB
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
{
"name": "@wdio/nightwatch-devtools",
"version": "1.0.1",
"description": "Nightwatch adapter for WebdriverIO DevTools - reuses existing backend, UI, and capture infrastructure",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/webdriverio/devtools.git",
"directory": "packages/nightwatch-devtools"
},
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.js"
}
},
"files": [
"dist",
"README.md"
],
"nightwatch": {
"plugin": true
},
"scripts": {
"build": "tsc",
"watch": "tsc --watch",
"clean": "rm -rf dist",
"lint": "eslint .",
"example": "nightwatch -c example/nightwatch.conf.cjs"
},
"keywords": [
"nightwatch",
"devtools",
"debugging",
"testing"
],
"author": "WebdriverIO Team",
"license": "MIT",
"dependencies": {
"@wdio/devtools-backend": "workspace:*",
"@wdio/devtools-script": "workspace:*",
"@wdio/logger": "^9.6.0",
"import-meta-resolve": "^4.2.0",
"stacktrace-parser": "^0.1.11",
"webdriverio": "^9.18.0",
"ws": "^8.18.3"
},
"devDependencies": {
"@types/node": "25.5.2",
"@types/ws": "^8.18.1",
"chromedriver": "^147.0.1",
"nightwatch": "^3.0.0",
"typescript": "^6.0.2"
},
"peerDependencies": {
"nightwatch": ">=3.0.0"
}
}