gradle-build-action/package.json

61 lines
1.7 KiB
JSON
Raw Normal View History

2019-09-20 21:06:59 +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,
"description": "Execute Gradle Build",
2019-09-20 21:06:59 +00:00
"scripts": {
"postinstall": "patch-package",
2020-06-13 10:47:01 +00:00
"format": "prettier --write **/*.ts",
"format-check": "prettier --check **/*.ts",
"lint": "eslint src/**/*.ts",
"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",
"check": "npm run format && npm run lint",
"build": "npm run check && npm run compile",
"all": "npm run build && npm test"
2019-09-20 21:06:59 +00:00
},
"repository": {
"type": "git",
"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": {
"@actions/artifact": "1.1.1",
"@actions/cache": "3.2.1",
2022-10-20 13:06:26 +00:00
"@actions/core": "1.10.0",
"@actions/exec": "1.1.1",
2022-10-20 13:06:26 +00:00
"@actions/github": "5.1.1",
2023-02-06 19:31:46 +00:00
"@actions/glob": "0.4.0",
"@actions/http-client": "2.1.0",
"@actions/tool-cache": "2.0.1",
2023-07-08 01:45:07 +00:00
"@octokit/rest": "19.0.13",
"string-argv": "0.3.2"
2019-09-20 21:06:59 +00:00
},
"devDependencies": {
2022-02-22 20:05:45 +00:00
"@types/node": "16.11.21",
"@types/jest": "29.5.3",
2023-05-23 20:15:08 +00:00
"@types/unzipper": "0.10.6",
"@typescript-eslint/parser": "5.62.0",
2023-02-06 19:29:45 +00:00
"@vercel/ncc": "0.36.1",
2023-07-08 01:45:07 +00:00
"eslint": "8.44.0",
2023-06-28 17:51:09 +00:00
"eslint-plugin-github": "4.8.0",
2023-07-08 01:45:07 +00:00
"eslint-plugin-jest": "27.2.2",
"jest": "29.6.1",
2022-10-20 13:00:07 +00:00
"js-yaml": "4.1.0",
"patch-package": "7.0.0",
2023-07-08 02:27:40 +00:00
"prettier": "3.0.0",
2023-07-08 01:45:07 +00:00
"ts-jest": "29.1.1",
"typescript": "5.1.6"
2019-09-20 21:06:59 +00:00
}
}