ghaction-github-pages/package.json

43 lines
1.1 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": "ncc build src/main.ts --source-map --minify --license licenses.txt",
"lint": "eslint src/**/*.ts",
"format": "eslint --fix src/**/*.ts",
"all": "yarn run build && yarn run format"
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": {
"@actions/core": "^1.6.0",
"@actions/exec": "^1.1.0",
"addressparser": "^1.0.1",
"fs-extra": "^10.0.0"
2019-10-11 07:41:16 +08:00
},
"devDependencies": {
"@types/fs-extra": "^9.0.11",
"@types/node": "^16.11.26",
"@typescript-eslint/eslint-plugin": "^5.14.0",
"@typescript-eslint/parser": "^5.14.0",
"@vercel/ncc": "^0.33.3",
"eslint": "^8.11.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.0.0",
"prettier": "^2.3.1",
"ts-node": "^10.7.0",
"typescript": "^4.4.4"
2019-10-11 07:41:16 +08:00
}
2020-05-11 21:00:05 +08:00
}