ghaction-github-pages/package.json
CrazyMax 077e8dcf81
Add ability to sign commits through Import GPG GitHub Action
Add author input
Fix default committer and author for GitHub Actions bot
Replace GITHUB_PAT env var with GH_PAT (#53)
Replace committer_name and committer_email inputs with committer
2020-05-11 14:59:39 +02:00

40 lines
1.0 KiB
JSON

{
"name": "github-pages",
"description": "GitHub Action to deploy to GitHub Pages",
"main": "lib/main.js",
"scripts": {
"build": "tsc && ncc build",
"format": "prettier --write **/*.ts",
"format-check": "prettier --check **/*.ts",
"cleanup-paths": "removeNPMAbsolutePaths ./ --force --fields _where _args",
"pre-checkin": "npm run format && npm run cleanup-paths && npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/crazy-max/ghaction-github-pages.git"
},
"keywords": [
"actions",
"github",
"pages",
"deploy"
],
"author": "CrazyMax",
"license": "MIT",
"dependencies": {
"@actions/core": "^1.2.4",
"@actions/exec": "^1.0.4",
"addressparser": "^1.0.1",
"fs-extra": "^9.0.0"
},
"devDependencies": {
"@actions/io": "^1.0.2",
"@types/fs-extra": "^8.1.0",
"@types/node": "^13.13.5",
"@zeit/ncc": "^0.22.1",
"prettier": "^2.0.5",
"removeNPMAbsolutePaths": "^2.0.0",
"typescript": "^3.8.3",
"typescript-formatter": "^7.2.2"
}
}