wdio-wait-for
Version:
a library of conditions that are useful for end-to-end tests
85 lines (84 loc) • 2.51 kB
JSON
{
"name": "wdio-wait-for",
"version": "3.1.0",
"license": "MIT",
"description": "a library of conditions that are useful for end-to-end tests",
"author": "Yevhen Laichenkov <elaichenkov@gmail.com>",
"contributors": [
"Christian Bromann <mail@bromann.dev>"
],
"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.7.2",
"@wdio/eslint": "^0.0.5",
"@wdio/jasmine-framework": "9.7.2",
"@wdio/local-runner": "9.7.2",
"@wdio/spec-reporter": "9.6.3",
"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.7.2"
}
}