-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
87 lines (87 loc) · 2.58 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
{
"name": "wdio-wait-for",
"version": "3.0.10",
"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": "^16.13 || >=18"
},
"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 src tests",
"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.2",
"@typescript-eslint/eslint-plugin": "^6.11.0",
"@typescript-eslint/parser": "^6.11.0",
"@wdio/cli": "^8.23.1",
"@wdio/jasmine-framework": "^8.23.1",
"@wdio/local-runner": "^8.23.1",
"@wdio/spec-reporter": "^8.23.1",
"chromedriver": "*",
"eslint": "^8.54.0",
"eslint-plugin-import": "^2.29.0",
"eslint-plugin-unicorn": "^49.0.0",
"npm-run-all": "^4.1.5",
"release-it": "^17.0.0",
"ts-node": "^10.9.1",
"typedoc": "^0.25.3",
"typedoc-plugin-markdown": "^3.17.1",
"typescript": "^5.2.2",
"wdio-chromedriver-service": "^8.1.1",
"webdriverio": "^8.23.1"
}
}