2020-02-05 05:34:19 +00:00
|
|
|
{
|
|
|
|
"name": "actions-github-pages",
|
2020-08-09 00:49:51 +00:00
|
|
|
"version": "3.7.0-8",
|
2020-02-05 05:34:19 +00:00
|
|
|
"description": "GitHub Actions for GitHub Pages",
|
|
|
|
"main": "lib/index.js",
|
|
|
|
"engines": {
|
2020-04-29 18:07:14 +00:00
|
|
|
"node": ">=12.16.3",
|
2020-04-14 01:31:15 +00:00
|
|
|
"npm": ">=6.14.4"
|
2020-02-05 05:34:19 +00:00
|
|
|
},
|
|
|
|
"scripts": {
|
2020-03-16 00:43:59 +00:00
|
|
|
"all": "npm run format && npm run lint && npm test",
|
2020-02-05 05:34:19 +00:00
|
|
|
"lint": "eslint ./{src,__tests__}/**/*.ts",
|
|
|
|
"lint:fix": "eslint --fix ./{src,__tests__}/**/*.ts",
|
|
|
|
"test": "jest --coverage --verbose --detectOpenHandles",
|
2020-03-25 10:36:13 +00:00
|
|
|
"build": "ncc build ./src/index.ts -o lib --minify",
|
2020-02-05 05:34:19 +00:00
|
|
|
"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": {
|
2020-06-21 20:40:26 +00:00
|
|
|
"{src,__tests__}/**/*.ts": [
|
2020-02-05 05:34:19 +00:00
|
|
|
"prettier --check",
|
|
|
|
"eslint"
|
2020-04-22 04:33:06 +00:00
|
|
|
],
|
|
|
|
"README.md": [
|
|
|
|
"npx doctoc@1.4.0 --github"
|
2020-02-05 05:34:19 +00:00
|
|
|
]
|
|
|
|
},
|
|
|
|
"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": {
|
2020-08-27 08:02:04 +00:00
|
|
|
"@actions/core": "^1.2.5",
|
2020-04-29 05:23:43 +00:00
|
|
|
"@actions/exec": "^1.0.4",
|
2020-06-29 02:56:04 +00:00
|
|
|
"@actions/github": "^4.0.0",
|
2020-07-25 12:54:06 +00:00
|
|
|
"@actions/glob": "^0.1.0",
|
2020-02-05 05:34:19 +00:00
|
|
|
"@actions/io": "^1.0.2"
|
|
|
|
},
|
|
|
|
"devDependencies": {
|
2020-09-03 02:21:03 +00:00
|
|
|
"@types/jest": "^26.0.13",
|
2020-09-04 11:35:04 +00:00
|
|
|
"@types/js-yaml": "^3.12.5",
|
2020-02-19 03:16:41 +00:00
|
|
|
"@types/node": "~12",
|
2020-05-19 19:24:13 +00:00
|
|
|
"@typescript-eslint/eslint-plugin": "^2.34.0",
|
2020-05-18 22:16:31 +00:00
|
|
|
"@typescript-eslint/parser": "^2.34.0",
|
2020-09-15 08:23:44 +00:00
|
|
|
"@vercel/ncc": "^0.24.1",
|
2020-02-05 05:34:19 +00:00
|
|
|
"eslint": "^6.8.0",
|
2020-05-26 12:45:48 +00:00
|
|
|
"eslint-config-prettier": "^6.11.0",
|
2020-09-14 08:57:35 +00:00
|
|
|
"eslint-plugin-jest": "^24.0.1",
|
2020-06-16 03:36:39 +00:00
|
|
|
"eslint-plugin-prettier": "^3.1.4",
|
2020-09-08 04:48:13 +00:00
|
|
|
"husky": "^4.3.0",
|
2020-08-24 02:22:59 +00:00
|
|
|
"jest": "^26.4.2",
|
2020-08-24 02:10:57 +00:00
|
|
|
"jest-circus": "^26.4.2",
|
2020-05-22 18:42:27 +00:00
|
|
|
"js-yaml": "^3.14.0",
|
2020-09-17 06:20:01 +00:00
|
|
|
"lint-staged": "^10.4.0",
|
2020-09-16 02:17:18 +00:00
|
|
|
"prettier": "2.1.2",
|
2020-08-17 02:50:28 +00:00
|
|
|
"standard-version": "^9.0.0",
|
2020-08-27 07:57:12 +00:00
|
|
|
"ts-jest": "^26.3.0",
|
2020-08-28 07:16:26 +00:00
|
|
|
"typescript": "^4.0.2"
|
2020-02-05 05:34:19 +00:00
|
|
|
}
|
|
|
|
}
|