package.json 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. {
  2. "name": "dijkstrajs",
  3. "version": "1.0.3",
  4. "description": "A simple JavaScript implementation of Dijkstra's single-source shortest-paths algorithm.",
  5. "main": "dijkstra.js",
  6. "scripts": {
  7. "pretest": "jshint dijkstra.js",
  8. "test": "mocha -R spec"
  9. },
  10. "repository": {
  11. "type": "git",
  12. "url": "git://github.com/tcort/dijkstrajs"
  13. },
  14. "keywords": [
  15. "dijkstra",
  16. "shortest",
  17. "path",
  18. "search",
  19. "graph"
  20. ],
  21. "license": "MIT",
  22. "bugs": {
  23. "url": "https://github.com/tcort/dijkstrajs/issues"
  24. },
  25. "homepage": "https://github.com/tcort/dijkstrajs",
  26. "devDependencies": {
  27. "expect.js": "^0.3.1",
  28. "jshint": "^2.13.6",
  29. "mocha": "^10.2.0"
  30. },
  31. "jshintConfig": {
  32. "bitwise": true,
  33. "curly": true,
  34. "eqeqeq": true,
  35. "forin": true,
  36. "freeze": true,
  37. "globalstrict": true,
  38. "immed": true,
  39. "indent": 4,
  40. "moz": true,
  41. "newcap": true,
  42. "noarg": true,
  43. "node": true,
  44. "noempty": true,
  45. "nonew": true,
  46. "trailing": true,
  47. "undef": true,
  48. "smarttabs": true,
  49. "strict": true,
  50. "validthis": true,
  51. "globals": {
  52. "describe": false,
  53. "it": false,
  54. "before": false,
  55. "beforeEach": false,
  56. "after": false,
  57. "afterEach": false
  58. }
  59. }
  60. }