1
mirror of https://github.com/jakejarvis/hugo-extended.git synced 2025-04-26 14:38:28 -04:00
hugo-extended/package.json
dependabot[bot] 8dfe56b05a Bump mocha from 9.2.2 to 10.2.0
Bumps [mocha](https://github.com/mochajs/mocha) from 9.2.2 to 10.2.0.
- [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/v9.2.2...v10.2.0)

---
updated-dependencies:
- dependency-name: mocha
  dependency-type: direct:development
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
2023-03-02 10:31:19 -05:00

82 lines
1.6 KiB
JSON

{
"name": "hugo-extended",
"version": "0.110.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.2",
"log-symbols": "^5.1.0",
"read-pkg-up": "^9.1.0"
},
"devDependencies": {
"@jakejarvis/eslint-config": "*",
"del": "^6.1.1",
"eslint": "^8.27.0",
"mocha": "^10.2.0"
},
"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"
]
}
}