mirror of
https://github.com/stCarolas/setup-maven.git
synced 2026-03-16 15:50:18 +00:00
Bumps [@types/semver](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/semver) from 6.2.2 to 7.3.6. - [Release notes](https://github.com/DefinitelyTyped/DefinitelyTyped/releases) - [Commits](https://github.com/DefinitelyTyped/DefinitelyTyped/commits/HEAD/types/semver) --- updated-dependencies: - dependency-name: "@types/semver" dependency-type: direct:development update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
45 lines
1.0 KiB
JSON
45 lines
1.0 KiB
JSON
{
|
|
"name": "setup-maven",
|
|
"version": "1.0.0",
|
|
"private": true,
|
|
"description": "setup maven action",
|
|
"main": "lib/setup-maven.js",
|
|
"scripts": {
|
|
"build": "tsc",
|
|
"build-dist": "ncc build lib/setup-maven.js --minify",
|
|
"format": "prettier --write **/*.ts",
|
|
"format-check": "prettier --check **/*.ts",
|
|
"prepare": "husky install"
|
|
},
|
|
"keywords": [
|
|
"actions",
|
|
"maven",
|
|
"setup"
|
|
],
|
|
"author": "stCarolas",
|
|
"license": "MIT",
|
|
"dependencies": {
|
|
"@actions/core": "^1.2.6",
|
|
"@actions/github": "^5.0.0",
|
|
"@actions/http-client": "1.0.11",
|
|
"@actions/io": "^1.0.0",
|
|
"@actions/tool-cache": "^1.0.0",
|
|
"semver": "^6.1.1",
|
|
"typed-rest-client": "^1.5.0",
|
|
"uglify-js": ">=2.6.0"
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "^12.0.4",
|
|
"@types/semver": "^7.3.6",
|
|
"husky": "6.0.0",
|
|
"prettier": "^2.3.1",
|
|
"typescript": "4.3.2"
|
|
},
|
|
"husky": {
|
|
"skipCI": true,
|
|
"hooks": {
|
|
"pre-commit": "npm run build && npm run format && npm run build-dist"
|
|
}
|
|
}
|
|
}
|