1
0
mirror of https://github.com/alanorth/hugo-theme-bootstrap4-blog.git synced 2024-06-26 16:13:45 +02:00
hugo-theme-bootstrap4-blog/package.json
Alan Orth 5ed4b51531
package.json: Add cssnano-cli to dev dependencies
Using cssnano on the command line actually requires this package,
not the `cssnano` one.
2016-09-26 10:01:37 +03:00

24 lines
782 B
JSON

{
"name": "hugo-theme-bootstrap4-blog",
"version": "0.0.1",
"description": "A Bootstrap v4 theme for the Hugo static site generator.",
"repository": {
"type": "git",
"url": "https://github.com/alanorth/hugo-theme-bootstrap4-blog.git"
},
"scripts": {
"build:css": "node-sass --output-style compressed source/scss/style.scss static/css/style.css.tmp && cssnano static/css/style.css.tmp static/css/style.css",
"build:fonts": "cp node_modules/font-awesome/fonts/* static/fonts",
"build": "npm run build:css && npm run build:fonts"
},
"keywords": "hugo",
"author": "Alan Orth",
"license": "GPL-3.0",
"devDependencies": {
"bootstrap": "4.0.0-alpha.4",
"cssnano-cli": "^1.0.5",
"font-awesome": "4.6.3",
"node-sass": "3.10.0"
}
}