gradle-build-action/package.json

55 lines
1.5 KiB
JSON
Raw Normal View History

2019-09-20 17:06:59 -04:00
{
"name": "gradle-build-action",
2019-09-21 10:09:41 -04:00
"version": "1.0.0",
2020-06-13 07:00:27 -04:00
"private": true,
"description": "Execute Gradle Build",
2019-09-20 17:06:59 -04:00
"scripts": {
"postinstall": "patch-package",
2020-06-13 06:47:01 -04:00
"format": "prettier --write **/*.ts",
"format-check": "prettier --check **/*.ts",
"lint": "eslint src/**/*.ts",
"compile": "ncc build src/main.ts --out dist/main --source-map --no-source-map-register && ncc build src/post.ts --out dist/post --source-map --no-source-map-register",
2020-06-13 06:47:01 -04: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 17:06:59 -04:00
},
"repository": {
"type": "git",
"url": "git+https://github.com/gradle/gradle-build-action.git"
2019-09-20 17:06:59 -04:00
},
"keywords": [
2019-09-21 10:09:41 -04:00
"github",
2019-09-20 17:06:59 -04:00
"actions",
2019-09-21 10:09:41 -04:00
"github-actions",
"gradle"
2019-09-20 17:06:59 -04:00
],
"license": "MIT",
"dependencies": {
"@actions/cache": "3.2.1",
2022-10-20 09:06:26 -04:00
"@actions/core": "1.10.0",
"@actions/exec": "1.1.1",
2022-10-20 09:06:26 -04:00
"@actions/github": "5.1.1",
2023-02-06 14:31:46 -05:00
"@actions/glob": "0.4.0",
"@actions/http-client": "2.1.0",
"@actions/tool-cache": "2.0.1",
"string-argv": "0.3.1"
2019-09-20 17:06:59 -04:00
},
"devDependencies": {
2022-02-22 15:05:45 -05:00
"@types/node": "16.11.21",
"@types/jest": "29.5.0",
2022-02-22 15:05:45 -05:00
"@types/unzipper": "0.10.5",
"@typescript-eslint/parser": "5.59.0",
2023-02-06 14:29:45 -05:00
"@vercel/ncc": "0.36.1",
2023-04-12 14:36:53 -04:00
"eslint": "8.38.0",
"eslint-plugin-github": "4.7.0",
2023-01-19 19:54:44 -05:00
"eslint-plugin-jest": "27.2.1",
"jest": "29.5.0",
2022-10-20 09:00:07 -04:00
"js-yaml": "4.1.0",
2023-01-19 19:54:44 -05:00
"patch-package": "6.5.1",
"prettier": "2.8.7",
2023-04-12 14:36:53 -04:00
"ts-jest": "29.1.0",
"typescript": "5.0.4"
2019-09-20 17:06:59 -04:00
}
}