1
mirror of https://github.com/jakejarvis/hugo-extended.git synced 2025-04-27 13:36:22 -04:00
hugo-extended/package.json
2023-03-18 18:45:59 +02:00

59 lines
1.2 KiB
JSON

{
"name": "hugo-bin",
"version": "0.101.1",
"hugoVersion": "0.111.3",
"description": "Binary wrapper for Hugo",
"repository": {
"type": "git",
"url": "git+https://github.com/fenneclab/hugo-bin.git"
},
"bugs": {
"url": "https://github.com/fenneclab/hugo-bin/issues"
},
"homepage": "https://github.com/fenneclab/hugo-bin#readme",
"author": "satoshun00 <shun.sato@fenneclab.com>",
"contributors": [
"XhmikosR <xhmikosr@gmail.com>"
],
"funding": [
{
"type": "github",
"url": "https://github.com/sponsors/XhmikosR"
}
],
"license": "MIT",
"type": "module",
"exports": {
".": "./index.js"
},
"bin": {
"hugo": "cli.js"
},
"dependencies": {
"@xhmikosr/bin-wrapper": "^5.0.0",
"picocolors": "^1.0.0",
"pkg-conf": "^4.0.0",
"rimraf": "^4.4.0"
},
"devDependencies": {
"bin-check": "^4.1.0",
"eslint": "^8.36.0",
"uvu": "^0.5.6"
},
"scripts": {
"lint": "eslint .",
"fix": "npm run lint -- --fix",
"uvu": "uvu test",
"test": "npm run lint && npm run uvu",
"postinstall": "rimraf vendor && node lib/install.js"
},
"files": [
"lib/*.js",
"cli.js",
"index.js"
],
"engines": {
"node": "^14.13.1 || >=16.0.0"
}
}