1
mirror of https://github.com/jakejarvis/hugo-extended.git synced 2025-04-26 21:38:26 -04:00
hugo-extended/package.json
2022-02-11 17:23:45 +02:00

47 lines
1.0 KiB
JSON

{
"name": "hugo-bin",
"version": "0.80.2",
"hugoVersion": "0.92.2",
"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>",
"license": "MIT",
"type": "module",
"exports": "./index.js",
"bin": {
"hugo": "cli.js"
},
"dependencies": {
"bin-wrapper": "^4.1.0",
"picocolors": "^1.0.0",
"pkg-conf": "^4.0.0",
"rimraf": "^3.0.2"
},
"devDependencies": {
"bin-check": "^4.1.0",
"eslint": "^8.7.0",
"uvu": "^0.5.3"
},
"scripts": {
"lint": "eslint .",
"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": "^12.20.0 || ^14.13.1 || >=16.0.0"
}
}