package.json 1.1 KB

12345678910111213141516171819202122232425
  1. {
  2. "name": "inclusive-pattern-library",
  3. "version": "0.0.1",
  4. "description": "An inclusive pattern library builder for documenting inclusive interface design",
  5. "main": "index.js",
  6. "scripts": {
  7. "getURL": "git remote -v | sed -n '/push/p' | awk '{print $2}' | sed 's/.*:\\(.*\\).git/\\1/' | awk -F\"/\" '{print $1\".github.io/\"$2}'",
  8. "test": "echo \"Error: no test specified\" && exit 1",
  9. "serve": "hugo server",
  10. "clean": "rm -rf content && mkdir content && mkdir content/patterns && hugo new patterns/pattern.md && hugo new _index.md",
  11. "build": "rm -rfv public/* && hugo",
  12. "setup": "hugo && git add public",
  13. "host": "rm -rfv public/* && hugo && git add public/* && git push -f origin `git subtree split --prefix public master`:gh-pages"
  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. }