mirror of
https://github.com/status-im/actions-gh-pages.git
synced 2025-01-26 12:59:54 +00:00
00fde1eb97
* feat: Add disable_nojekyll and cname options * docs: Add cname and disable_nojekyll * chore: Add vim * chore(release): 3.3.0-0 * ci: Add codecov/codecov-action * refactor: Enhance warning message - Add .nojekyll file by default to only the master and gh-pages branches. When the file already exists, this action does nothing. - When we set other branches to publish_branch, this action does not add .nojekyll file. cf. https://github.com/peaceiris/actions-gh-pages/issues/112#issuecomment-589678269 Close #112 Co-authored-by: Daniel Himmelstein <daniel.himmelstein@gmail.com> Co-authored-by: Nicolas Vanhoren <nicolas.vanhoren@gmail.com>
76 lines
2.0 KiB
JSON
76 lines
2.0 KiB
JSON
{
|
|
"name": "actions-github-pages",
|
|
"version": "3.3.0-0",
|
|
"description": "GitHub Actions for GitHub Pages",
|
|
"main": "lib/index.js",
|
|
"engines": {
|
|
"node": ">=12.14.1",
|
|
"npm": ">=6.13.7"
|
|
},
|
|
"scripts": {
|
|
"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",
|
|
"tsc": "tsc",
|
|
"format": "prettier --write **/*.ts",
|
|
"format:check": "prettier --check **/*.ts",
|
|
"release": "standard-version",
|
|
"update-deps": "(git diff 'HEAD@{1}' --name-only | grep 'package-lock.json' > /dev/null) && npm ci || :"
|
|
},
|
|
"husky": {
|
|
"skipCI": true,
|
|
"hooks": {
|
|
"pre-commit": "lint-staged",
|
|
"post-merge": "npm run update-deps; git remote prune origin"
|
|
}
|
|
},
|
|
"lint-staged": {
|
|
"src/**/*.ts": [
|
|
"prettier --check",
|
|
"eslint"
|
|
]
|
|
},
|
|
"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.2.2",
|
|
"@actions/exec": "^1.0.3",
|
|
"@actions/github": "^2.1.1",
|
|
"@actions/io": "^1.0.2"
|
|
},
|
|
"devDependencies": {
|
|
"@types/jest": "^25.1.3",
|
|
"@types/node": "~12",
|
|
"@typescript-eslint/eslint-plugin": "^2.20.0",
|
|
"@typescript-eslint/parser": "^2.20.0",
|
|
"@zeit/ncc": "^0.21.1",
|
|
"eslint": "^6.8.0",
|
|
"eslint-plugin-jest": "^23.7.0",
|
|
"husky": "^4.2.3",
|
|
"jest": "^25.1.0",
|
|
"jest-circus": "^25.1.0",
|
|
"lint-staged": "^10.0.7",
|
|
"prettier": "1.19.1",
|
|
"standard-version": "^7.1.0",
|
|
"ts-jest": "^25.2.1",
|
|
"typescript": "^3.8.2"
|
|
}
|
|
}
|