mirror of
https://github.com/codecov/codecov-action.git
synced 2025-12-09 20:36:25 +00:00
Bumps [@types/node](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node) from 18.15.12 to 18.16.3. - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases) - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/node) --- updated-dependencies: - dependency-name: "@types/node" 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>
46 lines
1.5 KiB
JSON
46 lines
1.5 KiB
JSON
{
|
|
"name": "codecov-action",
|
|
"version": "3.1.3",
|
|
"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.0",
|
|
"@actions/exec": "^1.1.1",
|
|
"@actions/github": "^5.1.1",
|
|
"node-fetch": "^3.3.1",
|
|
"openpgp": "5.8"
|
|
},
|
|
"devDependencies": {
|
|
"@types/jest": "^27.5.0",
|
|
"@types/node": "^18.16.3",
|
|
"@typescript-eslint/eslint-plugin": "^4.29.2",
|
|
"@typescript-eslint/parser": "^4.29.2",
|
|
"@vercel/ncc": "^0.36.1",
|
|
"eslint": "^7.32.0",
|
|
"eslint-config-google": "^0.14.0",
|
|
"jest": "^26.6.3",
|
|
"jest-junit": "^16.0.0",
|
|
"ts-jest": "^26.5.6",
|
|
"typescript": "^4.9.5"
|
|
}
|
|
}
|