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