package.json 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. {
  2. "name": "toposort-class",
  3. "version": "1.0.1",
  4. "description": "Topological sort of directed acyclic graphs (like dependecy lists)",
  5. "main": "./index.js",
  6. "devDependencies": {
  7. "babel-eslint": "^4.0.5",
  8. "eslint": "^1.0.0",
  9. "grunt": "^0.4.5",
  10. "grunt-babel": "^5.0.1",
  11. "grunt-banner": "^0.4.0",
  12. "grunt-contrib-clean": "^0.6.0",
  13. "grunt-contrib-uglify": "^0.9.1",
  14. "matcha": "^0.6.0",
  15. "mocha": "^2.2.5"
  16. },
  17. "scripts": {
  18. "test": "mocha -b test",
  19. "eslint": "eslint src/toposort.js test/spec.js Gruntfile.js",
  20. "benchmark": "matcha benchmark/general.js",
  21. "benchmark-save": "matcha -R csv benchmark/general.js > benchmark/results.csv"
  22. },
  23. "repository": {
  24. "type": "git",
  25. "url": "https://github.com/gustavohenke/toposort.git"
  26. },
  27. "keywords": [
  28. "topological",
  29. "sort",
  30. "sorting",
  31. "graphs",
  32. "graph",
  33. "dependency",
  34. "list",
  35. "dependencies",
  36. "acyclic",
  37. "browser"
  38. ],
  39. "author": [
  40. "Marcel Klehr <mklehr@gmx.net>",
  41. "Gustavo Henke <gustavo@injoin.com.br>",
  42. "Aaron Trent <novacrazy@gmail.com>"
  43. ],
  44. "license": "MIT",
  45. "readmeFilename": "README.md"
  46. }