mirror of
https://github.com/codecov/codecov-action.git
synced 2025-12-08 08:06:27 +00:00
Bumps [@typescript-eslint/eslint-plugin](https://github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/eslint-plugin) from 4.22.0 to 4.22.1. - [Release notes](https://github.com/typescript-eslint/typescript-eslint/releases) - [Changelog](https://github.com/typescript-eslint/typescript-eslint/blob/master/packages/eslint-plugin/CHANGELOG.md) - [Commits](https://github.com/typescript-eslint/typescript-eslint/commits/v4.22.1/packages/eslint-plugin) Signed-off-by: dependabot[bot] <support@github.com>
46 lines
1.5 KiB
JSON
46 lines
1.5 KiB
JSON
{
|
|
"name": "codecov-action",
|
|
"version": "1.5.0",
|
|
"description": "Upload coverage reports to Codecov from GitHub Actions",
|
|
"main": "index.js",
|
|
"scripts": {
|
|
"lint": "eslint src/*.*",
|
|
"test": "yarn run test-script && yarn run test-calculator && yarn 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",
|
|
"build": "ncc build src/index.ts"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/codecov/codecov-action.git"
|
|
},
|
|
"keywords": [],
|
|
"author": "Ibrahim Ali",
|
|
"license": "MIT",
|
|
"bugs": {
|
|
"url": "https://github.com/codecov/codecov-action/issues"
|
|
},
|
|
"homepage": "https://github.com/codecov/codecov-action#readme",
|
|
"dependencies": {
|
|
"@actions/core": "^1.2.7",
|
|
"@actions/exec": "^1.0.4",
|
|
"@actions/github": "^4.0.0",
|
|
"@types/jest": "^26.0.23",
|
|
"@zeit/ncc": "^0.22.3",
|
|
"fs": "0.0.1-security",
|
|
"jest": "^26.6.3",
|
|
"jest-junit": "^12.0.0",
|
|
"request": "^2.88.2",
|
|
"ts-jest": "^26.5.6",
|
|
"typescript": "^4.2.4",
|
|
"yarn": "^1.22.10"
|
|
},
|
|
"devDependencies": {
|
|
"@typescript-eslint/eslint-plugin": "^4.22.1",
|
|
"@typescript-eslint/parser": "^4.22.1",
|
|
"eslint": "^7.25.0",
|
|
"eslint-config-google": "^0.14.0"
|
|
}
|
|
}
|