package.json 1.1 KB

123456789101112131415161718192021222324252627282930
  1. {
  2. "name": "infusion",
  3. "version": "0.1.0",
  4. "description": "A pattern library builder for inclusive designers",
  5. "main": "index.js",
  6. "scripts": {
  7. "test": "echo \"Error: no test specified\" && exit 1",
  8. "serve": "hugo server --baseURL http://localhost:1313",
  9. "clean": "rm -rf content && mkdir content && mkdir content/patterns && hugo new patterns/pattern.md && hugo new _index.md && hugo new print-version.md --kind print-version && cat themes/infusion/data/README_BLANK.md > README.md",
  10. "build": "rm -rfv docs/* && hugo && sw-precache --root=docs && git add -A",
  11. "update": "node lib/update.js"
  12. },
  13. "pre-commit": [
  14. "build"
  15. ],
  16. "repository": {
  17. "type": "git",
  18. "url": "git+https://github.com/ThePacielloGroup/infusion.git"
  19. },
  20. "author": "Heydon Pickering <heydon@heydonworks.com> (http://www.heydonworks.com)",
  21. "license": "ISC",
  22. "bugs": {
  23. "url": "https://github.com/ThePacielloGroup/infusion/issues"
  24. },
  25. "homepage": "https://github.com/ThePacielloGroup/infusion#readme",
  26. "devDependencies": {
  27. "pre-commit": "^1.2.2",
  28. "sw-precache": "^5.2.0"
  29. }
  30. }