UNPKG

@playwright-mocks/reporters

Version:

Single Playwright reporter for mock interceptor with configurable logging and HTML report generation utility

64 lines (63 loc) 2.13 kB
{ "name": "@playwright-mocks/reporters", "version": "1.6.8", "description": "Single Playwright reporter for mock interceptor with configurable logging and HTML report generation utility", "type": "module", "main": "dist/index.js", "types": "dist/index.d.ts", "files": [ "dist/**/*", "README.md" ], "scripts": { "reporters:build": "tsc && npm run copy-report-assets", "copy-report-assets": "powershell -Command \"New-Item -ItemType Directory -Force -Path dist/services/report-assets; Copy-Item -Force src/services/report-assets/report-style.css dist/services/report-assets/report-style.css\"", "reporters:dev": "tsc --watch", "reporters:clean": "rimraf dist", "reporters:lint": "eslint src/**/*.ts", "reporters:lint:fix": "eslint src/**/*.ts --fix", "reporters:prepublishOnly": "npm run reporters:clean && npm run reporters:build", "reporters:publish": "npm run reporters:prepublishOnly && npm publish", "reporters:publish:minor": "npm version minor && npm run reporters:publish", "reporters:publish:patch": "npm version patch && npm run reporters:publish" }, "keywords": [ "playwright", "mocks", "reporter", "testing", "api-mocking", "html-report", "console-report" ], "author": "Playwright Mocks Team", "license": "MIT", "repository": { "type": "git", "url": "https://github.com/playwright-mocks/reporters.git" }, "bugs": { "url": "https://github.com/playwright-mocks/reporters/issues" }, "homepage": "https://github.com/playwright-mocks/reporters#readme", "peerDependencies": { "@playwright/test": ">=1.40.0" }, "dependencies": { "@playwright-mocks/core": "2.0.20", "open": "^10.1.2" }, "devDependencies": { "@playwright/test": "^1.40.0", "@types/node": "^20.19.1", "@typescript-eslint/eslint-plugin": "^6.0.0", "@typescript-eslint/parser": "^6.0.0", "eslint": "^8.0.0", "rimraf": "^5.0.10", "typescript": "^5.0.0", "vitest": "^3.2.4" }, "engines": { "node": ">=18.0.0" } }