pw-simple-testrail-reporter
Version:
Report Playwright test results to TestRail
60 lines (59 loc) • 1.58 kB
JSON
{
"name": "pw-simple-testrail-reporter",
"version": "1.2.1",
"description": "Report Playwright test results to TestRail",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"/lib"
],
"scripts": {
"build": "tsc --build tsconfig.json",
"clean": "rimraf ./lib",
"lint": "eslint -c ./eslintrc.json 'src/**/*.{ts,tsx}'",
"lint:fix": "eslint 'src/**/*.{ts,tsx}' --fix",
"test": "jest",
"test:playwright": "npx playwright test --config=./tests/playwright.config.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ikoral/playwright-testrail-reporter.git"
},
"keywords": [
"playwright",
"testrail",
"reporter",
"reporter-testrail",
"playwright-testrail"
],
"author": "Ilhan Koral",
"license": "MIT",
"dependencies": {
"@dlenroc/testrail": "^1.9.1",
"@playwright/test": "^1.42.1",
"chalk": "^4.1.2",
"json-stringify-safe": "^5.0.1"
},
"devDependencies": {
"@types/jest": "^29.5.12",
"@types/json-stringify-safe": "^5.0.3",
"@types/node": "^20.11.30",
"@typescript-eslint/eslint-plugin": "^7.4.0",
"@typescript-eslint/parser": "^7.4.0",
"dotenv": "^16.4.5",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"jest": "^29.7.0",
"npm-run-all": "^4.1.5",
"playwright": "^1.42.1",
"prettier": "^3.2.5",
"rimraf": "^5.0.5",
"ts-jest": "^29.1.2",
"ts-node": "^10.9.2",
"typescript": "^5.4.3"
},
"publishConfig": {
"access": "public"
}
}