actions-hugo/package.json

76 lines
2.0 KiB
JSON
Raw Normal View History

2019-09-15 23:27:57 +00:00
{
"name": "hugo-action",
2020-01-24 04:37:14 +00:00
"version": "2.4.3",
2020-01-18 03:23:58 +00:00
"description": "GitHub Actions for Hugo",
"main": "lib/index.js",
2019-09-15 23:27:57 +00:00
"scripts": {
"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",
"update-deps": "(git diff 'HEAD@{1}' --name-only | grep 'package-lock.json' > /dev/null) && npm ci || :"
2019-09-15 23:27:57 +00:00
},
"husky": {
"skipCI": true,
"hooks": {
"pre-commit": "lint-staged",
"post-merge": "npm run update-deps; git remote prune origin"
}
},
"lint-staged": {
"src/**/*.ts": [
"prettier --check",
"eslint",
2020-01-19 20:09:09 +00:00
"jest --bail --findRelatedTests"
]
},
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": {
"@actions/core": "^1.2.2",
2020-01-17 15:52:59 +00:00
"@actions/exec": "^1.0.3",
"@actions/io": "^1.0.2",
"@actions/tool-cache": "^1.3.1",
"node-fetch": "^2.6.0"
2019-09-15 23:27:57 +00:00
},
"devDependencies": {
"@types/jest": "^24.9.1",
"@types/node": "^13.5.0",
"@types/node-fetch": "^2.5.4",
"@typescript-eslint/eslint-plugin": "^2.17.0",
"@typescript-eslint/parser": "^2.17.0",
2020-01-10 01:16:11 +00:00
"@zeit/ncc": "^0.21.0",
2019-12-23 08:40:26 +00:00
"eslint": "^6.8.0",
"eslint-plugin-jest": "^23.6.0",
"husky": "^4.2.1",
"jest": "^25.1.0",
"jest-circus": "^25.1.0",
"lint-staged": "^10.0.2",
"nock": "^11.7.2",
2019-11-11 13:17:46 +00:00
"prettier": "1.19.1",
"standard-version": "^7.1.0",
"ts-jest": "^25.0.0",
2020-01-17 15:52:59 +00:00
"typescript": "^3.7.5"
2019-09-15 23:27:57 +00:00
}
}