package.json 596 B

12345678910111213141516171819202122232425262728
  1. {
  2. "name": "@hapi/topo",
  3. "description": "Topological sorting with grouping support",
  4. "version": "3.1.6",
  5. "repository": "git://github.com/hapijs/topo",
  6. "main": "lib/index.js",
  7. "keywords": [
  8. "topological",
  9. "sort",
  10. "toposort",
  11. "topsort"
  12. ],
  13. "files": [
  14. "lib"
  15. ],
  16. "dependencies": {
  17. "@hapi/hoek": "^8.3.0"
  18. },
  19. "devDependencies": {
  20. "@hapi/code": "6.x.x",
  21. "@hapi/lab": "20.x.x"
  22. },
  23. "scripts": {
  24. "test": "lab -a @hapi/code -t 100 -L",
  25. "test-cov-html": "lab -a @hapi/code -t 100 -L -r html -o coverage.html"
  26. },
  27. "license": "BSD-3-Clause"
  28. }