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",
|
2023-06-05 21:14:31 +00:00
|
|
|
"compile-main": "ncc build src/main.ts --out dist/main --source-map --no-source-map-register",
|
|
|
|
"compile-post": "ncc build src/post.ts --out dist/post --source-map --no-source-map-register",
|
2023-07-05 19:11:58 +00:00
|
|
|
"compile": "npm run compile-main && npm run compile-post",
|
2020-06-13 10:47:01 +00:00
|
|
|
"test": "jest",
|
2022-05-30 15:08:20 +00:00
|
|
|
"check": "npm run format && npm run lint",
|
2022-06-13 18:00:13 +00:00
|
|
|
"build": "npm run check && npm run compile",
|
|
|
|
"all": "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": {
|
2023-09-18 22:42:36 +00:00
|
|
|
"@actions/artifact": "1.1.2",
|
2023-08-15 02:04:27 +00:00
|
|
|
"@actions/cache": "3.2.2",
|
2023-09-18 22:42:36 +00:00
|
|
|
"@actions/core": "1.10.1",
|
2022-03-18 11:51:44 +00:00
|
|
|
"@actions/exec": "1.1.1",
|
2023-11-27 08:32:01 +00:00
|
|
|
"@actions/github": "6.0.0",
|
2023-02-06 19:31:46 +00:00
|
|
|
"@actions/glob": "0.4.0",
|
2023-11-09 04:58:14 +00:00
|
|
|
"@actions/http-client": "2.2.0",
|
2022-05-15 16:25:18 +00:00
|
|
|
"@actions/tool-cache": "2.0.1",
|
2023-07-08 01:45:07 +00:00
|
|
|
"@octokit/rest": "19.0.13",
|
2023-09-29 19:55:35 +00:00
|
|
|
"@octokit/webhooks-types": "7.3.1",
|
2023-12-23 05:12:22 +00:00
|
|
|
"semver": "^7.5.4",
|
2023-05-02 20:56:46 +00:00
|
|
|
"string-argv": "0.3.2"
|
2019-09-20 21:06:59 +00:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2023-12-12 02:43:02 +00:00
|
|
|
"@types/jest": "29.5.11",
|
2023-12-23 05:12:22 +00:00
|
|
|
"@types/node": "20.10.0",
|
2023-11-27 02:28:37 +00:00
|
|
|
"@types/unzipper": "0.10.9",
|
2023-12-12 02:43:02 +00:00
|
|
|
"@typescript-eslint/parser": "6.14.0",
|
2023-11-09 04:58:14 +00:00
|
|
|
"@vercel/ncc": "0.38.1",
|
2023-12-12 02:43:02 +00:00
|
|
|
"eslint": "8.55.0",
|
2023-11-09 04:58:14 +00:00
|
|
|
"eslint-plugin-github": "4.10.1",
|
|
|
|
"eslint-plugin-jest": "27.6.0",
|
|
|
|
"eslint-plugin-prettier": "5.0.1",
|
2023-09-18 22:42:36 +00:00
|
|
|
"jest": "29.7.0",
|
2023-09-26 11:14:11 +00:00
|
|
|
"js-yaml": "4.1.0",
|
2023-08-15 02:04:27 +00:00
|
|
|
"patch-package": "8.0.0",
|
2023-12-12 02:43:02 +00:00
|
|
|
"prettier": "3.1.1",
|
2023-07-08 01:45:07 +00:00
|
|
|
"ts-jest": "29.1.1",
|
2023-12-12 02:43:02 +00:00
|
|
|
"typescript": "5.3.3"
|
2019-09-20 21:06:59 +00:00
|
|
|
}
|
|
|
|
}
|