| { |
| "name": "action-junit-report", |
| "version": "3.0.0", |
| "private": true, |
| "description": "junit report action", |
| "main": "lib/main.js", |
| "scripts": { |
| "build": "tsc", |
| "format": "prettier --write **/*.ts", |
| "format-check": "prettier --check **/*.ts", |
| "lint": "eslint src/**/*.ts", |
| "package": "ncc build --source-map --license licenses.txt", |
| "test": "jest", |
| "all": "npm run build && npm run format && npm run lint && npm run package && npm test" |
| }, |
| "repository": { |
| "type": "git", |
| "url": "git+https://github.com/mikepenz/action-junit-report" |
| }, |
| "bugs": { |
| "url": "https://github.com/mikepenz/action-junit-report/issues" |
| }, |
| "keywords": [ |
| "GitHub", |
| "Actions", |
| "Junit", |
| "test" |
| ], |
| "author": "Mike Penz", |
| "license": "Apache 2.0", |
| "dependencies": { |
| "@actions/core": "^1.10.0", |
| "@actions/github": "^5.1.0", |
| "@actions/glob": "^0.3.0", |
| "@octokit/rest": "^19.0.4", |
| "nock": "^13.2.9", |
| "webpack": "^5.74.0", |
| "xml-js": "^1.6.11" |
| }, |
| "devDependencies": { |
| "@types/jest": "^29.1.1", |
| "@types/node": "^18.7.23", |
| "@typescript-eslint/parser": "^5.38.1", |
| "@vercel/ncc": "^0.34.0", |
| "eslint": "^8.24.0", |
| "eslint-plugin-github": "^4.3.7", |
| "eslint-plugin-jest": "^27.0.4", |
| "jest": "^29.1.2", |
| "jest-circus": "^29.1.2", |
| "js-yaml": "^4.1.0", |
| "prettier": "^2.7.1", |
| "ts-jest": "^29.0.3", |
| "typescript": "^4.8.4" |
| } |
| } |