actions-hugo/package.json
dependabot-preview[bot] 79d6bc5f6e build(deps): bump @actions/core from 1.1.0 to 1.1.1 (#35)
Bumps [@actions/core](https://github.com/actions/toolkit) from 1.1.0 to 1.1.1.
- [Release notes](https://github.com/actions/toolkit/releases)
- [Commits](https://github.com/actions/toolkit/compare/@actions/core@1.1.0...@actions/tool-cache@1.1.1)

Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
2019-09-21 11:24:42 +09:00

58 lines
1.5 KiB
JSON

{
"name": "hugo-action",
"version": "2.1.0",
"description": "Hugo setup action",
"main": "lib/index.js",
"scripts": {
"lint": "eslint ./src/**/*.ts",
"lint:fix": "eslint --fix ./src/**/*.ts",
"test": "jest --coverage --verbose",
"build": "npm prune --production",
"tsc": "tsc",
"format": "prettier --write **/*.ts",
"format:check": "prettier --check **/*.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/peaceiris/actions-hugo.git"
},
"keywords": [
"GitHub",
"Actions",
"JavaScript",
"Hugo"
],
"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.1.1",
"@actions/exec": "^1.0.1",
"@actions/io": "^1.0.1",
"@actions/tool-cache": "^1.1.1",
"xmlhttprequest": "^1.8.0"
},
"devDependencies": {
"@types/jest": "^24.0.18",
"@types/node": "^12.7.5",
"@typescript-eslint/parser": "^2.3.0",
"eslint": "^6.4.0",
"husky": "^3.0.5",
"jest": "^24.9.0",
"jest-circus": "^24.9.0",
"prettier": "1.18.2",
"ts-jest": "^24.1.0",
"typescript": "^3.6.3"
},
"husky": {
"skipCI": true,
"hooks": {
"pre-commit": "npm run tsc && npm run format",
"post-commit": "npm run build && git add node_modules/* && git commit -m \"deps: Husky commit correct node modules\""
}
}
}