Permalink
Cannot retrieve contributors at this time
79 lines (79 sloc)
2.12 KB
Name already in use
A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
gh-pages/package.json
Go to fileThis commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"name": "actions-github-pages", | |
"version": "3.9.0", | |
"description": "GitHub Actions for GitHub Pages", | |
"main": "lib/index.js", | |
"engines": { | |
"node": ">=16.18.0", | |
"npm": ">=8.19.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.0.1", | |
"@actions/glob": "^0.2.1", | |
"@actions/io": "^1.1.2", | |
"@types/shelljs": "^0.8.11", | |
"shelljs": "^0.8.5" | |
}, | |
"devDependencies": { | |
"@types/jest": "^26.0.20", | |
"@types/js-yaml": "^4.0.0", | |
"@types/node": "~12", | |
"@typescript-eslint/eslint-plugin": "^4.16.1", | |
"@typescript-eslint/parser": "^4.16.1", | |
"@vercel/ncc": "^0.27.0", | |
"eslint": "^7.21.0", | |
"eslint-config-prettier": "^8.1.0", | |
"eslint-plugin-jest": "^24.1.5", | |
"eslint-plugin-prettier": "^3.3.1", | |
"husky": "^5.1.3", | |
"jest": "^26.6.3", | |
"jest-circus": "^26.6.3", | |
"js-yaml": "^4.0.0", | |
"lint-staged": "^10.5.4", | |
"prettier": "2.2.1", | |
"standard-version": "^9.1.1", | |
"ts-jest": "^26.5.3", | |
"typescript": "^4.2.3" | |
} | |
} |