2019-09-15 23:27:57 +00:00
|
|
|
{
|
2020-01-26 09:32:24 +00:00
|
|
|
"name": "actions-hugo",
|
2020-02-04 02:47:09 +00:00
|
|
|
"version": "2.4.5",
|
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-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",
|
|
|
|
"eslint",
|
2020-01-19 20:09:09 +00:00
|
|
|
"jest --bail --findRelatedTests"
|
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-01-24 02:16:02 +00:00
|
|
|
"@actions/core": "^1.2.2",
|
2020-01-17 15:52:59 +00:00
|
|
|
"@actions/exec": "^1.0.3",
|
|
|
|
"@actions/io": "^1.0.2",
|
2020-01-24 04:27:36 +00:00
|
|
|
"@actions/tool-cache": "^1.3.1",
|
2020-01-17 19:36:10 +00:00
|
|
|
"node-fetch": "^2.6.0"
|
2019-09-15 23:27:57 +00:00
|
|
|
},
|
|
|
|
"devDependencies": {
|
2020-02-20 02:14:57 +00:00
|
|
|
"@types/jest": "^25.1.3",
|
2020-02-19 08:25:28 +00:00
|
|
|
"@types/node": "~12",
|
2020-02-25 03:20:57 +00:00
|
|
|
"@types/node-fetch": "^2.5.5",
|
2020-02-25 03:10:38 +00:00
|
|
|
"@typescript-eslint/eslint-plugin": "^2.21.0",
|
2020-02-25 02:21:15 +00:00
|
|
|
"@typescript-eslint/parser": "^2.21.0",
|
2020-02-25 03:37:49 +00:00
|
|
|
"@zeit/ncc": "^0.21.1",
|
2019-12-23 08:40:26 +00:00
|
|
|
"eslint": "^6.8.0",
|
2020-02-25 03:25:38 +00:00
|
|
|
"eslint-plugin-jest": "^23.8.0",
|
2020-02-13 02:15:13 +00:00
|
|
|
"husky": "^4.2.3",
|
2020-01-23 21:08:25 +00:00
|
|
|
"jest": "^25.1.0",
|
2020-01-23 20:56:05 +00:00
|
|
|
"jest-circus": "^25.1.0",
|
2020-02-26 02:16:41 +00:00
|
|
|
"lint-staged": "^10.0.8",
|
2020-02-20 02:24:05 +00:00
|
|
|
"nock": "^12.0.1",
|
2019-11-11 13:17:46 +00:00
|
|
|
"prettier": "1.19.1",
|
2020-01-23 21:29:50 +00:00
|
|
|
"standard-version": "^7.1.0",
|
2020-02-20 02:19:54 +00:00
|
|
|
"ts-jest": "^25.2.1",
|
2020-02-21 02:17:14 +00:00
|
|
|
"typescript": "^3.8.2"
|
2019-09-15 23:27:57 +00:00
|
|
|
}
|
|
|
|
}
|