mirror of
https://github.com/codecov/codecov-action.git
synced 2025-12-08 08:06:27 +00:00
Bumps [typescript](https://github.com/Microsoft/TypeScript) from 5.4.5 to 5.5.2. - [Release notes](https://github.com/Microsoft/TypeScript/releases) - [Changelog](https://github.com/microsoft/TypeScript/blob/main/azure-pipelines.release.yml) - [Commits](https://github.com/Microsoft/TypeScript/compare/v5.4.5...v5.5.2) --- updated-dependencies: - dependency-name: typescript dependency-type: direct:development update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
44 lines
1.5 KiB
JSON
44 lines
1.5 KiB
JSON
{
|
|
"name": "codecov-action",
|
|
"version": "4.5.0",
|
|
"description": "Upload coverage reports to Codecov from GitHub Actions",
|
|
"main": "index.js",
|
|
"scripts": {
|
|
"build": "ncc build src/index.ts --source-map",
|
|
"lint": "eslint src/**/*.ts",
|
|
"test": "npm run test-script && npm run test-calculator && npm run test-coverage",
|
|
"test-calculator": "jest --testPathPattern=demo/calculator/ --coverage --coverageDirectory=coverage/calculator",
|
|
"test-coverage": "jest --testPathPattern=demo/coverage-test/ --coverage --coverageDirectory=coverage/coverage-test",
|
|
"test-script": "jest --testPathPattern=src/ --coverage --coverageDirectory=coverage/script"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/codecov/codecov-action.git"
|
|
},
|
|
"keywords": [],
|
|
"author": "Codecov",
|
|
"license": "MIT",
|
|
"bugs": {
|
|
"url": "https://github.com/codecov/codecov-action/issues"
|
|
},
|
|
"homepage": "https://github.com/codecov/codecov-action#readme",
|
|
"dependencies": {
|
|
"@actions/core": "^1.10.1",
|
|
"@actions/exec": "^1.1.1",
|
|
"@actions/github": "^6.0.0",
|
|
"undici": "5.28.4"
|
|
},
|
|
"devDependencies": {
|
|
"@types/jest": "^29.5.12",
|
|
"@typescript-eslint/eslint-plugin": "^7.13.1",
|
|
"@typescript-eslint/parser": "^7.13.1",
|
|
"@vercel/ncc": "^0.38.1",
|
|
"eslint": "^8.57.0",
|
|
"eslint-config-google": "^0.14.0",
|
|
"jest": "^29.7.0",
|
|
"jest-junit": "^16.0.0",
|
|
"ts-jest": "^29.1.5",
|
|
"typescript": "^5.5.2"
|
|
}
|
|
}
|