hugo-theme-hilfe/package.json
Craigory V Coppola c7128d19eb
Add gulp to package.json scripts for ease of CI.
When using themes through git submodule some steps need to be ran in CI. One of these being the `gulp default` run. By adding this to the package.json CI setups for Hugo can use `npm i && npm run gulp default` instead of having to install gulp separately.
2020-10-12 13:49:09 -05:00

38 lines
888 B
JSON

{
"name": "geekdoc",
"version": "1.0.0",
"description": "Hugo theme made for documentation",
"main": "gulpfile.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"gulp": "gulp"
},
"repository": {
"type": "git",
"url": "https://github.com/thegeeklab/hugo-geekdoc"
},
"author": "Robert Kaussow",
"license": "MIT",
"dependencies": {},
"devDependencies": {
"gulp": "^4.0.2",
"gulp-autoprefixer": "^7.0.1",
"gulp-clean-css": "^4.3.0",
"gulp-concat": "^2.6.1",
"gulp-iconfont": "^10.0.3",
"gulp-real-favicon": "^0.3.2",
"gulp-rename": "^2.0.0",
"gulp-sass": "^4.1.0",
"gulp-svg-sprite": "^1.5.0",
"prettier": "^2.1.1",
"prettier-plugin-go-template": "0.0.10",
"run-sequence": "^2.2.1"
},
"browserslist": [
"last 2 version",
"> 5%",
"not dead",
"Firefox ESR"
]
}