gradle-build-action/package.json

54 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",
"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 06:47:01 -04:00
"test": "jest",
2020-06-13 08:33:04 -04:00
"all": "npm run format && npm run lint && 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": {
2021-12-02 15:02:35 -05:00
"@actions/cache": "1.0.8",
"@actions/core": "1.6.0",
2021-07-05 14:27:15 -04:00
"@actions/exec": "1.1.0",
"@actions/github": "5.0.0",
2021-07-05 14:27:15 -04:00
"@actions/glob": "0.2.0",
"@actions/http-client": "1.0.11",
"@actions/tool-cache": "1.7.1",
"patch-package": "6.4.7",
"string-argv": "0.3.1"
2019-09-20 17:06:59 -04:00
},
"devDependencies": {
2021-12-02 15:02:35 -05:00
"@types/jest": "27.0.3",
"@types/node": "16.11.11",
2021-07-05 14:37:50 -04:00
"@types/unzipper": "0.10.4",
2021-12-02 15:02:35 -05:00
"@typescript-eslint/parser": "5.5.0",
2020-06-13 06:46:47 -04:00
"@zeit/ncc": "0.22.3",
2021-12-02 15:02:35 -05:00
"eslint": "8.3.0",
"eslint-plugin-github": "4.3.5",
"eslint-plugin-jest": "25.3.0",
"jest": "27.4.3",
"jest-circus": "27.4.2",
"js-yaml": "4.1.0",
"prettier": "2.5.0",
"ts-jest": "27.0.7",
2021-12-02 15:02:35 -05:00
"typescript": "4.5.2"
2019-09-20 17:06:59 -04:00
}
}