2019-11-13 23:41:15 -08:00
|
|
|
{
|
2019-12-05 22:19:41 -08:00
|
|
|
"name": "codecov-action",
|
2021-04-29 17:22:53 -04:00
|
|
|
"version": "1.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-01-02 19:03:40 -05:00
|
|
|
"lint": "eslint src/*.*",
|
2021-01-02 19:01:39 -05:00
|
|
|
"test": "yarn run test-script && yarn run test-calculator && yarn 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-01-02 18:16:30 -05:00
|
|
|
"test-script": "jest --testPathPattern=src/ --coverage --coverageDirectory=coverage/script",
|
2021-01-02 17:50:17 -05:00
|
|
|
"build": "ncc build src/index.ts"
|
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": {
|
2021-05-24 05:51:59 +00:00
|
|
|
"@actions/core": "^1.3.0",
|
2020-08-25 12:11:38 +00:00
|
|
|
"@actions/exec": "^1.0.4",
|
2021-05-17 05:56:24 +00:00
|
|
|
"@actions/github": "^5.0.0",
|
2021-04-28 06:58:50 +00:00
|
|
|
"@types/jest": "^26.0.23",
|
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-11-04 06:43:55 +00:00
|
|
|
"jest": "^26.6.3",
|
2021-05-26 05:06:57 +00:00
|
|
|
"jest-junit": "^12.1.0",
|
2020-08-25 06:54:07 +00:00
|
|
|
"request": "^2.88.2",
|
2021-05-06 05:19:28 +00:00
|
|
|
"ts-jest": "^26.5.6",
|
2021-04-08 07:03:28 +00:00
|
|
|
"typescript": "^4.2.4",
|
2020-09-29 06:49:44 +00:00
|
|
|
"yarn": "^1.22.10"
|
2020-03-04 18:30:14 -08:00
|
|
|
},
|
2021-01-02 17:50:17 -05:00
|
|
|
"devDependencies": {
|
2021-05-25 05:18:04 +00:00
|
|
|
"@typescript-eslint/eslint-plugin": "^4.25.0",
|
2021-05-26 17:23:55 +00:00
|
|
|
"@typescript-eslint/parser": "^4.25.0",
|
2021-05-24 05:51:23 +00:00
|
|
|
"eslint": "^7.27.0",
|
2021-01-02 19:01:39 -05:00
|
|
|
"eslint-config-google": "^0.14.0"
|
2021-01-02 17:50:17 -05:00
|
|
|
}
|
2019-11-13 23:41:15 -08:00
|
|
|
}
|