forked from lix-project/lix-website
56 lines
1.1 KiB
JSON
56 lines
1.1 KiB
JSON
{
|
|
"name": "hugo-bin",
|
|
"version": "0.76.1",
|
|
"hugoVersion": "0.88.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": "^4.1.0",
|
|
"pkg-conf": "^3.1.0",
|
|
"rimraf": "^3.0.2",
|
|
"signale": "^1.4.0"
|
|
},
|
|
"devDependencies": {
|
|
"bin-check": "^4.1.0",
|
|
"eslint": "^7.32.0",
|
|
"mocha": "^8.4.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": ">=10"
|
|
},
|
|
"eslintConfig": {
|
|
"extends": "eslint:recommended",
|
|
"env": {
|
|
"es6": true,
|
|
"node": true
|
|
},
|
|
"rules": {
|
|
"prefer-destructuring": [
|
|
"error",
|
|
{
|
|
"object": true,
|
|
"array": false
|
|
}
|
|
],
|
|
"strict": "error"
|
|
}
|
|
}
|
|
}
|