2019-11-13 23:41:15 -08:00
|
|
|
{
|
2019-12-05 22:19:41 -08:00
|
|
|
"name": "codecov-action",
|
2023-05-15 16:48:57 -04:00
|
|
|
"version": "3.1.4",
|
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-02-08 16:19:58 -05:00
|
|
|
"@actions/core": "^1.10.0",
|
2022-04-04 21:01:41 +00:00
|
|
|
"@actions/exec": "^1.1.1",
|
2023-02-08 16:20:36 -05:00
|
|
|
"@actions/github": "^5.1.1",
|
2023-03-22 22:03:09 -04:00
|
|
|
"node-fetch": "^3.3.1",
|
2023-04-19 22:08:19 -07:00
|
|
|
"openpgp": "5.8"
|
2020-03-04 18:30:14 -08:00
|
|
|
},
|
2021-01-02 17:50:17 -05:00
|
|
|
"devDependencies": {
|
2022-05-03 04:02:40 +00:00
|
|
|
"@types/jest": "^27.5.0",
|
2023-05-15 16:34:30 -04:00
|
|
|
"@types/node": "^20.1.4",
|
2021-08-20 18:31:30 +00:00
|
|
|
"@typescript-eslint/eslint-plugin": "^4.29.2",
|
2021-08-17 04:02:30 +00:00
|
|
|
"@typescript-eslint/parser": "^4.29.2",
|
2023-02-08 15:52:24 -05:00
|
|
|
"@vercel/ncc": "^0.36.1",
|
2021-08-12 20:07:59 +00:00
|
|
|
"eslint": "^7.32.0",
|
2021-06-10 22:15:00 -04:00
|
|
|
"eslint-config-google": "^0.14.0",
|
|
|
|
|
"jest": "^26.6.3",
|
2023-04-19 22:07:58 -07:00
|
|
|
"jest-junit": "^16.0.0",
|
2021-06-10 22:15:00 -04:00
|
|
|
"ts-jest": "^26.5.6",
|
2023-02-08 16:03:04 -05:00
|
|
|
"typescript": "^4.9.5"
|
2021-01-02 17:50:17 -05:00
|
|
|
}
|
2019-11-13 23:41:15 -08:00
|
|
|
}
|