1
mirror of https://github.com/jakejarvis/hugo-extended.git synced 2025-04-26 11:15:23 -04:00
hugo-extended/package.json
XhmikosR abecf89027 Drop Node.js 4.x support and minor updates (#62)
* Drop Node.js 4.x support.

* Update ESLint to v5.1.0.

* README.md: add dependencies badges.
2018-07-21 15:54:39 +09:00

46 lines
876 B
JSON

{
"name": "hugo-bin",
"version": "0.29.0",
"hugoVersion": "0.42.1",
"description": "Binary wrapper for Hugo",
"repository": "fenneclab/hugo-bin",
"author": "satoshun00 <shun.sato@fenneclab.com>",
"license": "MIT",
"main": "index.js",
"bin": {
"hugo": "cli.js"
},
"dependencies": {
"bin-wrapper": "3.0.2",
"del-cli": "1.1.0",
"logalot": "2.1.0"
},
"devDependencies": {
"bin-check": "4.1.0",
"eslint": "5.1.0",
"lodash": "4.17.10",
"mocha": "5.2.0"
},
"scripts": {
"test": "eslint . && mocha",
"postinstall": "del-cli vendor && node lib/install"
},
"files": [
"lib/",
"index.js",
"cli.js"
],
"engines": {
"node": ">=6"
},
"eslintConfig": {
"extends": "eslint:recommended",
"env": {
"node": true
},
"parserOptions": {
"sourceType": "module"
}
}
}