actions-gh-pages/package.json

87 lines
2.3 KiB
JSON
Raw Normal View History

{
"name": "actions-github-pages",
2020-10-20 14:58:59 +00:00
"version": "3.7.3",
"description": "GitHub Actions for GitHub Pages",
"main": "lib/index.js",
"engines": {
"node": ">=12.16.3",
2020-04-14 01:31:15 +00:00
"npm": ">=6.14.4"
},
"scripts": {
2020-03-16 00:43:59 +00:00
"all": "npm run format && npm run lint && npm test",
"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",
"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,__tests__}/**/*.ts": [
"prettier --check",
"eslint"
2020-04-22 04:33:06 +00:00
],
"README.md": [
2020-12-05 00:47:15 +00:00
"npx doctoc@2.0.0 --github"
]
},
"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.6",
"@actions/exec": "^1.0.4",
"@actions/github": "^4.0.0",
"@actions/glob": "^0.1.1",
"@actions/io": "^1.0.2",
"@types/shelljs": "^0.8.8",
"shelljs": "^0.8.4"
},
"devDependencies": {
2021-02-03 01:42:22 +00:00
"@types/jest": "^26.0.20",
"@types/js-yaml": "^4.0.0",
"@types/node": "~12",
2021-02-03 01:42:22 +00:00
"@typescript-eslint/eslint-plugin": "^4.14.2",
"@typescript-eslint/parser": "^4.14.2",
"@vercel/ncc": "^0.27.0",
"eslint": "^7.19.0",
"eslint-config-prettier": "^7.2.0",
2020-11-13 09:13:58 +00:00
"eslint-plugin-jest": "^24.1.3",
2021-01-05 15:34:54 +00:00
"eslint-plugin-prettier": "^3.3.1",
2021-02-03 01:42:22 +00:00
"husky": "^4.3.8",
2020-11-13 09:13:58 +00:00
"jest": "^26.6.3",
"jest-circus": "^26.6.3",
2021-01-05 15:34:54 +00:00
"js-yaml": "^4.0.0",
2020-12-18 06:09:01 +00:00
"lint-staged": "^10.5.3",
"prettier": "2.2.1",
2021-01-05 15:34:54 +00:00
"standard-version": "^9.1.0",
2021-02-03 01:42:22 +00:00
"ts-jest": "^26.5.0",
2020-12-18 06:09:01 +00:00
"typescript": "^4.1.3"
}
}