2020-02-05 13:34:19 +08:00
|
|
|
{
|
|
|
|
|
"name": "actions-github-pages",
|
2024-04-08 23:04:17 +08:00
|
|
|
"version": "4.0.0",
|
2020-02-05 13:34:19 +08:00
|
|
|
"description": "GitHub Actions for GitHub Pages",
|
|
|
|
|
"main": "lib/index.js",
|
|
|
|
|
"engines": {
|
2024-02-14 15:44:52 +08:00
|
|
|
"node": ">=v20.11.0",
|
|
|
|
|
"npm": ">=10.2.4"
|
2020-02-05 13:34:19 +08:00
|
|
|
},
|
|
|
|
|
"scripts": {
|
2021-03-06 22:13:46 +08:00
|
|
|
"postinstall": "npx husky install",
|
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",
|
2021-07-26 14:32:27 +08:00
|
|
|
"format": "prettier --write '**/*.ts'",
|
|
|
|
|
"format:check": "prettier --check '**/*.ts'",
|
2021-03-06 21:14:18 +08:00
|
|
|
"release": "standard-version"
|
|
|
|
|
},
|
|
|
|
|
"lint-staged": {
|
|
|
|
|
"{src,__tests__}/**/*.ts": [
|
|
|
|
|
"prettier --check",
|
|
|
|
|
"eslint"
|
|
|
|
|
],
|
|
|
|
|
"README.md": [
|
2021-10-14 12:01:57 +08:00
|
|
|
"npx doctoc@2.1.0 --github"
|
2021-03-06 21:14:18 +08:00
|
|
|
]
|
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": {
|
2022-10-23 22:43:50 +08:00
|
|
|
"@actions/core": "^1.10.0",
|
2022-04-01 14:30:59 +08:00
|
|
|
"@actions/exec": "^1.1.1",
|
2023-01-09 18:54:22 +08:00
|
|
|
"@actions/github": "^5.1.1",
|
2024-09-05 09:32:35 +08:00
|
|
|
"@actions/glob": "^0.5.0",
|
2022-04-01 14:30:36 +08:00
|
|
|
"@actions/io": "^1.1.2",
|
2022-02-05 16:31:41 +08:00
|
|
|
"@types/shelljs": "^0.8.11",
|
2022-02-04 19:35:07 +08:00
|
|
|
"shelljs": "^0.8.5"
|
2020-02-05 13:34:19 +08:00
|
|
|
},
|
|
|
|
|
"devDependencies": {
|
2023-01-19 10:47:29 +08:00
|
|
|
"@types/jest": "^29.2.6",
|
2023-01-09 18:55:00 +08:00
|
|
|
"@types/js-yaml": "^4.0.5",
|
2023-01-07 23:16:19 +08:00
|
|
|
"@types/node": "~16",
|
2023-01-17 11:17:12 +08:00
|
|
|
"@typescript-eslint/eslint-plugin": "^5.48.2",
|
|
|
|
|
"@typescript-eslint/parser": "^5.48.2",
|
2023-09-07 06:10:21 +08:00
|
|
|
"@vercel/ncc": "^0.38.0",
|
2023-01-16 10:47:41 +08:00
|
|
|
"eslint": "^8.32.0",
|
2024-09-04 22:20:40 +08:00
|
|
|
"eslint-config-prettier": "^9.0.0",
|
2023-01-17 21:40:50 +08:00
|
|
|
"eslint-plugin-jest": "^27.2.1",
|
2023-01-09 23:54:53 +08:00
|
|
|
"eslint-plugin-prettier": "^4.2.1",
|
2023-01-09 08:38:17 +08:00
|
|
|
"husky": "^8.0.3",
|
2023-01-17 21:30:07 +08:00
|
|
|
"jest": "^29.3.1",
|
|
|
|
|
"jest-circus": "^29.3.1",
|
2023-01-09 18:55:00 +08:00
|
|
|
"js-yaml": "^4.1.0",
|
2023-01-09 08:38:54 +08:00
|
|
|
"lint-staged": "^13.1.0",
|
2023-04-23 21:44:50 +08:00
|
|
|
"prettier": "2.8.8",
|
2021-03-06 21:14:18 +08:00
|
|
|
"standard-version": "^9.1.1",
|
2023-01-17 21:30:07 +08:00
|
|
|
"ts-jest": "^29.0.5",
|
2023-01-17 21:37:26 +08:00
|
|
|
"typescript": "^4.9.4"
|
2020-02-05 13:34:19 +08:00
|
|
|
}
|
|
|
|
|
}
|