package.json 748 B

12345678910111213141516171819202122232425262728293031
  1. {
  2. "name": "joi",
  3. "description": "Object schema validation",
  4. "version": "14.3.1",
  5. "homepage": "https://github.com/hapijs/joi",
  6. "repository": "git://github.com/hapijs/joi",
  7. "main": "lib/index.js",
  8. "keywords": [
  9. "hapi",
  10. "schema",
  11. "validation"
  12. ],
  13. "dependencies": {
  14. "hoek": "6.x.x",
  15. "isemail": "3.x.x",
  16. "topo": "3.x.x"
  17. },
  18. "devDependencies": {
  19. "code": "5.x.x",
  20. "hapitoc": "1.x.x",
  21. "lab": "18.x.x"
  22. },
  23. "scripts": {
  24. "test": "lab -t 100 -a code -L",
  25. "test-debug": "lab -a code",
  26. "test-cov-html": "lab -r html -o coverage.html -a code",
  27. "toc": "hapitoc && node docs/check-errors-list.js",
  28. "version": "npm run toc && git add API.md README.md"
  29. },
  30. "license": "BSD-3-Clause"
  31. }