2019-09-20 21:06:59 +00:00
|
|
|
{
|
2024-01-25 19:28:05 +00:00
|
|
|
"name": "gradle-actions",
|
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",
|
2024-04-10 12:01:23 +00:00
|
|
|
"prettier-write": "prettier --write 'src/**/*.ts'",
|
|
|
|
"prettier-check": "prettier --check 'src/**/*.ts'",
|
2024-04-06 23:26:23 +00:00
|
|
|
"lint": "eslint 'src/**/*.ts'",
|
2024-07-18 17:09:54 +00:00
|
|
|
"compile-dependency-submission-main": "ncc build src/actions/dependency-submission/main.ts --out dist/dependency-submission/main --source-map --no-source-map-register",
|
|
|
|
"compile-dependency-submission-post": "ncc build src/actions/dependency-submission/post.ts --out dist/dependency-submission/post --source-map --no-source-map-register",
|
|
|
|
"compile-setup-gradle-main": "ncc build src/actions/setup-gradle/main.ts --out dist/setup-gradle/main --source-map --no-source-map-register",
|
|
|
|
"compile-setup-gradle-post": "ncc build src/actions/setup-gradle/post.ts --out dist/setup-gradle/post --source-map --no-source-map-register",
|
|
|
|
"compile-wrapper-validation-main": "ncc build src/actions/wrapper-validation/main.ts --out dist/wrapper-validation/main --source-map --no-source-map-register",
|
2024-01-12 13:38:50 +00:00
|
|
|
"compile": "npm-run-all --parallel compile-*",
|
2024-04-10 12:01:23 +00:00
|
|
|
"check": "npm-run-all --parallel prettier-check lint",
|
|
|
|
"format": "npm-run-all --parallel prettier-write lint",
|
2020-06-13 10:47:01 +00:00
|
|
|
"test": "jest",
|
2024-04-10 12:01:23 +00:00
|
|
|
"build": "npm run format && npm run compile",
|
2022-06-13 18:00:13 +00:00
|
|
|
"all": "npm run build && npm test"
|
2019-09-20 21:06:59 +00:00
|
|
|
},
|
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
2024-01-25 19:28:05 +00:00
|
|
|
"url": "git+https://github.com/gradle/actions.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": {
|
2024-08-06 13:59:53 +00:00
|
|
|
"@actions/artifact": "2.1.9",
|
2024-03-12 03:09:11 +00:00
|
|
|
"@actions/cache": "3.2.4",
|
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",
|
2024-08-19 23:57:47 +00:00
|
|
|
"@actions/glob": "0.5.0",
|
2024-08-26 23:36:00 +00:00
|
|
|
"@actions/http-client": "2.2.3",
|
2022-05-15 16:25:18 +00:00
|
|
|
"@actions/tool-cache": "2.0.1",
|
2024-08-19 23:57:47 +00:00
|
|
|
"@octokit/rest": "21.0.2",
|
2024-08-06 13:59:53 +00:00
|
|
|
"@octokit/webhooks-types": "7.5.1",
|
2024-08-19 23:57:47 +00:00
|
|
|
"cheerio": "^1.0.0",
|
2024-08-06 13:59:53 +00:00
|
|
|
"semver": "7.6.3",
|
2024-04-11 02:43:44 +00:00
|
|
|
"string-argv": "0.3.2",
|
2024-08-06 13:59:53 +00:00
|
|
|
"typed-rest-client": "2.0.2",
|
2024-07-19 18:08:14 +00:00
|
|
|
"unhomoglyph": "1.0.6",
|
|
|
|
"which": "4.0.0"
|
|
|
|
},
|
2019-09-20 21:06:59 +00:00
|
|
|
"devDependencies": {
|
2024-03-12 03:09:11 +00:00
|
|
|
"@types/jest": "29.5.12",
|
2024-09-09 23:19:55 +00:00
|
|
|
"@types/node": "20.16.5",
|
2024-08-07 13:59:45 +00:00
|
|
|
"@types/unzipper": "0.10.10",
|
2024-07-19 18:08:14 +00:00
|
|
|
"@types/which": "3.0.4",
|
2024-08-06 15:06:25 +00:00
|
|
|
"@typescript-eslint/parser": "7.18.0",
|
2023-11-09 04:58:14 +00:00
|
|
|
"@vercel/ncc": "0.38.1",
|
2024-03-12 03:09:11 +00:00
|
|
|
"eslint": "8.57.0",
|
2024-08-06 13:59:53 +00:00
|
|
|
"eslint-plugin-github": "5.0.1",
|
2024-09-09 23:19:55 +00:00
|
|
|
"eslint-plugin-jest": "28.8.3",
|
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",
|
2024-08-26 23:36:00 +00:00
|
|
|
"nock": "13.5.5",
|
2024-01-12 13:38:50 +00:00
|
|
|
"npm-run-all": "4.1.5",
|
2023-08-15 02:04:27 +00:00
|
|
|
"patch-package": "8.0.0",
|
2024-08-06 13:59:53 +00:00
|
|
|
"prettier": "3.3.3",
|
2024-08-26 23:36:00 +00:00
|
|
|
"ts-jest": "29.2.5",
|
2024-09-09 23:19:55 +00:00
|
|
|
"typescript": "5.6.2"
|
2019-09-20 21:06:59 +00:00
|
|
|
}
|
|
|
|
}
|