mirror of
https://github.com/jakejarvis/hugo-extended.git
synced 2025-04-26 14:38:28 -04:00
90 lines
1.8 KiB
JSON
90 lines
1.8 KiB
JSON
{
|
|
"name": "hugo-bin",
|
|
"version": "0.117.1",
|
|
"hugoVersion": "0.121.1",
|
|
"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": "bin/cli.js"
|
|
},
|
|
"dependencies": {
|
|
"@xhmikosr/bin-wrapper": "^11.0.2",
|
|
"pkg-conf": "^4.0.0"
|
|
},
|
|
"devDependencies": {
|
|
"@xhmikosr/bin-check": "^6.0.0",
|
|
"c8": "^8.0.1",
|
|
"uvu": "^0.5.6",
|
|
"xo": "^0.54.2"
|
|
},
|
|
"scripts": {
|
|
"lint": "xo",
|
|
"fix": "xo --fix",
|
|
"uvu": "uvu test",
|
|
"test": "npm run lint && npm run uvu",
|
|
"test:ci": "c8 npm run uvu",
|
|
"postinstall": "node lib/install.js"
|
|
},
|
|
"files": [
|
|
"bin/cli.js",
|
|
"lib/*.js",
|
|
"index.js"
|
|
],
|
|
"engines": {
|
|
"node": "^14.14.0 || >=16.0.0"
|
|
},
|
|
"xo": {
|
|
"space": true,
|
|
"rules": {
|
|
"arrow-body-style": "off",
|
|
"camelcase": [
|
|
"error",
|
|
{
|
|
"properties": "never"
|
|
}
|
|
],
|
|
"capitalized-comments": "off",
|
|
"comma-dangle": [
|
|
"error",
|
|
"never"
|
|
],
|
|
"operator-linebreak": [
|
|
"error",
|
|
"after"
|
|
],
|
|
"object-curly-spacing": [
|
|
"error",
|
|
"always"
|
|
],
|
|
"space-before-function-paren": [
|
|
"error",
|
|
"never"
|
|
],
|
|
"unicorn/prefer-top-level-await": "off",
|
|
"unicorn/prevent-abbreviations": "off"
|
|
}
|
|
}
|
|
}
|