1
mirror of https://github.com/jakejarvis/hugo-extended.git synced 2025-04-26 15:48:29 -04:00
hugo-extended/package.json
2019-08-14 11:31:22 +03:00

56 lines
1.1 KiB
JSON

{
"name": "hugo-bin",
"version": "0.45.0",
"hugoVersion": "0.57.0",
"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.1.0",
"pkg-conf": "^3.1.0",
"rimraf": "^2.6.3",
"signale": "^1.4.0"
},
"devDependencies": {
"bin-check": "^4.1.0",
"eslint": "^5.16.0",
"mocha": "^6.2.0"
},
"scripts": {
"eslint": "eslint .",
"mocha": "mocha",
"test": "npm run eslint && npm run mocha",
"postinstall": "rimraf vendor && node lib/install"
},
"files": [
"lib/*.js",
"cli.js",
"index.js"
],
"engines": {
"node": ">=6"
},
"eslintConfig": {
"extends": "eslint:recommended",
"env": {
"es6": true,
"node": true
},
"rules": {
"prefer-destructuring": [
"error",
{
"object": true,
"array": false
}
],
"strict": "error"
}
}
}