UNPKG

flexpect

Version:

Automated layout validation tool using Playwright. Ensures responsive design accuracy across multiple viewports by inspecting element positions and visual alignment.

90 lines (89 loc) 2.38 kB
{ "name": "flexpect", "version": "0.21.0", "description": "Automated layout validation tool using Playwright. Ensures responsive design accuracy across multiple viewports by inspecting element positions and visual alignment.", "main": "dist/index.mjs", "types": "dist/index.d.mts", "files": [ "dist" ], "exports": { ".": { "import": "./dist/index.mjs", "types": "./dist/index.d.mts" } }, "scripts": { "build": "tsup --tsconfig tsconfig.build.json", "docs": "typedoc", "format": "prettier --write .", "format:check": "prettier --check .", "lint": "eslint src/", "precommit": "lint-staged", "prepare": "husky", "test": "jest ", "test:ui": "playwright test" }, "repository": { "type": "git", "url": "git+https://github.com/cyrilschumacher/flexpect.git" }, "keywords": [ "playwright", "layout", "responsive", "viewport", "css", "testing", "automation", "visual-regression", "ui-testing", "pixel-perfect", "design-validation", "headless-browser", "web-testing", "frontend", "tooling" ], "author": "Cyril Schumacher", "license": "MIT", "bugs": { "url": "https://github.com/cyrilschumacher/flexpect/issues" }, "homepage": "https://github.com/cyrilschumacher/flexpect#readme", "devDependencies": { "@commitlint/cli": "^20.1.0", "@commitlint/config-conventional": "^20.0.0", "@eslint/js": "^9.34.0", "@playwright/test": "^1.55.0", "@semantic-release/changelog": "^6.0.3", "@semantic-release/commit-analyzer": "^13.0.1", "@semantic-release/git": "^10.0.1", "@semantic-release/github": "^11.0.4", "@semantic-release/npm": "^13.1.1", "@types/jest": "^30.0.0", "@types/jest-when": "^3.5.5", "@types/node": "^24.2.1", "conventional-changelog-conventionalcommits": "^9.1.0", "eslint": "^9.34.0", "husky": "^9.1.7", "jest": "^30.2.0", "jest-junit": "^16.0.0", "jest-when": "^3.7.0", "lint-staged": "^16.2.3", "prettier": "^3.6.2", "semantic-release": "^25.0.2", "ts-jest": "^29.4.4", "ts-node": "^10.9.2", "tsup": "^8.5.0", "typedoc": "^0.28.13", "typescript": "^5.9.2", "typescript-eslint": "^8.40.0" }, "lint-staged": { "**/*.{ts,tsx,js,jsx}": [ "eslint --fix", "prettier --write" ] } }