mirror of
https://github.com/stCarolas/setup-maven.git
synced 2026-03-20 01:42:42 +00:00
Bumps [typed-rest-client](https://github.com/Microsoft/typed-rest-client) from 1.5.0 to 1.8.4. - [Release notes](https://github.com/Microsoft/typed-rest-client/releases) - [Commits](https://github.com/Microsoft/typed-rest-client/commits) --- updated-dependencies: - dependency-name: typed-rest-client dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
42 lines
994 B
JSON
42 lines
994 B
JSON
{
|
|
"name": "setup-maven",
|
|
"version": "1.0.0",
|
|
"private": true,
|
|
"description": "setup maven action",
|
|
"main": "lib/setup-maven.js",
|
|
"scripts": {
|
|
"build": "tsc",
|
|
"format": "prettier --write **/*.ts",
|
|
"format-check": "prettier --check **/*.ts"
|
|
},
|
|
"keywords": [
|
|
"actions",
|
|
"maven",
|
|
"setup"
|
|
],
|
|
"author": "stCarolas",
|
|
"license": "MIT",
|
|
"dependencies": {
|
|
"@actions/core": "^1.2.6",
|
|
"@actions/github": "^1.0.0",
|
|
"@actions/io": "^1.0.0",
|
|
"@actions/tool-cache": "^1.0.0",
|
|
"typed-rest-client": "^1.8.4",
|
|
"semver": "^7.3.5"
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "^12.0.4",
|
|
"@types/semver": "^7.3.6",
|
|
"husky": "^2.3.0",
|
|
"prettier": "^2.3.1",
|
|
"typescript": "^3.5.1"
|
|
},
|
|
"husky": {
|
|
"skipCI": true,
|
|
"hooks": {
|
|
"pre-commit": "npm run build && npm run format",
|
|
"post-commit": "npm prune --production && git add node_modules/* && git commit -m \"Husky commit correct node modules\""
|
|
}
|
|
}
|
|
}
|