-
Notifications
You must be signed in to change notification settings - Fork 44
/
package.json
67 lines (67 loc) · 1.46 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"name": "l1-path-finder",
"version": "1.0.0",
"description": "Fast shortest path finder for grids",
"main": "lib/planner.js",
"directories": {
"test": "test"
},
"dependencies": {
"binary-search-bounds": "^1.0.0",
"contour-2d": "^1.0.0",
"ndarray": "^1.0.16",
"ndarray-ops": "^1.2.2",
"ndarray-prefix-sum": "^1.0.0",
"robust-orientation": "^1.1.3",
"uniq": "^1.0.1"
},
"devDependencies": {
"astar-andrea": "^1.0.0",
"bitmap-to-boxes": "^1.0.0",
"colormap": "^2.0.1",
"easystarjs": "0.3.0",
"mouse-change": "^1.1.1",
"ndarray-imshow": "^1.0.1",
"ndarray-unpack": "^1.0.0",
"nets": "^3.1.0",
"node-pathfinding": "^0.2.6",
"parse-grid-bench": "^1.0.1",
"pathfinding": "^0.4.17",
"right-now": "^1.0.0",
"shuffle-array": "^0.1.0",
"tape": "^4.0.0"
},
"scripts": {
"test": "tape test/*.js",
"bench": "node bench/bench.js"
},
"repository": {
"type": "git",
"url": "https://github.com/mikolalysenko/l1-path-finder.git"
},
"keywords": [
"path",
"dijkstra",
"astar",
"a*",
"grid",
"shortest",
"plan",
"a",
"star",
"rectilinear",
"orthogonal",
"l1",
"optimal",
"game",
"search",
"plan",
"planner"
],
"author": "Mikola Lysenko",
"license": "MIT",
"bugs": {
"url": "https://github.com/mikolalysenko/l1-path-finder/issues"
},
"homepage": "https://github.com/mikolalysenko/l1-path-finder"
}