mirror of
https://github.com/dorny/test-reporter.git
synced 2025-12-15 22:07:09 +01:00
Bumps [eslint](https://github.com/eslint/eslint) from 7.10.0 to 7.13.0. - [Release notes](https://github.com/eslint/eslint/releases) - [Changelog](https://github.com/eslint/eslint/blob/master/CHANGELOG.md) - [Commits](https://github.com/eslint/eslint/compare/v7.10.0...v7.13.0) Signed-off-by: dependabot[bot] <support@github.com>
49 lines
1.5 KiB
JSON
49 lines
1.5 KiB
JSON
{
|
|
"name": "test-check",
|
|
"version": "0.0.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 --source-map --license licenses.txt",
|
|
"test": "jest",
|
|
"all": "npm run build && npm run format && npm run lint && npm run package && npm test",
|
|
"dotnet-fixture": "dotnet test reports/dotnet/DotnetTests.XUnitTests --logger \"trx;LogFileName=../../../../__tests__/fixtures/dotnet-trx.trx\"",
|
|
"dart-fixture": "cd \"reports/dart\" && dart test --file-reporter=\"json:../../__tests__/fixtures/dart-json.json\"",
|
|
"jest-fixture": "cd \"reports/jest\" && npm test"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/dorny/test-check.git"
|
|
},
|
|
"keywords": [
|
|
"actions",
|
|
"node",
|
|
"test",
|
|
"report"
|
|
],
|
|
"author": "Michal Dorner <dorner.michal@gmail.com>",
|
|
"license": "MIT",
|
|
"dependencies": {
|
|
"@actions/core": "^1.2.6"
|
|
},
|
|
"devDependencies": {
|
|
"@types/jest": "^26.0.15",
|
|
"@types/node": "^14.14.6",
|
|
"@typescript-eslint/parser": "^4.7.0",
|
|
"@vercel/ncc": "^0.24.1",
|
|
"eslint": "^7.13.0",
|
|
"eslint-plugin-github": "^4.1.1",
|
|
"eslint-plugin-jest": "^24.0.2",
|
|
"jest": "^24.9.0",
|
|
"jest-circus": "^26.6.1",
|
|
"js-yaml": "^3.14.0",
|
|
"prettier": "2.1.2",
|
|
"ts-jest": "^24.3.0",
|
|
"typescript": "^4.0.3"
|
|
}
|
|
}
|