{ "name": "actions-github-pages", "version": "3.9.1", "description": "GitHub Actions for GitHub Pages", "main": "lib/index.js", "engines": { "node": ">=v16.19.0", "npm": ">=9.3.0" }, "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.3.0", "@actions/io": "^1.1.2", "@types/shelljs": "^0.8.11", "shelljs": "^0.8.5" }, "devDependencies": { "@types/jest": "^29.2.5", "@types/js-yaml": "^4.0.5", "@types/node": "~16", "@typescript-eslint/eslint-plugin": "^5.48.1", "@typescript-eslint/parser": "^5.48.1", "@vercel/ncc": "^0.36.0", "eslint": "^8.32.0", "eslint-config-prettier": "^8.6.0", "eslint-plugin-jest": "^26.9.0", "eslint-plugin-prettier": "^4.2.1", "husky": "^8.0.3", "jest": "^26.6.3", "jest-circus": "^26.6.3", "js-yaml": "^4.1.0", "lint-staged": "^13.1.0", "prettier": "2.8.3", "standard-version": "^9.1.1", "ts-jest": "^26.5.6", "typescript": "^4.2.3" } }