2019-09-20 17:06:59 -04:00
|
|
|
{
|
2019-09-21 10:01:53 -04:00
|
|
|
"name": "gradle-command-action",
|
2019-09-21 10:09:41 -04:00
|
|
|
"version": "1.0.0",
|
2020-06-13 07:00:27 -04:00
|
|
|
"private": true,
|
2019-09-21 10:01:53 -04:00
|
|
|
"description": "Execute Gradle Command Line",
|
2019-09-20 17:06:59 -04:00
|
|
|
"scripts": {
|
2020-06-13 06:47:01 -04:00
|
|
|
"format": "prettier --write **/*.ts",
|
|
|
|
"format-check": "prettier --check **/*.ts",
|
|
|
|
"lint": "eslint src/**/*.ts",
|
2020-06-13 07:40:38 -04:00
|
|
|
"build": "ncc build src/main.ts --out dist/main --minify && ncc build src/post.ts --out dist/post --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",
|
2019-09-21 10:09:41 -04:00
|
|
|
"url": "git+https://github.com/eskatos/gradle-command-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
|
|
|
],
|
2019-09-21 10:09:41 -04:00
|
|
|
"author": "Paul Merlin <paul@nosphere.org>",
|
2019-09-20 17:06:59 -04:00
|
|
|
"license": "MIT",
|
|
|
|
"dependencies": {
|
2020-06-13 06:46:47 -04:00
|
|
|
"@actions/core": "1.2.4",
|
|
|
|
"@actions/exec": "1.0.4",
|
2020-01-12 05:39:57 -05:00
|
|
|
"@actions/io": "1.0.2",
|
2020-06-13 06:46:47 -04:00
|
|
|
"@actions/tool-cache": "1.5.5",
|
2020-06-13 07:42:27 -04:00
|
|
|
"@actions/cache": "0.2.1",
|
2019-09-21 10:01:53 -04:00
|
|
|
"string-argv": "0.3.1",
|
2020-06-13 06:46:47 -04:00
|
|
|
"typed-rest-client": "1.7.3",
|
|
|
|
"unzipper": "0.10.11"
|
2019-09-20 17:06:59 -04:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2020-06-13 06:46:47 -04:00
|
|
|
"@types/jest": "26.0.0",
|
|
|
|
"@types/node": "12.12.6",
|
|
|
|
"@types/unzipper": "0.10.3",
|
|
|
|
"@typescript-eslint/parser": "3.2.0",
|
|
|
|
"@zeit/ncc": "0.22.3",
|
|
|
|
"eslint": "7.2.0",
|
|
|
|
"eslint-plugin-github": "4.0.1",
|
|
|
|
"eslint-plugin-jest": "23.13.2",
|
|
|
|
"jest": "26.0.1",
|
|
|
|
"jest-circus": "26.0.1",
|
|
|
|
"js-yaml": "3.14.0",
|
|
|
|
"prettier": "2.0.5",
|
|
|
|
"ts-jest": "26.1.0",
|
2020-06-13 07:00:27 -04:00
|
|
|
"typescript": "3.8.3"
|
2019-09-20 17:06:59 -04:00
|
|
|
}
|
|
|
|
}
|