1
mirror of https://github.com/jakejarvis/hugo-extended.git synced 2025-04-26 11:15:23 -04:00
hugo-extended/package.json
Shun Sato 4daeb3d258
feat(hugo): upgrade Hugo to v0.32.4 (#39)
* feat(hugo): upgrade Hugo to v0.32.4

* Update README.md
2018-01-27 18:37:18 +09:00

47 lines
897 B
JSON

{
"name": "hugo-bin",
"version": "0.18.1",
"hugoVersion": "0.32.4",
"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": "4.10.0",
"lodash": "4.17.4",
"mocha": "4.0.1"
},
"scripts": {
"test": "eslint . && mocha",
"postinstall": "del-cli vendor && node lib/install"
},
"files": [
"lib/",
"index.js",
"cli.js"
],
"engines": {
"node": ">=4"
},
"eslintConfig": {
"extends": "eslint:recommended",
"env": {
"node": true,
"mocha": true
},
"parserOptions": {
"sourceType": "module"
}
}
}