UNPKG

node-dijkstra

Version:

A NodeJS implementation of Dijkstra's algorithm

49 lines (48 loc) 1.22 kB
{ "name": "node-dijkstra", "version": "2.5.0", "description": "A NodeJS implementation of Dijkstra's algorithm", "author": "Alberto Restifo <alberto.restifo@gmail.com>", "main": "libs/Graph.js", "repository": { "type": "git", "url": "https://github.com/albertorestifo/node-dijkstra" }, "scripts": { "test": "eslint . && istanbul cover _mocha -- --ui bdd -R spec -t 5000", "compile": "gulp build" }, "bugs": { "url": "https://github.com/albertorestifo/node-dijkstra/issues" }, "keywords": [ "dijkstra", "shortest path" ], "license": "MIT", "devDependencies": { "babel-eslint": "^6.1.2", "browserify": "^13.1.0", "codecov.io": "^0.1.6", "eslint": "^3.3.0", "eslint-config-airbnb": "^10.0.1", "eslint-plugin-import": "^1.13.0", "eslint-plugin-jsx-a11y": "^2.1.0", "eslint-plugin-react": "^6.1.0", "gulp": "^3.9.1", "gulp-babel": "^6.1.2", "gulp-rename": "^1.2.2", "gulp-uglify": "^2.0.0", "istanbul": "^0.4.4", "mocha": "^3.0.2", "must": "^0.13.2", "sinon": "^1.17.5", "vinyl-source-stream": "^1.1.0" }, "dependencies": {}, "browserify": { "transform": [ "babelify" ] } }