mirror of
https://github.com/codecov/codecov-action.git
synced 2026-02-08 03:57:26 +00:00
45 lines
1.5 KiB
JSON
45 lines
1.5 KiB
JSON
{
|
|
"name": "codecov-action",
|
|
"version": "2.1.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": "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.10.0",
|
|
"@actions/exec": "^1.1.1",
|
|
"@actions/github": "^5.1.1",
|
|
"node-fetch": "^3.3.0",
|
|
"openpgp": "^5.5.0"
|
|
},
|
|
"devDependencies": {
|
|
"@types/jest": "^27.4.1",
|
|
"@types/node": "^18.13.0",
|
|
"@typescript-eslint/eslint-plugin": "^5.42.1",
|
|
"@typescript-eslint/parser": "^5.52.0",
|
|
"@vercel/ncc": "^0.36.1",
|
|
"eslint": "^8.34.0",
|
|
"eslint-config-google": "^0.14.0",
|
|
"jest": "^27.5.1",
|
|
"jest-junit": "^15.0.0",
|
|
"ts-jest": "^27.1.4",
|
|
"typescript": "^4.9.5"
|
|
}
|
|
}
|