{ "name": "test-reporter", "version": "1.9.0", "private": true, "description": "Presents test results from popular testing frameworks as Github check run", "main": "lib/main.js", "scripts": { "build": "tsc", "format": "prettier --write **/*.ts", "format-check": "prettier --check **/*.ts", "lint": "eslint src/**/*.ts", "package": "ncc build --license licenses.txt && eolConverter lf 'dist/*'", "version": "npm run build && npm run package && git add dist/*", "test": "jest --ci --reporters=default --reporters=jest-junit", "jest:updatesnapshot": "jest --updateSnapshot", "all": "npm run build && npm run format && npm run lint && npm run package && npm test", "dart-fixture": "cd \"reports/dart\" && dart test --file-reporter=\"json:../../__tests__/fixtures/dart-json.json\"", "dotnet-fixture": "dotnet test reports/dotnet/DotnetTests.XUnitTests --logger \"trx;LogFileName=../../../../__tests__/fixtures/dotnet-trx.trx\"", "jest-fixture": "cd \"reports/jest\" && npm test", "mocha-fixture": "cd \"reports/mocha\" && npm test" }, "repository": { "type": "git", "url": "git+https://github.com/dorny/test-reporter.git" }, "keywords": [ "actions", "node", "test", "report" ], "author": "Michal Dorner ", "license": "MIT", "dependencies": { "@actions/core": "^1.10.1", "@actions/exec": "^1.1.1", "@actions/github": "^6.0.0", "adm-zip": "^0.5.12", "fast-glob": "^3.3.2", "got": "^11.8.6", "picomatch": "^4.0.2", "xml2js": "^0.6.2" }, "devDependencies": { "@octokit/types": "^12.4.0", "@octokit/webhooks": "^12.0.11", "@octokit/webhooks-types": "^7.3.1", "@types/adm-zip": "^0.5.5", "@types/github-slugger": "^1.3.0", "@types/jest": "^29.5.12", "@types/node": "^18.19.32", "@types/picomatch": "^2.3.3", "@types/xml2js": "^0.4.14", "@typescript-eslint/eslint-plugin": "^6.21.0", "@typescript-eslint/parser": "^6.21.0", "@vercel/ncc": "^0.38.1", "eol-converter-cli": "^1.0.8", "eslint": "^8.57.0", "eslint-import-resolver-typescript": "^3.6.1", "eslint-plugin-github": "^4.10.2", "eslint-plugin-import": "^2.29.1", "eslint-plugin-jest": "^27.9.0", "eslint-plugin-prettier": "^5.1.3", "jest": "^29.7.0", "jest-circus": "^29.7.0", "jest-junit": "^16.0.0", "js-yaml": "^4.1.0", "prettier": "^3.2.5", "ts-jest": "^29.1.2", "typescript": "^5.4.5" }, "jest-junit": { "suiteName": "jest tests", "outputDirectory": "__tests__/__results__", "outputName": "jest-junit.xml", "ancestorSeparator": " › ", "uniqueOutputName": "false", "suiteNameTemplate": "{filepath}", "classNameTemplate": "{classname}", "titleTemplate": "{title}" } }