27 lines
859 B
JSON
27 lines
859 B
JSON
|
{
|
||
|
"name" : "heap"
|
||
|
, "version" : "0.2.5"
|
||
|
, "description" : "binary heap (priority queue) algorithms (ported from Python's heapq module)"
|
||
|
, "homepage" : "https://github.com/qiao/heap.js"
|
||
|
, "keywords" : ["algorithm", "data structure", "heap"]
|
||
|
, "author" : "Xueqiao Xu <xueqiaoxu@gmail.com>"
|
||
|
, "main" : "./index.js"
|
||
|
, "dependencies" : {}
|
||
|
, "devDependencies" : {
|
||
|
"coffee-script" : "1.3.x"
|
||
|
, "mocha" : "1.0.x"
|
||
|
, "should" : "0.6.x"
|
||
|
}
|
||
|
, "scripts" : {
|
||
|
"test" : "make test"
|
||
|
}
|
||
|
, "repository" : {
|
||
|
"type" : "git"
|
||
|
, "url" : "git://github.com/qiao/heap.js.git"
|
||
|
}
|
||
|
, "licenses" : [{
|
||
|
"type" : "PSF"
|
||
|
, "url" : "http://docs.python.org/license.html"
|
||
|
}]
|
||
|
}
|