2019-09-16 08:27:57 +09:00
|
|
|
{
|
|
|
|
|
"name": "hugo-action",
|
2019-09-18 05:14:10 +09:00
|
|
|
"version": "2.1.0",
|
2019-09-16 08:27:57 +09:00
|
|
|
"description": "Hugo setup action",
|
2019-09-18 07:32:17 +09:00
|
|
|
"main": "lib/index.js",
|
2019-09-16 08:27:57 +09:00
|
|
|
"scripts": {
|
2019-09-21 06:49:40 +09:00
|
|
|
"lint": "eslint ./src/**/*.ts",
|
|
|
|
|
"lint:fix": "eslint --fix ./src/**/*.ts",
|
2019-09-20 06:54:14 +09:00
|
|
|
"test": "jest --coverage --verbose",
|
2019-09-21 06:49:40 +09:00
|
|
|
"build": "npm prune --production",
|
|
|
|
|
"tsc": "tsc",
|
|
|
|
|
"format": "prettier --write **/*.ts",
|
|
|
|
|
"format:check": "prettier --check **/*.ts"
|
2019-09-16 08:27:57 +09:00
|
|
|
},
|
|
|
|
|
"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.0",
|
2019-09-18 04:11:47 +09:00
|
|
|
"@actions/exec": "^1.0.1",
|
2019-09-16 08:27:57 +09:00
|
|
|
"@actions/io": "^1.0.1",
|
|
|
|
|
"@actions/tool-cache": "^1.1.1",
|
|
|
|
|
"xmlhttprequest": "^1.8.0"
|
|
|
|
|
},
|
|
|
|
|
"devDependencies": {
|
2019-09-21 06:49:40 +09:00
|
|
|
"@types/jest": "^24.0.18",
|
|
|
|
|
"@types/node": "^12.7.5",
|
|
|
|
|
"@typescript-eslint/parser": "^2.3.0",
|
2019-09-16 15:20:59 +09:00
|
|
|
"eslint": "^6.4.0",
|
2019-09-21 06:49:40 +09:00
|
|
|
"jest": "^24.9.0",
|
|
|
|
|
"jest-circus": "^24.9.0",
|
|
|
|
|
"ts-jest": "^24.1.0",
|
|
|
|
|
"typescript": "^3.6.3"
|
2019-09-16 08:27:57 +09:00
|
|
|
}
|
|
|
|
|
}
|