actions-hugo/package.json

76 lines
1.9 KiB
JSON
Raw Normal View History

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",
"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": {
"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",
2021-07-26 08:32:36 +02:00
"format": "prettier --write '**/*.ts'",
"format:check": "prettier --check '**/*.ts'",
"release": "standard-version",
"postinstall": "npx husky install"
},
"lint-staged": {
"{src,__tests__}/**/*.ts": [
"prettier --check",
"eslint"
2020-05-24 05:11:45 +02:00
],
"README.md": [
2021-10-14 06:01:48 +02:00
"npx doctoc@2.1.0 --github"
]
},
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": {
"@actions/core": "^1.6.0",
"@actions/exec": "^1.1.1",
"@actions/io": "^1.1.0",
"@actions/tool-cache": "^1.7.2",
"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",
"@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
}
}