mirror of
https://github.com/peaceiris/actions-gh-pages.git
synced 2025-07-14 05:53:18 +08:00
80 lines
2.1 KiB
JSON
80 lines
2.1 KiB
JSON
{
|
|
"name": "actions-github-pages",
|
|
"version": "4.0.0",
|
|
"description": "GitHub Actions for GitHub Pages",
|
|
"main": "lib/index.js",
|
|
"engines": {
|
|
"node": ">=v20.11.0",
|
|
"npm": ">=10.2.4"
|
|
},
|
|
"scripts": {
|
|
"postinstall": "npx husky install",
|
|
"all": "npm run format && npm run lint && npm test",
|
|
"lint": "eslint ./{src,__tests__}/**/*.ts",
|
|
"lint:fix": "eslint --fix ./{src,__tests__}/**/*.ts",
|
|
"test": "jest --coverage --verbose --detectOpenHandles",
|
|
"build": "ncc build ./src/index.ts -o lib --minify",
|
|
"tsc": "tsc",
|
|
"format": "prettier --write '**/*.ts'",
|
|
"format:check": "prettier --check '**/*.ts'",
|
|
"release": "standard-version"
|
|
},
|
|
"lint-staged": {
|
|
"{src,__tests__}/**/*.ts": [
|
|
"prettier --check",
|
|
"eslint"
|
|
],
|
|
"README.md": [
|
|
"npx doctoc@2.1.0 --github"
|
|
]
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/peaceiris/actions-gh-pages.git"
|
|
},
|
|
"keywords": [
|
|
"GitHub Actions",
|
|
"Actions",
|
|
"JavaScript Action",
|
|
"TypeScript Action",
|
|
"GitHub Pages",
|
|
"gh-pages"
|
|
],
|
|
"author": "peaceiris",
|
|
"license": "MIT",
|
|
"bugs": {
|
|
"url": "https://github.com/peaceiris/actions-gh-pages/issues"
|
|
},
|
|
"homepage": "https://github.com/peaceiris/actions-gh-pages#readme",
|
|
"dependencies": {
|
|
"@actions/core": "^1.10.0",
|
|
"@actions/exec": "^1.1.1",
|
|
"@actions/github": "^5.1.1",
|
|
"@actions/glob": "^0.5.0",
|
|
"@actions/io": "^1.1.2",
|
|
"@types/shelljs": "^0.8.11",
|
|
"shelljs": "^0.8.5"
|
|
},
|
|
"devDependencies": {
|
|
"@types/jest": "^29.2.6",
|
|
"@types/js-yaml": "^4.0.5",
|
|
"@types/node": "~16",
|
|
"@typescript-eslint/eslint-plugin": "^5.48.2",
|
|
"@typescript-eslint/parser": "^5.48.2",
|
|
"@vercel/ncc": "^0.38.0",
|
|
"eslint": "^8.32.0",
|
|
"eslint-config-prettier": "^9.0.0",
|
|
"eslint-plugin-jest": "^27.2.1",
|
|
"eslint-plugin-prettier": "^4.2.1",
|
|
"husky": "^8.0.3",
|
|
"jest": "^29.3.1",
|
|
"jest-circus": "^29.3.1",
|
|
"js-yaml": "^4.1.0",
|
|
"lint-staged": "^13.1.0",
|
|
"prettier": "2.8.8",
|
|
"standard-version": "^9.1.1",
|
|
"ts-jest": "^29.0.5",
|
|
"typescript": "^4.9.4"
|
|
}
|
|
}
|