2019-09-15 23:27:57 +00:00
|
|
|
{
|
2020-01-26 09:32:24 +00:00
|
|
|
"name": "actions-hugo",
|
2020-04-29 04:44:08 +00:00
|
|
|
"version": "2.4.11",
|
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": {
|
|
|
|
"src/**/*.ts": [
|
|
|
|
"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-04-30 17:15:13 +00:00
|
|
|
"@actions/core": "^1.2.4",
|
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-05-20 02:29:21 +00:00
|
|
|
"@actions/tool-cache": "^1.5.5",
|
2020-01-17 19:36:10 +00:00
|
|
|
"node-fetch": "^2.6.0"
|
2019-09-15 23:27:57 +00:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2020-06-11 02:11:16 +00:00
|
|
|
"@types/jest": "^26.0.0",
|
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-05-18 21:37:50 +00:00
|
|
|
"@typescript-eslint/eslint-plugin": "^2.34.0",
|
2020-05-18 21:45:06 +00:00
|
|
|
"@typescript-eslint/parser": "^2.34.0",
|
2020-05-23 10:14:58 +00:00
|
|
|
"@zeit/ncc": "^0.22.3",
|
2019-12-23 08:40:26 +00:00
|
|
|
"eslint": "^6.8.0",
|
2020-05-26 21:06:41 +00:00
|
|
|
"eslint-plugin-jest": "^23.13.2",
|
2020-04-09 21:33:20 +00:00
|
|
|
"husky": "^4.2.5",
|
2020-05-02 08:28:08 +00:00
|
|
|
"jest": "^25.5.4",
|
2020-05-05 15:16:54 +00:00
|
|
|
"jest-circus": "^26.0.1",
|
2020-06-18 03:15:09 +00:00
|
|
|
"lint-staged": "^10.2.11",
|
2020-03-17 11:56:13 +00:00
|
|
|
"nock": "^12.0.3",
|
2020-04-29 03:50:31 +00:00
|
|
|
"prettier": "2.0.5",
|
2020-05-06 20:07:12 +00:00
|
|
|
"standard-version": "^8.0.0",
|
2020-05-09 09:03:50 +00:00
|
|
|
"ts-jest": "^25.5.1",
|
2020-06-07 03:56:00 +00:00
|
|
|
"typescript": "^3.9.5"
|
2019-09-15 23:27:57 +00:00
|
|
|
}
|
|
|
|
}
|