modern-dijkstra
Version:
A modern JavaScript implementation of Dijkstra's single-source shortest-paths algorithm.
34 lines (33 loc) • 741 B
JSON
{
"name": "modern-dijkstra",
"version": "1.1.2",
"type": "module",
"main": "dijkstra.js",
"description": "A modern JavaScript implementation of Dijkstra's single-source shortest-paths algorithm.",
"scripts": {
"test": "mocha"
},
"repository": {
"type": "git",
"url": "git://github.com/ProfDeCube/dijkstrajs"
},
"keywords": [
"dijkstra",
"shortest",
"path",
"search",
"graph"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/ProfDeCube/dijkstrajs/issues"
},
"homepage": "https://github.com/ProfDeCube/dijkstrajs",
"devDependencies": {
"mocha": "^8.4.0",
"chai": "^4.3.4",
"esm": "^3.2.25"
},
"dependencies": {
}
}