playwright-testmo-reporter
Version:
A Playwright Reporter for the Testmo SaaS.
72 lines (71 loc) • 1.91 kB
JSON
{
"name": "playwright-testmo-reporter",
"version": "1.15.0",
"description": "A Playwright Reporter for the Testmo SaaS.",
"main": "dist/reporter.js",
"module": "dist/reporter.mjs",
"types": "dist/reporter.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "tsup src/reporter.ts --format cjs,esm --dts",
"build:watch": "tsup src/reporter.ts --format cjs,esm --dts --watch",
"test": "jest",
"format": "prettier --write .",
"lint": "eslint --fix .",
"prepare": "husky",
"release": "npm run build && changeset publish"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jonasclaes/playwright-testmo-reporter.git"
},
"publishConfig": {
"access": "public",
"provenance": true
},
"keywords": [
"playwright",
"testmo",
"reporter"
],
"author": "Jonas Claes <jonas@jonasclaes.be>",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/jonasclaes/playwright-testmo-reporter/issues"
},
"homepage": "https://github.com/jonasclaes/playwright-testmo-reporter#readme",
"peerDependencies": {
"@playwright/test": "^1.36.2",
"playwright-core": "^1.36.2"
},
"dependencies": {
"colors": "^1.4.0",
"fast-xml-parser": "^5.0.9",
"stack-utils": "^2.0.6"
},
"devDependencies": {
"@changesets/cli": "^2.28.1",
"@eslint/js": "^9.17.0",
"@types/jest": "^29.5.14",
"@types/node": "^22.10.3",
"@types/stack-utils": "^2.0.3",
"eslint": "^9.17.0",
"eslint-config-prettier": "^10.1.1",
"globals": "^16.0.0",
"husky": "^9.1.7",
"jest": "^29.7.0",
"lint-staged": "^15.3.0",
"prettier": "^3.4.2",
"ts-jest": "^29.2.6",
"ts-node": "^10.9.2",
"tsup": "^8.4.0",
"typescript": "^5.7.2",
"typescript-eslint": "^8.19.0"
},
"lint-staged": {
"**/*": "prettier --write --ignore-unknown",
"*.{js,ts}": "eslint --fix"
}
}