package.json 900 B

12345678910111213141516171819202122232425262728
  1. {
  2. "name": "infusion",
  3. "version": "0.0.1",
  4. "description": "An inclusive pattern library builder for documenting inclusive interface design",
  5. "main": "index.js",
  6. "scripts": {
  7. "test": "echo \"Error: no test specified\" && exit 1",
  8. "serve": "hugo server",
  9. "clean": "rm -rf content && mkdir content && mkdir content/patterns && hugo new patterns/pattern.md && hugo new _index.md",
  10. "build": "hugo"
  11. },
  12. "pre-commit": [
  13. "build"
  14. ],
  15. "repository": {
  16. "type": "git",
  17. "url": "git+https://github.com/Heydon/inclusive-pattern-library.git"
  18. },
  19. "author": "Heydon Pickering <heydon@heydonworks.com> (http://www.heydonworks.com)",
  20. "license": "ISC",
  21. "bugs": {
  22. "url": "https://github.com/Heydon/inclusive-pattern-library/issues"
  23. },
  24. "homepage": "https://github.com/Heydon/inclusive-pattern-library#readme",
  25. "devDependencies": {
  26. "pre-commit": "^1.2.2"
  27. }
  28. }