1
mirror of https://github.com/jakejarvis/hugo-extended.git synced 2025-04-26 14:38:28 -04:00
hugo-extended/package.json
dependabot-preview[bot] 9f61522183 Bump execa from 5.1.0 to 5.1.1
Bumps [execa](https://github.com/sindresorhus/execa) from 5.1.0 to 5.1.1.
- [Release notes](https://github.com/sindresorhus/execa/releases)
- [Commits](https://github.com/sindresorhus/execa/compare/v5.1.0...v5.1.1)

Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
2021-06-05 08:00:17 -04:00

74 lines
1.4 KiB
JSON

{
"name": "hugo-extended",
"version": "0.83.1",
"description": "Plug-and-play binary wrapper for Hugo Extended, the awesomest static-site generator.",
"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"
},
"files": [
"index.js",
"cli.js",
"install.js"
],
"bin": {
"hugo": "cli.js",
"hugo-extended": "cli.js"
},
"main": "index.js",
"dependencies": {
"chalk": "^4.1.1",
"decompress": "^4.2.1",
"execa": "^5.1.1",
"follow-redirects": "^1.14.1",
"sumchecker": "^3.0.1"
},
"devDependencies": {
"eslint": "^7.28.0",
"mocha": "^8.4.0"
},
"scripts": {
"postinstall": "node install.js",
"test": "eslint \"**/*.js\" && mocha"
},
"engines": {
"node": ">=10"
},
"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": "eslint:recommended",
"parserOptions": {
"ecmaVersion": 8,
"sourceType": "module"
},
"env": {
"node": true,
"es6": true
}
}
}