2019-09-20 21:06:59 +00:00
|
|
|
{
|
2021-08-07 22:17:27 +00:00
|
|
|
"name": "gradle-build-action",
|
2019-09-21 14:09:41 +00:00
|
|
|
"version": "1.0.0",
|
2020-06-13 11:00:27 +00:00
|
|
|
"private": true,
|
2021-08-07 22:17:27 +00:00
|
|
|
"description": "Execute Gradle Build",
|
2019-09-20 21:06:59 +00:00
|
|
|
"scripts": {
|
2021-10-30 19:30:44 +00:00
|
|
|
"postinstall": "patch-package",
|
2020-06-13 10:47:01 +00:00
|
|
|
"format": "prettier --write **/*.ts",
|
|
|
|
"format-check": "prettier --check **/*.ts",
|
|
|
|
"lint": "eslint src/**/*.ts",
|
2021-09-14 11:42:50 +00:00
|
|
|
"build": "ncc build src/main.ts --out dist/main --source-map --minify && ncc build src/post.ts --out dist/post --source-map --minify",
|
2020-06-13 10:47:01 +00:00
|
|
|
"test": "jest",
|
2020-06-13 12:33:04 +00:00
|
|
|
"all": "npm run format && npm run lint && npm run build && npm test"
|
2019-09-20 21:06:59 +00:00
|
|
|
},
|
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
2021-08-07 22:17:27 +00:00
|
|
|
"url": "git+https://github.com/gradle/gradle-build-action.git"
|
2019-09-20 21:06:59 +00:00
|
|
|
},
|
|
|
|
"keywords": [
|
2019-09-21 14:09:41 +00:00
|
|
|
"github",
|
2019-09-20 21:06:59 +00:00
|
|
|
"actions",
|
2019-09-21 14:09:41 +00:00
|
|
|
"github-actions",
|
|
|
|
"gradle"
|
2019-09-20 21:06:59 +00:00
|
|
|
],
|
|
|
|
"license": "MIT",
|
|
|
|
"dependencies": {
|
2021-12-02 20:02:35 +00:00
|
|
|
"@actions/cache": "1.0.8",
|
|
|
|
"@actions/core": "1.6.0",
|
2021-07-05 18:27:15 +00:00
|
|
|
"@actions/exec": "1.1.0",
|
2021-08-23 02:14:47 +00:00
|
|
|
"@actions/github": "5.0.0",
|
2021-07-05 18:27:15 +00:00
|
|
|
"@actions/glob": "0.2.0",
|
|
|
|
"@actions/http-client": "1.0.11",
|
|
|
|
"@actions/tool-cache": "1.7.1",
|
2021-10-30 19:30:44 +00:00
|
|
|
"patch-package": "6.4.7",
|
2021-07-05 19:17:31 +00:00
|
|
|
"string-argv": "0.3.1"
|
2019-09-20 21:06:59 +00:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2022-01-27 16:07:17 +00:00
|
|
|
"@types/jest": "^27.4.0",
|
2022-01-31 21:14:53 +00:00
|
|
|
"@types/node": "^16.11.21",
|
2022-01-26 20:51:30 +00:00
|
|
|
"@types/unzipper": "^0.10.5",
|
2022-01-31 21:10:03 +00:00
|
|
|
"@typescript-eslint/parser": "^5.10.2",
|
2020-06-13 10:46:47 +00:00
|
|
|
"@zeit/ncc": "0.22.3",
|
2022-01-28 22:18:31 +00:00
|
|
|
"eslint": "^8.8.0",
|
2021-12-02 20:02:35 +00:00
|
|
|
"eslint-plugin-github": "4.3.5",
|
2022-01-26 20:51:30 +00:00
|
|
|
"eslint-plugin-jest": "^26.0.0",
|
|
|
|
"jest": "^27.4.7",
|
|
|
|
"jest-circus": "^27.4.6",
|
2021-12-02 20:02:35 +00:00
|
|
|
"js-yaml": "4.1.0",
|
2022-01-26 20:51:30 +00:00
|
|
|
"prettier": "^2.5.1",
|
|
|
|
"ts-jest": "^27.1.3",
|
|
|
|
"typescript": "^4.5.5"
|
2019-09-20 21:06:59 +00:00
|
|
|
}
|
|
|
|
}
|