package.json 995 B

12345678910111213141516171819202122232425262728293031
  1. {
  2. "name": "cupper",
  3. "version": "0.1.0",
  4. "description": "A documentation 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": "node lib/clean.js",
  10. "build": "node lib/build.js",
  11. "update": "node lib/update.js",
  12. "a11y": "(npm list pa11y-ci || npm install -g pa11y-ci) && pa11y-ci --sitemap http://localhost:1313/sitemap.xml --config lib/.pa11yci"
  13. },
  14. "pre-commit": [
  15. "build"
  16. ],
  17. "repository": {
  18. "type": "git",
  19. "url": "git+https://github.com/ThePacielloGroup/cupper.git"
  20. },
  21. "author": "Heydon Pickering <heydon@heydonworks.com> (http://www.heydonworks.com)",
  22. "license": "ISC",
  23. "bugs": {
  24. "url": "https://github.com/ThePacielloGroup/cupper/issues"
  25. },
  26. "homepage": "https://github.com/ThePacielloGroup/cupper#readme",
  27. "devDependencies": {
  28. "pre-commit": "^1.2.2",
  29. "sw-precache": "^5.2.0"
  30. }
  31. }