package.json 574 B

1234567891011121314151617181920212223242526272829
  1. {
  2. "name": "toposort",
  3. "version": "1.0.7",
  4. "description": "Topological sort of directed ascyclic graphs (like dependecy lists)",
  5. "main": "index.js",
  6. "scripts": {
  7. "test": "node test.js"
  8. },
  9. "repository": {
  10. "type": "git",
  11. "url": "https://github.com/marcelklehr/toposort.git"
  12. },
  13. "devDependencies": {
  14. "vows": "0.7.x"
  15. },
  16. "keywords": [
  17. "topological",
  18. "sort",
  19. "sorting",
  20. "graphs",
  21. "graph",
  22. "dependency",
  23. "list",
  24. "dependencies",
  25. "acyclic"
  26. ],
  27. "author": "Marcel Klehr <mklehr@gmx.net>",
  28. "license": "MIT"
  29. }