actions-hugo/package.json

38 lines
820 B
JSON
Raw Normal View History

{
2019-09-15 10:20:55 +02:00
"name": "hugo-action",
"version": "0.1.0",
"description": "Hugo setup action",
"main": "index.js",
"scripts": {
"lint": "eslint index.js",
2019-09-15 22:02:11 +02:00
"test": "jest",
2019-09-15 13:24:31 +02:00
"build": "npm prune --production"
},
"repository": {
"type": "git",
2019-09-15 10:20:55 +02:00
"url": "git+https://github.com/peaceiris/actions-hugo.git"
},
"keywords": [
"GitHub",
"Actions",
2019-09-15 10:20:55 +02:00
"JavaScript",
"Hugo"
],
2019-09-15 13:24:31 +02:00
"author": "peaceiris",
"license": "MIT",
"bugs": {
2019-09-15 10:20:55 +02:00
"url": "https://github.com/peaceiris/actions-hugo/issues"
},
2019-09-15 10:20:55 +02:00
"homepage": "https://github.com/peaceiris/actions-hugo#readme",
"dependencies": {
2019-09-15 18:39:51 +02:00
"@actions/core": "^1.1.0",
"@actions/io": "^1.0.1",
2019-09-15 20:54:38 +02:00
"@actions/tool-cache": "^1.1.1",
"xmlhttprequest": "^1.8.0"
},
"devDependencies": {
"eslint": "^6.3.0",
"jest": "^24.9.0"
}
}