UNPKG

pomwright

Version:

POMWright is a complementary test framework for Playwright written in TypeScript.

60 lines 1.51 kB
{ "name": "pomwright", "version": "1.2.0", "description": "POMWright is a complementary test framework for Playwright written in TypeScript.", "repository": { "type": "git", "url": "https://github.com/DyHex/POMWright" }, "homepage": "https://github.com/DyHex/POMWright#readme", "bugs": { "url": "https://github.com/DyHex/POMWright/issues" }, "author": { "name": "Magnus Blütecher Dysthe" }, "license": "Apache 2.0", "main": "dist/index.js", "module": "dist/index.mjs", "types": "dist/index.d.ts", "keywords": [ "Playwright", "POM", "Page Object Model", "Locator", "Chaining", "Nesting", "LocatorSchema", "SessionStorage", "Test", "Test Framework", "E2E", "End-to-End Testing", "Automation", "Browser Automation", "Web Testing", "Logging", "Log Levels", "TypeScript" ], "devDependencies": { "@biomejs/biome": "^1.9.2", "@changesets/changelog-github": "^0.5.0", "@changesets/cli": "^2.27.8", "@types/node": "^20.16.6", "tsup": "^8.3.0", "typescript": "^5.6.2", "vitest": "^2.1.1" }, "peerDependencies": { "@playwright/test": ">=1.41.0 <1.42.0 || >=1.43.0 <2.0.0" }, "scripts": { "build": "tsup index.ts --format cjs,esm --dts", "release": "pnpm run build && changeset publish", "lint": "biome check ./src", "format": "biome format ./src --write", "pack-test": "bash pack-test.sh", "test": "vitest run && bash pack-test.sh" } }