2019-11-13 23:41:15 -08:00
|
|
|
{
|
2019-12-05 22:19:41 -08:00
|
|
|
"name": "codecov-action",
|
2024-06-13 01:59:44 +08:00
|
|
|
"version": "4.5.0",
|
2019-12-05 22:19:41 -08:00
|
|
|
"description": "Upload coverage reports to Codecov from GitHub Actions",
|
2019-11-13 23:41:15 -08:00
|
|
|
"main": "index.js",
|
|
|
|
|
"scripts": {
|
2021-07-19 08:16:44 -07:00
|
|
|
"build": "ncc build src/index.ts --source-map",
|
2021-06-24 10:50:37 -04:00
|
|
|
"lint": "eslint src/**/*.ts",
|
2021-06-14 07:18:38 -04:00
|
|
|
"test": "npm run test-script && npm run test-calculator && npm run test-coverage",
|
2021-01-02 18:02:41 -05:00
|
|
|
"test-calculator": "jest --testPathPattern=demo/calculator/ --coverage --coverageDirectory=coverage/calculator",
|
2021-01-02 18:19:58 -05:00
|
|
|
"test-coverage": "jest --testPathPattern=demo/coverage-test/ --coverage --coverageDirectory=coverage/coverage-test",
|
2021-06-24 10:50:37 -04:00
|
|
|
"test-script": "jest --testPathPattern=src/ --coverage --coverageDirectory=coverage/script"
|
2019-11-13 23:41:15 -08:00
|
|
|
},
|
|
|
|
|
"repository": {
|
|
|
|
|
"type": "git",
|
|
|
|
|
"url": "git+https://github.com/codecov/codecov-action.git"
|
|
|
|
|
},
|
|
|
|
|
"keywords": [],
|
2022-04-04 16:14:50 -04:00
|
|
|
"author": "Codecov",
|
2020-03-04 18:30:14 -08:00
|
|
|
"license": "MIT",
|
2019-11-13 23:41:15 -08:00
|
|
|
"bugs": {
|
|
|
|
|
"url": "https://github.com/codecov/codecov-action/issues"
|
|
|
|
|
},
|
|
|
|
|
"homepage": "https://github.com/codecov/codecov-action#readme",
|
|
|
|
|
"dependencies": {
|
2023-09-12 11:20:19 -07:00
|
|
|
"@actions/core": "^1.10.1",
|
2022-04-04 21:01:41 +00:00
|
|
|
"@actions/exec": "^1.1.1",
|
2023-10-11 00:59:40 -07:00
|
|
|
"@actions/github": "^6.0.0",
|
2024-04-09 10:54:18 -07:00
|
|
|
"undici": "5.28.4"
|
2020-03-04 18:30:14 -08:00
|
|
|
},
|
2021-01-02 17:50:17 -05:00
|
|
|
"devDependencies": {
|
2024-08-13 18:17:35 +03:00
|
|
|
"@octokit/webhooks-types": "^7.5.1",
|
2024-09-13 16:31:06 +03:00
|
|
|
"@types/jest": "^29.5.13",
|
2024-10-01 09:44:31 -05:00
|
|
|
"@typescript-eslint/eslint-plugin": "^8.8.0",
|
|
|
|
|
"@typescript-eslint/parser": "^8.8.0",
|
2024-09-24 07:06:03 -05:00
|
|
|
"@vercel/ncc": "^0.38.2",
|
2024-09-17 19:26:56 +03:00
|
|
|
"eslint": "^8.57.1",
|
2021-06-10 22:15:00 -04:00
|
|
|
"eslint-config-google": "^0.14.0",
|
2023-09-13 17:43:32 -07:00
|
|
|
"jest": "^29.7.0",
|
2023-04-19 22:07:58 -07:00
|
|
|
"jest-junit": "^16.0.0",
|
2024-09-05 20:01:17 +03:00
|
|
|
"ts-jest": "^29.2.5",
|
2024-09-10 12:01:09 +03:00
|
|
|
"typescript": "^5.6.2"
|
2021-01-02 17:50:17 -05:00
|
|
|
}
|
2019-11-13 23:41:15 -08:00
|
|
|
}
|