ghaction-github-pages/package.json

41 lines
1.0 KiB
JSON
Raw Normal View History

2019-10-11 07:41:16 +08:00
{
"name": "github-pages",
2019-10-11 08:25:58 +08:00
"description": "GitHub Action to deploy to GitHub Pages",
2019-10-11 07:41:16 +08:00
"main": "lib/main.js",
2020-04-09 06:59:11 +08:00
"scripts": {
"build": "tsc && ncc build",
"format": "prettier --write **/*.ts",
"format-check": "prettier --check **/*.ts",
2020-05-07 06:12:11 +08:00
"cleanup-paths": "removeNPMAbsolutePaths ./ --force --fields _where _args",
"pre-checkin": "npm run format && npm run cleanup-paths && npm run build"
2020-04-09 06:59:11 +08:00
},
2019-10-11 07:41:16 +08:00
"repository": {
"type": "git",
"url": "git+https://github.com/crazy-max/ghaction-github-pages.git"
2019-10-11 07:41:16 +08:00
},
"keywords": [
"actions",
"github",
"pages",
"deploy"
],
"author": "CrazyMax",
"license": "MIT",
"dependencies": {
2020-05-04 07:11:38 +08:00
"@actions/core": "^1.2.4",
"@actions/exec": "^1.0.4",
"addressparser": "^1.0.1",
"fs-extra": "^9.0.0"
2019-10-11 07:41:16 +08:00
},
"devDependencies": {
"@actions/io": "^1.0.2",
"@types/fs-extra": "^9.0.0",
"@types/node": "^14.0.1",
"@zeit/ncc": "^0.22.2",
"prettier": "^2.0.5",
2020-05-07 06:12:11 +08:00
"removeNPMAbsolutePaths": "^2.0.0",
"typescript": "^3.9.2",
2019-10-11 07:41:16 +08:00
"typescript-formatter": "^7.2.2"
}
2020-05-11 21:00:05 +08:00
}