-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
84 lines (84 loc) · 2.45 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
{
"name": "wdio-wait-for",
"version": "3.0.11",
"license": "MIT",
"description": "a library of conditions that are useful for end-to-end tests",
"author": "Yevhen Laichenkov <[email protected]>",
"contributors": [
"Christian Bromann <[email protected]>"
],
"homepage": "https://github.com/webdriverio/wdio-wait-for",
"repository": {
"type": "git",
"url": "git+https://github.com/webdriverio/wdio-wait-for.git"
},
"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": ">=18 || >=20 || >=22"
},
"keywords": [
"wdio",
"webdriverio",
"webdriver.io",
"selenium",
"waitUntil",
"expectedConditions",
"wait",
"for",
"expected",
"conditions",
"e2e",
"testing"
],
"scripts": {
"prepare": "npm run build",
"prepublishOnly": "npm test && npm run test:lint",
"build": "run-s build:*",
"build:compile": "tsc",
"build:copy": "cp src/cjs/package.json dist/cjs/package.json",
"doc": "typedoc --readme none --exclude '**/*+(index|.spec|.e2e).ts' src/**/*.ts",
"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 .",
"test:e2e": "run-s test:e2e:*",
"test:e2e:standard": "npx wdio run tests/wdio.conf.ts",
"test:e2e:multiremote": "npx wdio run tests/wdio.multiremote.conf.ts",
"test:interop": "node tests/interop/test.js",
"watch": "npm run build:compile -- --watch"
},
"devDependencies": {
"@types/jasmine": "^5.1.4",
"@typescript-eslint/eslint-plugin": "^8.6.0",
"@typescript-eslint/parser": "^8.6.0",
"@wdio/cli": "9.5.7",
"@wdio/eslint": "^0.0.5",
"@wdio/jasmine-framework": "9.5.7",
"@wdio/local-runner": "9.5.7",
"@wdio/spec-reporter": "9.5.0",
"eslint": "^9.15.0",
"npm-run-all2": "^7.0.1",
"release-it": "^18.0.0",
"ts-node": "^10.9.2",
"typedoc": "^0.27.4",
"typedoc-plugin-markdown": "^4.2.8",
"typescript": "^5.6.2",
"webdriverio": "9.5.7"
}
}