forked from albertorestifo/node-dijkstra
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.19 KB
/
Copy pathpackage.json
File metadata and controls
48 lines (48 loc) · 1.19 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
{
"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"
]
}
}