1
mirror of https://github.com/jakejarvis/hugo-extended.git synced 2025-04-26 21:38:26 -04:00
hugo-extended/package.json
Shun Sato 235cabb397
Merge pull request #71 from XhmikosR/rm-lodash
Remove the unused lodash devDependency.
2018-10-07 19:40:22 +09:00

48 lines
945 B
JSON

{
"name": "hugo-bin",
"version": "0.30.0",
"hugoVersion": "0.43",
"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": "^4.0.0",
"logalot": "^2.1.0",
"pkg-conf": "^2.1.0",
"rimraf": "^2.6.2"
},
"devDependencies": {
"bin-check": "^4.1.0",
"eslint": "^5.6.1",
"mocha": "^5.2.0"
},
"scripts": {
"eslint": "eslint .",
"mocha": "mocha",
"test": "npm run eslint && npm run mocha",
"postinstall": "rimraf vendor && node lib/install"
},
"files": [
"lib/*.js",
"index.js",
"cli.js"
],
"engines": {
"node": ">=6"
},
"eslintConfig": {
"extends": "eslint:recommended",
"env": {
"node": true
},
"parserOptions": {
"sourceType": "module"
}
}
}