mirror of
https://github.com/peaceiris/actions-hugo.git
synced 2026-06-04 10:38:41 +02:00
75 lines
1.9 KiB
JSON
75 lines
1.9 KiB
JSON
{
|
|
"name": "actions-hugo",
|
|
"version": "3.2.1",
|
|
"description": "GitHub Actions for Hugo",
|
|
"main": "lib/index.js",
|
|
"engines": {
|
|
"node": ">=24.15.0",
|
|
"npm": ">=11.12.1"
|
|
},
|
|
"scripts": {
|
|
"all": "npm run format:check && npm run lint && npm test",
|
|
"lint": "eslint ./{src,__tests__}/**/*.ts",
|
|
"lint:fix": "eslint --fix ./{src,__tests__}/**/*.ts",
|
|
"test": "jest --coverage --verbose",
|
|
"build": "ncc build ./src/index.ts -o lib",
|
|
"tsc": "tsc",
|
|
"format": "prettier --write '**/*.ts'",
|
|
"format:check": "prettier --check '**/*.ts'",
|
|
"release": "standard-version",
|
|
"postinstall": "npx husky install"
|
|
},
|
|
"lint-staged": {
|
|
"{src,__tests__}/**/*.ts": [
|
|
"prettier --check",
|
|
"eslint"
|
|
],
|
|
"README.md": [
|
|
"npx doctoc@2.1.0 --github"
|
|
]
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/peaceiris/actions-hugo.git"
|
|
},
|
|
"keywords": [
|
|
"GitHub",
|
|
"Actions",
|
|
"JavaScript",
|
|
"TypeScript",
|
|
"Hugo",
|
|
"Setup"
|
|
],
|
|
"author": "peaceiris",
|
|
"license": "MIT",
|
|
"bugs": {
|
|
"url": "https://github.com/peaceiris/actions-hugo/issues"
|
|
},
|
|
"homepage": "https://github.com/peaceiris/actions-hugo#readme",
|
|
"dependencies": {
|
|
"@actions/core": "3.0.1",
|
|
"@actions/exec": "3.0.0",
|
|
"@actions/io": "3.0.2",
|
|
"@actions/tool-cache": "4.0.0",
|
|
"node-fetch": "3.3.2"
|
|
},
|
|
"devDependencies": {
|
|
"@types/jest": "30.0.0",
|
|
"@types/node": "25.6.2",
|
|
"@typescript-eslint/eslint-plugin": "8.59.2",
|
|
"@typescript-eslint/parser": "8.59.2",
|
|
"@vercel/ncc": "0.38.4",
|
|
"eslint": "10.3.0",
|
|
"eslint-plugin-jest": "29.15.2",
|
|
"husky": "9.1.7",
|
|
"jest": "30.4.2",
|
|
"jest-circus": "30.4.2",
|
|
"lint-staged": "17.0.4",
|
|
"nock": "14.0.15",
|
|
"prettier": "3.8.3",
|
|
"standard-version": "9.5.0",
|
|
"ts-jest": "29.4.9",
|
|
"typescript": "6.0.3"
|
|
}
|
|
}
|