forked from webdriverio/devtools
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
55 lines (55 loc) · 1.48 KB
/
Copy pathpackage.json
File metadata and controls
55 lines (55 loc) · 1.48 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
{
"name": "@wdio/devtools-core",
"version": "1.0.0",
"private": true,
"description": "Framework-agnostic capture/reporter logic shared by @wdio/devtools-* adapters. Workspace-internal, never published — code is inlined into each consuming adapter at build time.",
"repository": {
"type": "git",
"url": "git+https://github.com/webdriverio/devtools.git",
"directory": "packages/core"
},
"type": "module",
"sideEffects": false,
"exports": {
".": {
"types": "./src/index.ts",
"default": "./src/index.ts"
},
"./*": {
"types": "./src/*.ts",
"default": "./src/*.ts"
},
"./locators": {
"types": "./src/locators/index.ts",
"default": "./src/locators/index.ts"
},
"./element-snapshot": {
"types": "./src/element-snapshot.ts",
"default": "./src/element-snapshot.ts"
},
"./element-scripts": {
"types": "./src/element-scripts.ts",
"default": "./src/element-scripts.ts"
},
"./element-types": {
"types": "./src/element-types.ts",
"default": "./src/element-types.ts"
}
},
"types": "./src/index.ts",
"scripts": {
"lint": "eslint . --fix"
},
"license": "MIT",
"devDependencies": {
"@types/ws": "^8.18.1",
"@types/yazl": "^2.4.6",
"@wdio/devtools-script": "workspace:*",
"@wdio/devtools-shared": "workspace:^",
"@xmldom/xmldom": "^0.9.8",
"stacktrace-parser": "^0.1.11",
"ws": "^8.21.0",
"xpath": "^0.0.34",
"yazl": "^2.5.1"
}
}