2019-12-07 13:09:20 +00:00
|
|
|
{
|
|
|
|
"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": {
|
2020-11-19 15:36:25 +00:00
|
|
|
"@actions/core": "^1.2.6",
|
2019-12-07 13:09:20 +00:00
|
|
|
"@actions/github": "^1.0.0",
|
|
|
|
"@actions/io": "^1.0.0",
|
2021-06-11 14:41:30 +00:00
|
|
|
"@actions/tool-cache": "1.3.1",
|
2024-01-24 20:06:12 +00:00
|
|
|
"semver": "^6.1.1",
|
|
|
|
"typed-rest-client": "^1.5.0"
|
2019-12-07 13:09:20 +00:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2024-01-24 20:06:12 +00:00
|
|
|
"@types/node": "^20.11.6",
|
2019-12-07 13:09:20 +00:00
|
|
|
"@types/semver": "^6.0.0",
|
|
|
|
"husky": "^2.3.0",
|
|
|
|
"prettier": "^1.17.1",
|
2024-01-24 20:09:49 +00:00
|
|
|
"typescript": "^5.3.3"
|
2019-12-07 13:09:20 +00:00
|
|
|
},
|
|
|
|
"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\""
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|