1
mirror of https://github.com/jakejarvis/hugo-extended.git synced 2025-04-26 14:38:28 -04:00
hugo-extended/package.json
2021-12-23 13:18:23 -05:00

82 lines
1.6 KiB
JSON

{
"name": "hugo-extended",
"version": "0.91.0",
"description": "✏️ Plug-and-play binary wrapper for Hugo Extended, the awesomest static-site generator.",
"license": "MIT",
"homepage": "https://github.com/jakejarvis/hugo-extended",
"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"
},
"files": [
"index.js",
"index.d.ts",
"postinstall.js",
"lib"
],
"bin": {
"hugo": "lib/cli.js",
"hugo-extended": "lib/cli.js"
},
"type": "module",
"exports": "./index.js",
"types": "./index.d.ts",
"dependencies": {
"careful-downloader": "^2.0.1",
"log-symbols": "^5.1.0",
"read-pkg-up": "^9.0.0"
},
"devDependencies": {
"@jakejarvis/eslint-config": "*",
"del": "^6.0.0",
"eslint": "^8.5.0",
"mocha": "^9.1.3"
},
"scripts": {
"postinstall": "node postinstall.js",
"test": "eslint . && mocha"
},
"engines": {
"node": "^12.20.0 || ^14.13.1 || >=16.0.0"
},
"keywords": [
"hugo",
"hugo extended",
"gohugoio",
"cli",
"front-end",
"bin",
"binary",
"wrapper",
"static site generator",
"static-site",
"ssg",
"static",
"markdown",
"blog",
"frontmatter",
"go",
"golang"
],
"eslintConfig": {
"extends": "@jakejarvis/eslint-config",
"parserOptions": {
"ecmaVersion": 2020,
"sourceType": "module"
},
"env": {
"node": true,
"es6": true
},
"ignorePatterns": [
"vendor/**",
"*.d.ts"
]
}
}