msfjarvis.dev/themes/codex/package.json
Harsh Shandilya 5bac9fde41 Merge remote-tracking branch 'codex/master' into codex
* codex/master:
  make wide code blocks/tables responsive
  feat: include build:example script (#77)
  docs: update README
  style: pagination icon filepath
  refactor: move svg icons to static/svg/
2020-07-14 21:35:03 +05:30

37 lines
785 B
JSON

{
"name": "hugo-theme-codex",
"version": "1.5.0",
"author": "Jake Wiesler",
"description": "A minimal blog theme for Hugo",
"license": "MIT",
"scripts": {
"develop": "hugo server -s ./exampleSite/",
"build:example": "hugo -s ./exampleSite/",
"format": "prettier ./ --write"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"devDependencies": {
"husky": "^4.2.5",
"lint-staged": ">=10",
"prettier": "^2.0.5"
},
"browserslist": [
"last 2 version",
"> 2%"
],
"homepage": "https://github.com/jakewies/hugo-theme-codex",
"bugs": "https://github.com/jakewies/hugo-theme-codex/issues",
"keywords": [
"hugo",
"blog",
"go"
],
"lint-staged": {
"*.{js,css,scss}": "prettier --write"
}
}