config.json 462 B

1234567891011121314151617181920212223242526
  1. {
  2. "locals": {
  3. "url": "http://localhost:8080",
  4. "name": "The Wintersmith's blog",
  5. "owner": "Someone",
  6. "description": "Ramblings of an immor(t)al demigod"
  7. },
  8. "plugins": [
  9. "./plugins/paginator.coffee"
  10. ],
  11. "require": {
  12. "moment": "moment",
  13. "_": "underscore",
  14. "typogr": "typogr"
  15. },
  16. "pug": {
  17. "pretty": true
  18. },
  19. "markdown": {
  20. "smartLists": true,
  21. "smartypants": true
  22. },
  23. "paginator": {
  24. "perPage": 3
  25. }
  26. }