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] 5cd17634d3 Bump mocha from 8.4.0 to 9.0.2
Bumps [mocha](https://github.com/mochajs/mocha) from 8.4.0 to 9.0.2.
- [Release notes](https://github.com/mochajs/mocha/releases)
- [Changelog](https://github.com/mochajs/mocha/blob/master/CHANGELOG.md)
- [Commits](https://github.com/mochajs/mocha/compare/v8.4.0...v9.0.2)

Signed-off-by: dependabot-preview[bot] <support@dependabot.com>
2021-07-07 10:07:21 -04:00

74 lines
1.4 KiB
JSON

{
"name": "hugo-extended",
"version": "0.85.0",
"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",
"got": "^11.8.2",
"sumchecker": "^3.0.1"
},
"devDependencies": {
"eslint": "^7.30.0",
"mocha": "^9.0.2"
},
"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
}
}
}