d46d0aa12e
Refactoring * feat: Add reject to Promise * feat: Add printing inputs * feat: Add error handling to getLatestVersion() * feat: show version of Hugo, Go, and Git (Close #23) * refactor: Get the latest version from Homebrew (Close #26) * refactor: enhance error message of promise reject Enhancement for workflow * gha: Add deps (test-prod job needs test job) * gha: Fix matrix testing * gha: comment out Build production step * gha: remove Dump step Update README * docs: update readme
38 lines
877 B
JSON
38 lines
877 B
JSON
{
|
|
"name": "hugo-action",
|
|
"version": "0.1.0",
|
|
"description": "Hugo setup action",
|
|
"main": "index.js",
|
|
"scripts": {
|
|
"lint": "eslint ./index.js ./get-latest-version.js",
|
|
"test": "jest",
|
|
"build": "npm prune --production"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/peaceiris/actions-hugo.git"
|
|
},
|
|
"keywords": [
|
|
"GitHub",
|
|
"Actions",
|
|
"JavaScript",
|
|
"Hugo"
|
|
],
|
|
"author": "peaceiris",
|
|
"license": "MIT",
|
|
"bugs": {
|
|
"url": "https://github.com/peaceiris/actions-hugo/issues"
|
|
},
|
|
"homepage": "https://github.com/peaceiris/actions-hugo#readme",
|
|
"dependencies": {
|
|
"@actions/core": "^1.1.0",
|
|
"@actions/exec": "^1.0.1",
|
|
"@actions/io": "^1.0.1",
|
|
"@actions/tool-cache": "^1.1.1",
|
|
"xmlhttprequest": "^1.8.0"
|
|
},
|
|
"devDependencies": {
|
|
"eslint": "^6.4.0",
|
|
"jest": "^24.9.0"
|
|
}
|
|
}
|