package.json 989 B

1234567891011121314151617181920212223242526272829
  1. {
  2. "name": "infusion",
  3. "version": "0.0.1",
  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",
  10. "build": "rm -rfv docs/* && hugo && sw-precache --root=docs && git add -A"
  11. },
  12. "pre-commit": [
  13. "build"
  14. ],
  15. "repository": {
  16. "type": "git",
  17. "url": "git+https://github.com/Heydon/infusion.git"
  18. },
  19. "author": "Heydon Pickering <heydon@heydonworks.com> (http://www.heydonworks.com)",
  20. "license": "ISC",
  21. "bugs": {
  22. "url": "https://github.com/Heydon/infusion/issues"
  23. },
  24. "homepage": "https://github.com/Heydon/infusion#readme",
  25. "devDependencies": {
  26. "pre-commit": "^1.2.2",
  27. "sw-precache": "^5.2.0"
  28. }
  29. }