{ "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.6.0", "@actions/exec": "^1.1.1", "@actions/github": "^5.0.3", "node-fetch": "^3.2.3", "openpgp": "^5.2.1" }, "devDependencies": { "@types/jest": "^27.4.1", "@types/node": "^17.0.21", "@typescript-eslint/eslint-plugin": "^5.25.0", "@typescript-eslint/parser": "^5.25.0", "@vercel/ncc": "^0.33.3", "eslint": "^8.16.0", "eslint-config-google": "^0.14.0", "jest": "^27.5.1", "jest-junit": "^13.0.0", "ts-jest": "^27.1.4", "typescript": "^4.6.4" } }