2019-09-15 23:27:57 +00:00
|
|
|
{
|
2020-01-26 09:32:24 +00:00
|
|
|
"name": "actions-hugo",
|
2020-10-06 16:12:19 +00:00
|
|
|
"version": "2.4.13",
|
2020-01-18 03:23:58 +00:00
|
|
|
"description": "GitHub Actions for Hugo",
|
2019-09-17 22:32:17 +00:00
|
|
|
"main": "lib/index.js",
|
2020-01-29 02:03:45 +00:00
|
|
|
"engines": {
|
|
|
|
"node": ">=12.14.1",
|
|
|
|
"npm": ">=6.13.7"
|
|
|
|
},
|
2019-09-15 23:27:57 +00:00
|
|
|
"scripts": {
|
2020-03-27 10:07:48 +00:00
|
|
|
"all": "npm run format:check && npm run lint && npm test",
|
2020-01-18 01:29:06 +00:00
|
|
|
"lint": "eslint ./{src,__tests__}/**/*.ts",
|
|
|
|
"lint:fix": "eslint --fix ./{src,__tests__}/**/*.ts",
|
2019-09-21 01:41:21 +00:00
|
|
|
"test": "jest --coverage --verbose",
|
2019-11-17 11:39:17 +00:00
|
|
|
"build": "ncc build ./src/index.ts -o lib",
|
2019-09-21 01:41:21 +00:00
|
|
|
"tsc": "tsc",
|
|
|
|
"format": "prettier --write **/*.ts",
|
2020-01-17 15:52:16 +00:00
|
|
|
"format:check": "prettier --check **/*.ts",
|
|
|
|
"release": "standard-version",
|
|
|
|
"update-deps": "(git diff 'HEAD@{1}' --name-only | grep 'package-lock.json' > /dev/null) && npm ci || :"
|
2019-09-15 23:27:57 +00:00
|
|
|
},
|
2019-09-21 23:13:23 +00:00
|
|
|
"husky": {
|
|
|
|
"skipCI": true,
|
|
|
|
"hooks": {
|
2020-01-17 15:52:16 +00:00
|
|
|
"pre-commit": "lint-staged",
|
|
|
|
"post-merge": "npm run update-deps; git remote prune origin"
|
2019-09-21 23:13:23 +00:00
|
|
|
}
|
|
|
|
},
|
|
|
|
"lint-staged": {
|
2020-06-21 20:40:06 +00:00
|
|
|
"{src,__tests__}/**/*.ts": [
|
2019-09-21 23:13:23 +00:00
|
|
|
"prettier --check",
|
2020-03-27 10:07:48 +00:00
|
|
|
"eslint"
|
2020-05-24 03:11:45 +00:00
|
|
|
],
|
|
|
|
"README.md": [
|
|
|
|
"npx doctoc@1.4.0 --github"
|
2019-09-21 23:13:23 +00:00
|
|
|
]
|
|
|
|
},
|
2019-09-15 23:27:57 +00:00
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
|
|
|
"url": "git+https://github.com/peaceiris/actions-hugo.git"
|
|
|
|
},
|
|
|
|
"keywords": [
|
|
|
|
"GitHub",
|
|
|
|
"Actions",
|
|
|
|
"JavaScript",
|
2019-09-21 13:45:31 +00:00
|
|
|
"TypeScript",
|
|
|
|
"Hugo",
|
|
|
|
"Setup"
|
2019-09-15 23:27:57 +00:00
|
|
|
],
|
|
|
|
"author": "peaceiris",
|
|
|
|
"license": "MIT",
|
|
|
|
"bugs": {
|
|
|
|
"url": "https://github.com/peaceiris/actions-hugo/issues"
|
|
|
|
},
|
|
|
|
"homepage": "https://github.com/peaceiris/actions-hugo#readme",
|
|
|
|
"dependencies": {
|
2020-09-24 12:34:45 +00:00
|
|
|
"@actions/core": "^1.2.6",
|
2020-04-29 06:27:50 +00:00
|
|
|
"@actions/exec": "^1.0.4",
|
2020-01-17 15:52:59 +00:00
|
|
|
"@actions/io": "^1.0.2",
|
2020-07-17 02:21:01 +00:00
|
|
|
"@actions/tool-cache": "^1.6.0",
|
2020-09-07 04:23:21 +00:00
|
|
|
"node-fetch": "^2.6.1"
|
2019-09-15 23:27:57 +00:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2020-10-21 09:01:18 +00:00
|
|
|
"@types/jest": "^26.0.15",
|
2020-02-19 08:25:28 +00:00
|
|
|
"@types/node": "~12",
|
2020-04-29 03:47:39 +00:00
|
|
|
"@types/node-fetch": "^2.5.7",
|
2020-11-12 13:55:44 +00:00
|
|
|
"@typescript-eslint/eslint-plugin": "^4.7.0",
|
|
|
|
"@typescript-eslint/parser": "^4.7.0",
|
|
|
|
"@vercel/ncc": "^0.25.1",
|
|
|
|
"eslint": "^7.13.0",
|
|
|
|
"eslint-plugin-jest": "^24.1.2",
|
2020-09-08 04:48:03 +00:00
|
|
|
"husky": "^4.3.0",
|
2020-11-12 13:55:44 +00:00
|
|
|
"jest": "^26.6.3",
|
|
|
|
"jest-circus": "^26.6.3",
|
|
|
|
"lint-staged": "^10.5.1",
|
|
|
|
"nock": "^13.0.5",
|
2020-09-16 02:17:30 +00:00
|
|
|
"prettier": "2.1.2",
|
2020-08-17 02:50:33 +00:00
|
|
|
"standard-version": "^9.0.0",
|
2020-11-12 13:55:44 +00:00
|
|
|
"ts-jest": "^26.4.4",
|
|
|
|
"typescript": "^4.0.5"
|
2019-09-15 23:27:57 +00:00
|
|
|
}
|
|
|
|
}
|