2019-11-13 23:41:15 -08:00
|
|
|
{
|
2019-12-05 22:19:41 -08:00
|
|
|
"name": "codecov-action",
|
2020-10-16 18:27:17 -04:00
|
|
|
"version": "1.0.14",
|
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": {
|
2020-07-09 23:05:11 -04:00
|
|
|
"test": "jest --coverage",
|
|
|
|
|
"test-calculator": "jest --testPathPattern=src/calculator/ --coverage --coverageDirectory=coverage/calculator",
|
|
|
|
|
"test-index": "jest --testPathPattern=src/index --coverage --coverageDirectory=coverage/index",
|
|
|
|
|
"test-all": "yarn run test && yarn run test-calculator && yarn run test-index",
|
2019-12-05 22:19:41 -08:00
|
|
|
"build": "ncc build index.js"
|
2019-11-13 23:41:15 -08:00
|
|
|
},
|
|
|
|
|
"repository": {
|
|
|
|
|
"type": "git",
|
|
|
|
|
"url": "git+https://github.com/codecov/codecov-action.git"
|
|
|
|
|
},
|
|
|
|
|
"keywords": [],
|
2020-03-04 18:30:14 -08:00
|
|
|
"author": "Ibrahim Ali",
|
|
|
|
|
"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": {
|
2020-09-24 06:56:43 +00:00
|
|
|
"@actions/core": "^1.2.6",
|
2020-08-25 12:11:38 +00:00
|
|
|
"@actions/exec": "^1.0.4",
|
2020-09-17 06:50:58 +00:00
|
|
|
"@types/jest": "^26.0.14",
|
2020-07-01 15:35:39 -04:00
|
|
|
"@zeit/ncc": "^0.22.3",
|
2019-11-18 23:39:04 -08:00
|
|
|
"fs": "0.0.1-security",
|
2020-10-12 06:54:17 +00:00
|
|
|
"jest": "^26.5.3",
|
2020-10-05 06:55:47 +00:00
|
|
|
"jest-junit": "^12.0.0",
|
2020-08-25 06:54:07 +00:00
|
|
|
"request": "^2.88.2",
|
2020-07-09 23:05:11 -04:00
|
|
|
"requestretry": "^4.1.1",
|
2020-10-06 00:20:05 +00:00
|
|
|
"ts-jest": "^26.4.1",
|
2020-09-21 06:57:31 +00:00
|
|
|
"typescript": "^4.0.3",
|
2020-09-29 06:49:44 +00:00
|
|
|
"yarn": "^1.22.10"
|
2020-03-04 18:30:14 -08:00
|
|
|
},
|
|
|
|
|
"devDependencies": {}
|
2019-11-13 23:41:15 -08:00
|
|
|
}
|