gradle-build-action/package.json

53 lines
1.4 KiB
JSON
Raw Normal View History

2019-09-20 21:06:59 +00:00
{
2019-09-21 14:01:53 +00:00
"name": "gradle-command-action",
2019-09-21 14:09:41 +00:00
"version": "1.0.0",
2020-06-13 11:00:27 +00:00
"private": true,
2019-09-21 14:01:53 +00:00
"description": "Execute Gradle Command Line",
2019-09-20 21:06:59 +00:00
"scripts": {
"build": "tsc",
2020-06-13 10:47:01 +00:00
"format": "prettier --write **/*.ts",
"format-check": "prettier --check **/*.ts",
"lint": "eslint src/**/*.ts",
2020-06-13 11:34:07 +00:00
"pack": "ncc build src/main.ts --out dist/main --minify && ncc build src/post.ts --out dist/post --minify",
2020-06-13 10:47:01 +00:00
"test": "jest",
"all": "npm run build && npm run pack && npm test"
2019-09-20 21:06:59 +00:00
},
"repository": {
"type": "git",
2019-09-21 14:09:41 +00:00
"url": "git+https://github.com/eskatos/gradle-command-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
],
2019-09-21 14:09:41 +00:00
"author": "Paul Merlin <paul@nosphere.org>",
2019-09-20 21:06:59 +00:00
"license": "MIT",
"dependencies": {
2020-06-13 10:46:47 +00:00
"@actions/core": "1.2.4",
"@actions/exec": "1.0.4",
2020-01-12 10:39:57 +00:00
"@actions/io": "1.0.2",
2020-06-13 10:46:47 +00:00
"@actions/tool-cache": "1.5.5",
2019-09-21 14:01:53 +00:00
"string-argv": "0.3.1",
2020-06-13 10:46:47 +00:00
"typed-rest-client": "1.7.3",
"unzipper": "0.10.11"
2019-09-20 21:06:59 +00:00
},
"devDependencies": {
2020-06-13 10:46:47 +00: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 11:00:27 +00:00
"typescript": "3.8.3"
2019-09-20 21:06:59 +00:00
}
}