package.json 656 B

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