Files
gradle-build-tools-actions/sources/package.json
T

63 lines
1.8 KiB
JSON
Raw Normal View History

2019-09-20 23:06:59 +02:00
{
2024-01-25 12:28:05 -07:00
"name": "gradle-actions",
2019-09-21 16:09:41 +02:00
"version": "1.0.0",
2020-06-13 13:00:27 +02:00
"private": true,
"description": "Execute Gradle Build",
2019-09-20 23:06:59 +02:00
"scripts": {
"postinstall": "patch-package",
2020-06-13 12:47:01 +02:00
"format": "prettier --write **/*.ts",
"format-check": "prettier --check **/*.ts",
"lint": "eslint src/**/*.ts",
2024-01-25 11:18:18 -07: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",
2024-01-12 06:38:50 -07:00
"compile": "npm-run-all --parallel compile-*",
"check": "npm-run-all --parallel format lint",
2020-06-13 12:47:01 +02:00
"test": "jest",
"build": "npm run check && npm run compile",
"all": "npm run build && npm test"
2019-09-20 23:06:59 +02:00
},
"repository": {
"type": "git",
2024-01-25 12:28:05 -07:00
"url": "git+https://github.com/gradle/actions.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": {
"@actions/artifact": "2.1.0",
"@actions/cache": "3.2.3",
"@actions/core": "1.10.1",
2022-03-18 05:51:44 -06:00
"@actions/exec": "1.1.1",
2023-11-27 18:32:01 +10:00
"@actions/github": "6.0.0",
2023-02-06 12:31:46 -07:00
"@actions/glob": "0.4.0",
2023-11-08 20:58:14 -08:00
"@actions/http-client": "2.2.0",
2022-05-15 10:25:18 -06:00
"@actions/tool-cache": "2.0.1",
2023-07-07 19:45:07 -06:00
"@octokit/rest": "19.0.13",
2023-09-29 21:55:35 +02:00
"@octokit/webhooks-types": "7.3.1",
2023-12-23 13:20:07 -07:00
"semver": "7.5.4",
2023-05-02 14:56:46 -06:00
"string-argv": "0.3.2"
2019-09-20 23:06:59 +02:00
},
"devDependencies": {
"@types/jest": "29.5.11",
2023-12-22 22:12:22 -07:00
"@types/node": "20.10.0",
2023-11-27 12:28:37 +10:00
"@types/unzipper": "0.10.9",
"@typescript-eslint/parser": "6.19.1",
2023-11-08 20:58:14 -08:00
"@vercel/ncc": "0.38.1",
2023-12-23 13:20:07 -07:00
"eslint": "8.56.0",
2023-11-08 20:58:14 -08:00
"eslint-plugin-github": "4.10.1",
"eslint-plugin-jest": "27.6.3",
"eslint-plugin-prettier": "5.1.3",
"jest": "29.7.0",
2023-09-26 05:14:11 -06:00
"js-yaml": "4.1.0",
2024-01-12 06:38:50 -07:00
"npm-run-all": "4.1.5",
2023-08-14 20:04:27 -06:00
"patch-package": "8.0.0",
"prettier": "3.2.4",
"ts-jest": "29.1.2",
"typescript": "5.3.3"
2019-09-20 23:06:59 +02:00
}
}