2019-09-16 01:27:57 +02:00
|
|
|
{
|
2020-01-26 10:32:24 +01:00
|
|
|
"name": "actions-hugo",
|
2021-05-27 06:04:54 +02:00
|
|
|
"version": "2.5.0",
|
2020-01-18 04:23:58 +01:00
|
|
|
"description": "GitHub Actions for Hugo",
|
2019-09-18 00:32:17 +02:00
|
|
|
"main": "lib/index.js",
|
2020-01-29 03:03:45 +01:00
|
|
|
"engines": {
|
|
|
|
"node": ">=12.14.1",
|
|
|
|
"npm": ">=6.13.7"
|
|
|
|
},
|
2019-09-16 01:27:57 +02:00
|
|
|
"scripts": {
|
2020-03-27 11:07:48 +01:00
|
|
|
"all": "npm run format:check && npm run lint && npm test",
|
2020-01-18 02:29:06 +01:00
|
|
|
"lint": "eslint ./{src,__tests__}/**/*.ts",
|
|
|
|
"lint:fix": "eslint --fix ./{src,__tests__}/**/*.ts",
|
2019-09-21 03:41:21 +02:00
|
|
|
"test": "jest --coverage --verbose",
|
2019-11-17 12:39:17 +01:00
|
|
|
"build": "ncc build ./src/index.ts -o lib",
|
2019-09-21 03:41:21 +02:00
|
|
|
"tsc": "tsc",
|
|
|
|
"format": "prettier --write **/*.ts",
|
2020-01-17 16:52:16 +01:00
|
|
|
"format:check": "prettier --check **/*.ts",
|
2021-03-06 15:04:54 +01:00
|
|
|
"release": "standard-version",
|
|
|
|
"postinstall": "npx husky install"
|
2019-09-22 01:13:23 +02:00
|
|
|
},
|
|
|
|
"lint-staged": {
|
2020-06-21 22:40:06 +02:00
|
|
|
"{src,__tests__}/**/*.ts": [
|
2019-09-22 01:13:23 +02:00
|
|
|
"prettier --check",
|
2020-03-27 11:07:48 +01:00
|
|
|
"eslint"
|
2020-05-24 05:11:45 +02:00
|
|
|
],
|
|
|
|
"README.md": [
|
2020-12-19 17:45:27 +01:00
|
|
|
"npx doctoc@2.0.0 --github"
|
2019-09-22 01:13:23 +02:00
|
|
|
]
|
|
|
|
},
|
2019-09-16 01:27:57 +02:00
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
|
|
|
"url": "git+https://github.com/peaceiris/actions-hugo.git"
|
|
|
|
},
|
|
|
|
"keywords": [
|
|
|
|
"GitHub",
|
|
|
|
"Actions",
|
|
|
|
"JavaScript",
|
2019-09-21 15:45:31 +02:00
|
|
|
"TypeScript",
|
|
|
|
"Hugo",
|
|
|
|
"Setup"
|
2019-09-16 01:27:57 +02:00
|
|
|
],
|
|
|
|
"author": "peaceiris",
|
|
|
|
"license": "MIT",
|
|
|
|
"bugs": {
|
|
|
|
"url": "https://github.com/peaceiris/actions-hugo/issues"
|
|
|
|
},
|
|
|
|
"homepage": "https://github.com/peaceiris/actions-hugo#readme",
|
|
|
|
"dependencies": {
|
2021-04-16 18:36:36 +02:00
|
|
|
"@actions/core": "^1.2.7",
|
2020-04-29 08:27:50 +02:00
|
|
|
"@actions/exec": "^1.0.4",
|
2021-04-05 10:30:19 +02:00
|
|
|
"@actions/io": "^1.1.0",
|
2020-11-16 03:08:22 +01:00
|
|
|
"@actions/tool-cache": "^1.6.1",
|
2020-09-07 06:23:21 +02:00
|
|
|
"node-fetch": "^2.6.1"
|
2019-09-16 01:27:57 +02:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2021-02-10 05:52:39 +01:00
|
|
|
"@types/jest": "^26.0.20",
|
2020-02-19 09:25:28 +01:00
|
|
|
"@types/node": "~12",
|
2021-02-10 05:52:39 +01:00
|
|
|
"@types/node-fetch": "^2.5.8",
|
2021-03-06 15:07:08 +01:00
|
|
|
"@typescript-eslint/eslint-plugin": "^4.16.1",
|
|
|
|
"@typescript-eslint/parser": "^4.16.1",
|
2021-02-10 05:52:39 +01:00
|
|
|
"@vercel/ncc": "^0.27.0",
|
2021-03-06 15:07:08 +01:00
|
|
|
"eslint": "^7.21.0",
|
|
|
|
"eslint-plugin-jest": "^24.1.5",
|
|
|
|
"husky": "^5.1.3",
|
2020-11-12 14:55:44 +01:00
|
|
|
"jest": "^26.6.3",
|
|
|
|
"jest-circus": "^26.6.3",
|
2021-02-10 05:52:39 +01:00
|
|
|
"lint-staged": "^10.5.4",
|
2021-03-06 15:07:08 +01:00
|
|
|
"nock": "^13.0.10",
|
2021-02-10 05:52:39 +01:00
|
|
|
"prettier": "2.2.1",
|
2021-03-06 15:07:08 +01:00
|
|
|
"standard-version": "^9.1.1",
|
|
|
|
"ts-jest": "^26.5.3",
|
|
|
|
"typescript": "^4.2.3"
|
2019-09-16 01:27:57 +02:00
|
|
|
}
|
|
|
|
}
|