forked from finn0/node-all-paths
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
47 lines (47 loc) · 1.11 KB
/
package.json
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
{
"name": "node-all-paths",
"version": "1.0.3",
"description": "A NodeJS implementation to find all possible paths from a graph.",
"author": "Chris Wong <[email protected]>",
"main": "libs/Graph.js",
"repository": {
"type": "git",
"url": "https://github.com/chriswongtv/node-all-paths"
},
"scripts": {
"test": "standard && istanbul cover _mocha -- --ui bdd -R spec -t 5000",
"compile": "gulp build"
},
"bugs": {
"url": "https://github.com/chriswongtv/node-all-paths/issues"
},
"keywords": [
"dijkstra",
"shortest path",
"all paths",
"all possible paths"
],
"license": "MIT",
"devDependencies": {
"babel-eslint": "^4.0.10",
"browserify": "^11.2.0",
"codecov.io": "^0.1.6",
"gulp": "^3.9.0",
"gulp-babel": "^5.3.0",
"gulp-rename": "^1.2.2",
"gulp-uglify": "^1.4.2",
"istanbul": "^0.3.13",
"mocha": "^2.2.4",
"must": "^0.12.0",
"sinon": "^1.14.1",
"standard": "^5.1.0",
"vinyl-source-stream": "^1.1.0"
},
"dependencies": {},
"standard": {
"parser": "babel-eslint",
"ignore": [
"/dist/"
]
}
}