mirror of
https://github.com/jakejarvis/hugo-extended.git
synced 2025-04-27 06:38:29 -04:00
72 lines
1.4 KiB
JSON
72 lines
1.4 KiB
JSON
{
|
|
"name": "hugo-extended",
|
|
"version": "0.64.1",
|
|
"hugoVersion": "0.64.1",
|
|
"description": "Plug-and-play binary wrapper for Hugo Extended, the awesomest static-site generator.",
|
|
"homepage": "https://github.com/jakejarvis/hugo-extended#readme",
|
|
"license": "MIT",
|
|
"author": {
|
|
"name": "Jake Jarvis",
|
|
"email": "jake@jarv.is",
|
|
"url": "https://github.com/jakejarvis"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/jakejarvis/hugo-extended.git"
|
|
},
|
|
"keywords": [
|
|
"hugo",
|
|
"hugo extended",
|
|
"gohugoio",
|
|
"cli",
|
|
"bin",
|
|
"binary",
|
|
"wrapper",
|
|
"static site generator"
|
|
],
|
|
"main": "index.js",
|
|
"dependencies": {
|
|
"bin-wrapper": "^4.1.0",
|
|
"rimraf": "^3.0.1"
|
|
},
|
|
"devDependencies": {
|
|
"bin-check": "^4.1.0",
|
|
"eslint": "^6.8.0",
|
|
"mocha": "^7.0.1"
|
|
},
|
|
"scripts": {
|
|
"eslint": "eslint .",
|
|
"mocha": "mocha",
|
|
"test": "npm run eslint && npm run mocha",
|
|
"postinstall": "rimraf vendor && node lib/install"
|
|
},
|
|
"engines": {
|
|
"node": ">=8"
|
|
},
|
|
"files": [
|
|
"lib/*.js",
|
|
"cli.js",
|
|
"index.js"
|
|
],
|
|
"bin": {
|
|
"hugo": "cli.js"
|
|
},
|
|
"eslintConfig": {
|
|
"extends": "eslint:recommended",
|
|
"env": {
|
|
"es6": true,
|
|
"node": true
|
|
},
|
|
"rules": {
|
|
"prefer-destructuring": [
|
|
"error",
|
|
{
|
|
"object": true,
|
|
"array": false
|
|
}
|
|
],
|
|
"strict": "error"
|
|
}
|
|
}
|
|
}
|