package.json 531 B

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