/ package.json
package.json
1 { 2 "name": "actions-github-pages", 3 "version": "3.8.0", 4 "description": "GitHub Actions for GitHub Pages", 5 "main": "lib/index.js", 6 "engines": { 7 "node": ">=12.20.1", 8 "npm": ">=7.5.2" 9 }, 10 "scripts": { 11 "postinstall": "npx husky install", 12 "all": "npm run format && npm run lint && npm test", 13 "lint": "eslint ./{src,__tests__}/**/*.ts", 14 "lint:fix": "eslint --fix ./{src,__tests__}/**/*.ts", 15 "test": "jest --coverage --verbose --detectOpenHandles", 16 "build": "ncc build ./src/index.ts -o lib --minify", 17 "tsc": "tsc", 18 "format": "prettier --write **/*.ts", 19 "format:check": "prettier --check **/*.ts", 20 "release": "standard-version" 21 }, 22 "lint-staged": { 23 "{src,__tests__}/**/*.ts": [ 24 "prettier --check", 25 "eslint" 26 ], 27 "README.md": [ 28 "npx doctoc@2.0.0 --github" 29 ] 30 }, 31 "repository": { 32 "type": "git", 33 "url": "git+https://github.com/peaceiris/actions-gh-pages.git" 34 }, 35 "keywords": [ 36 "GitHub Actions", 37 "Actions", 38 "JavaScript Action", 39 "TypeScript Action", 40 "GitHub Pages", 41 "gh-pages" 42 ], 43 "author": "peaceiris", 44 "license": "MIT", 45 "bugs": { 46 "url": "https://github.com/peaceiris/actions-gh-pages/issues" 47 }, 48 "homepage": "https://github.com/peaceiris/actions-gh-pages#readme", 49 "dependencies": { 50 "@actions/core": "^1.2.7", 51 "@actions/exec": "^1.0.4", 52 "@actions/github": "^4.0.0", 53 "@actions/glob": "^0.1.1", 54 "@actions/io": "^1.1.0", 55 "@types/shelljs": "^0.8.8", 56 "shelljs": "^0.8.4" 57 }, 58 "devDependencies": { 59 "@types/jest": "^26.0.20", 60 "@types/js-yaml": "^4.0.0", 61 "@types/node": "~12", 62 "@typescript-eslint/eslint-plugin": "^4.16.1", 63 "@typescript-eslint/parser": "^4.16.1", 64 "@vercel/ncc": "^0.27.0", 65 "eslint": "^7.21.0", 66 "eslint-config-prettier": "^8.1.0", 67 "eslint-plugin-jest": "^24.1.5", 68 "eslint-plugin-prettier": "^3.3.1", 69 "husky": "^5.1.3", 70 "jest": "^26.6.3", 71 "jest-circus": "^26.6.3", 72 "js-yaml": "^4.0.0", 73 "lint-staged": "^10.5.4", 74 "prettier": "2.2.1", 75 "standard-version": "^9.1.1", 76 "ts-jest": "^26.5.3", 77 "typescript": "^4.2.3" 78 } 79 }