mirror of
https://github.com/stCarolas/setup-maven.git
synced 2024-11-12 12:38:06 +00:00
1996e963e1
See here for further details: https://github.blog/changelog/2020-10-01-github-actions-deprecating-set-env-and-add-path-commands
42 lines
995 B
JSON
42 lines
995 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.5.0",
|
|
"semver": "^6.1.1"
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "^12.0.4",
|
|
"@types/semver": "^6.0.0",
|
|
"husky": "^2.3.0",
|
|
"prettier": "^1.17.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\""
|
|
}
|
|
}
|
|
}
|