forked from qiao/PathFinding.js
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
30 lines (30 loc) · 957 Bytes
/
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
{
"name" : "pathfinding"
, "version" : "0.4.12"
, "description" : "Comprehensive pathfinding library for grid based games"
, "homepage" : "https://github.com/qiao/PathFinding.js"
, "keywords" : ["algorithm", "game"]
, "author" : "Xueqiao Xu <[email protected]>"
, "main" : "./index.js"
, "dependencies" : {
"heap" : "0.2.2"
}
, "devDependencies" : {
"uglify-js" : "2.3.6"
, "colors" : "0.6.x"
, "browserify" : "2.25.0"
, "mocha" : "1.0.x"
, "should" : "0.6.x"
}
, "scripts" : {
"test" : "make test"
}
, "repository" : {
"type" : "git"
, "url" : "git://github.com/qiao/PathFinding.js.git"
}
, "licenses" : [{
"type" : "MIT"
, "url" : "http://opensource.org/licenses/mit-license.php"
}]
}