@guidepup/playwright
Version:
Screen reader driver for Playwright tests.
67 lines (66 loc) • 2.56 kB
JSON
{
"name": "@guidepup/playwright",
"version": "0.14.2",
"description": "Screen reader driver for Playwright tests.",
"main": "lib/index.js",
"typings": "lib/index.d.ts",
"author": "Craig Morten <craig.morten@hotmail.co.uk>",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/guidepup/guidepup-playwright"
},
"bugs": {
"url": "https://github.com/guidepup/guidepup-playwright/issues"
},
"homepage": "https://github.com/guidepup/guidepup-playwright",
"keywords": [
"playwright",
"screen reader",
"screen-reader",
"accessibility",
"a11y",
"voiceover",
"nvda",
"guidepup"
],
"scripts": {
"build": "yarn clean && yarn compile",
"ci": "yarn clean && yarn lint && yarn build",
"clean": "rimraf lib test-results recordings",
"compile": "tsc",
"lint": "eslint . --ext .ts",
"lint:fix": "yarn lint --fix",
"prepublish": "yarn build",
"pretest": "npx playwright install chromium firefox webkit",
"test:nvda": "yarn test:nvda:chromium && yarn test:nvda:firefox",
"test:voiceover": "yarn test:voiceover:chromium && yarn test:voiceover:firefox && yarn test:voiceover:webkit",
"test:nvda:chromium": "playwright test --config ./examples/playwright-nvda/chromium.config.ts ./examples/playwright-nvda/tests/chromium/",
"test:nvda:firefox": "playwright test --config ./examples/playwright-nvda/firefox.config.ts ./examples/playwright-nvda/tests/firefox/",
"test:voiceover:chromium": "playwright test --config ./examples/playwright-voiceover/chromium.config.ts ./examples/playwright-voiceover/tests/chromium/",
"test:voiceover:firefox": "playwright test --config ./examples/playwright-voiceover/firefox.config.ts ./examples/playwright-voiceover/tests/firefox/",
"test:voiceover:webkit": "playwright test --config ./examples/playwright-voiceover/webkit.config.ts ./examples/playwright-voiceover/tests/webkit/"
},
"devDependencies": {
"@guidepup/guidepup": "^0.24.0",
"@guidepup/record": "^0.1.0",
"@playwright/test": "^1.47.1",
"@types/node": "^22.5.5",
"@typescript-eslint/eslint-plugin": "^8.5.0",
"@typescript-eslint/parser": "^8.5.0",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"rimraf": "^6.0.1",
"ts-node": "^10.9.2",
"typedoc": "^0.26.7",
"typescript": "^5.6.2"
},
"peerDependencies": {
"@guidepup/guidepup": ">=0.22.1",
"@playwright/test": "^1.40.1"
},
"resolutions": {
"strip-ansi": "6.0.1",
"string-width": "4.1.0"
}
}