UNPKG

deploy-to-github-pages

Version:

A Node library that makes deploying a directory on a branch to GitHub pages easy and automatic.

72 lines (71 loc) 1.86 kB
{ "name": "deploy-to-github-pages", "version": "1.0.1", "description": "A Node library that makes deploying a directory on a branch to GitHub pages easy and automatic.", "bin": { "deploy-to-github-pages": "bin/deploy-to-github-pages.js" }, "main": "index.js", "files": [ "bin/", "lib/" ], "scripts": { "test": "yarn test:once --watch", "test:once": "jest", "lint": "eslint '**/*.js'", "lint:fix": "yarn lint --fix", "check-changelog": "release-to-github-with-changelog-pre-release-checks", "release-to-github": "release-to-github-with-changelog" }, "repository": { "type": "git", "url": "git+https://github.com/oliverviljamaa/deploy-to-github-pages.git" }, "keywords": [ "deploy", "gh-pages", "github", "pages", "circleci", "branch" ], "author": "Oliver Viljamaa", "license": "MIT", "bugs": { "url": "https://github.com/oliverviljamaa/deploy-to-github-pages/issues" }, "homepage": "https://github.com/oliverviljamaa/deploy-to-github-pages#readme", "dependencies": { "@octokit/rest": "^15.15.1", "commander": "^2.19.0", "gh-pages": "^3.1.0", "shelljs": "^0.8.2" }, "devDependencies": { "@transferwise/eslint-config": "4.0.1", "eslint": "^6.5.1", "eslint-plugin-import": "^2.18.2", "eslint-plugin-jsx-a11y": "^6.2.3", "eslint-plugin-prettier": "^3.1.1", "eslint-plugin-react": "^7.15.1", "eslint-plugin-react-hooks": "^1.7.0", "husky": "^3.0.9", "jest": "^23.6.0", "lint-staged": "^9.4.2", "prettier": "^1.18.2", "release-to-github-with-changelog": "^1.2.0" }, "lint-staged": { "*.js": [ "eslint --fix", "git add" ] }, "husky": { "hooks": { "pre-commit": "lint-staged" } }, "prettier": "@transferwise/eslint-config/.prettierrc.js" }