2019-09-20 23:06:59 +02:00
|
|
|
{
|
2021-08-07 15:17:27 -07:00
|
|
|
"name": "gradle-build-action",
|
2019-09-21 16:09:41 +02:00
|
|
|
"version": "1.0.0",
|
2020-06-13 13:00:27 +02:00
|
|
|
"private": true,
|
2021-08-07 15:17:27 -07:00
|
|
|
"description": "Execute Gradle Build",
|
2019-09-20 23:06:59 +02:00
|
|
|
"scripts": {
|
2021-10-30 13:30:44 -06:00
|
|
|
"postinstall": "patch-package",
|
2020-06-13 12:47:01 +02:00
|
|
|
"format": "prettier --write **/*.ts",
|
|
|
|
"format-check": "prettier --check **/*.ts",
|
|
|
|
"lint": "eslint src/**/*.ts",
|
2021-09-14 05:42:50 -06: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 12:47:01 +02:00
|
|
|
"test": "jest",
|
2020-06-13 14:33:04 +02:00
|
|
|
"all": "npm run format && npm run lint && npm run build && npm test"
|
2019-09-20 23:06:59 +02:00
|
|
|
},
|
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
2021-08-07 15:17:27 -07:00
|
|
|
"url": "git+https://github.com/gradle/gradle-build-action.git"
|
2019-09-20 23:06:59 +02:00
|
|
|
},
|
|
|
|
"keywords": [
|
2019-09-21 16:09:41 +02:00
|
|
|
"github",
|
2019-09-20 23:06:59 +02:00
|
|
|
"actions",
|
2019-09-21 16:09:41 +02:00
|
|
|
"github-actions",
|
|
|
|
"gradle"
|
2019-09-20 23:06:59 +02:00
|
|
|
],
|
|
|
|
"license": "MIT",
|
|
|
|
"dependencies": {
|
2022-05-15 10:25:18 -06:00
|
|
|
"@actions/cache": "2.0.4",
|
2022-05-15 09:30:59 -06:00
|
|
|
"@actions/core": "1.8.2",
|
2022-03-18 05:51:44 -06:00
|
|
|
"@actions/exec": "1.1.1",
|
2022-05-15 10:25:18 -06:00
|
|
|
"@actions/github": "5.0.3",
|
2022-04-19 16:36:26 -06:00
|
|
|
"@actions/glob": "0.3.0",
|
2022-05-15 10:25:18 -06:00
|
|
|
"@actions/http-client": "2.0.1",
|
|
|
|
"@actions/tool-cache": "2.0.1",
|
2021-07-05 13:17:31 -06:00
|
|
|
"string-argv": "0.3.1"
|
2019-09-20 23:06:59 +02:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2022-02-22 13:05:45 -07:00
|
|
|
"@types/node": "16.11.21",
|
|
|
|
"@types/unzipper": "0.10.5",
|
2022-05-17 22:19:10 +00:00
|
|
|
"@typescript-eslint/parser": "5.25.0",
|
2022-05-15 09:30:59 -06:00
|
|
|
"@vercel/ncc": "0.33.4",
|
2022-05-23 22:36:16 +00:00
|
|
|
"eslint": "8.16.0",
|
2022-03-28 13:24:39 -06:00
|
|
|
"eslint-plugin-github": "4.3.6",
|
2022-05-15 10:25:18 -06:00
|
|
|
"eslint-plugin-jest": "26.2.2",
|
|
|
|
"jest": "28.1.0",
|
2021-12-02 13:02:35 -07:00
|
|
|
"js-yaml": "4.1.0",
|
2022-03-18 05:57:43 -06:00
|
|
|
"patch-package": "6.4.7",
|
2022-04-02 13:13:37 -06:00
|
|
|
"prettier": "2.6.2",
|
2022-05-15 10:25:18 -06:00
|
|
|
"ts-jest": "28.0.2",
|
2022-05-15 09:30:59 -06:00
|
|
|
"typescript": "4.6.4"
|
2019-09-20 23:06:59 +02:00
|
|
|
}
|
|
|
|
}
|