26 lines
931 B
JSON
26 lines
931 B
JSON
|
{
|
||
|
"name": "hugo-theme-bootstrap5-blog",
|
||
|
"version": "0.0.1",
|
||
|
"description": "An elegant and classy Hugo theme based on the Bootstrap v5 blog example.",
|
||
|
"repository": {
|
||
|
"type": "git",
|
||
|
"url": "https://github.com/alanorth/hugo-theme-bootstrap5-blog.git"
|
||
|
},
|
||
|
"scripts": {
|
||
|
"css": "npm-run-all css-compile css-minify",
|
||
|
"css-compile": "sass --style expanded --source-map --embed-sources --no-error-css source/scss/style.scss assets/css/style.css.tmp",
|
||
|
"css-minify": "cleancss -O1 --format breakWith=lf --source-map --source-map-inline-sources --output assets/css/style.min.css assets/css/style.css.tmp",
|
||
|
"clean": "rm assets/css/style.css.tmp*",
|
||
|
"dist": "npm-run-all css clean"
|
||
|
},
|
||
|
"keywords": "hugo",
|
||
|
"author": "Alan Orth",
|
||
|
"license": "CC-BY-3.0",
|
||
|
"devDependencies": {
|
||
|
"bootstrap": "^5.0.0-alpha3",
|
||
|
"clean-css-cli": "^4.3.0",
|
||
|
"npm-run-all": "^4.1.5",
|
||
|
"sass": "^1.29.0"
|
||
|
}
|
||
|
}
|