2019-11-13 23:41:15 -08:00
|
|
|
{
|
2019-12-05 22:19:41 -08:00
|
|
|
"name": "codecov-action",
|
2021-06-08 21:25:38 -04:00
|
|
|
"version": "1.5.2",
|
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-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-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-06-08 05:13:54 +00:00
|
|
|
"@actions/core": "^1.4.0",
|
2021-06-08 15:10:44 +00:00
|
|
|
"@actions/exec": "^1.1.0",
|
2021-06-11 10:00:45 -04:00
|
|
|
"@actions/github": "^5.0.0"
|
2020-03-04 18:30:14 -08:00
|
|
|
},
|
2021-01-02 17:50:17 -05:00
|
|
|
"devDependencies": {
|
2021-07-07 04:04:31 +00:00
|
|
|
"@types/jest": "^26.0.24",
|
2021-07-07 17:07:51 +00:00
|
|
|
"@types/node": "^16.0.1",
|
2021-07-13 18:38:04 +00:00
|
|
|
"@typescript-eslint/eslint-plugin": "^4.28.3",
|
2021-07-13 04:05:22 +00:00
|
|
|
"@typescript-eslint/parser": "^4.28.3",
|
2021-06-11 10:00:45 -04:00
|
|
|
"@vercel/ncc": "^0.28.6",
|
2021-07-07 17:07:27 +00:00
|
|
|
"eslint": "^7.30.0",
|
2021-06-10 22:15:00 -04:00
|
|
|
"eslint-config-google": "^0.14.0",
|
|
|
|
|
"jest": "^26.6.3",
|
|
|
|
|
"jest-junit": "^12.2.0",
|
|
|
|
|
"ts-jest": "^26.5.6",
|
2021-07-07 10:13:59 -07:00
|
|
|
"typescript": "^4.3.5"
|
2021-01-02 17:50:17 -05:00
|
|
|
}
|
2019-11-13 23:41:15 -08:00
|
|
|
}
|