package.json
 1  {
 2      "name"            : "heap"
 3    , "version"         : "0.2.6"
 4    , "description"     : "binary heap (priority queue) algorithms (ported from Python's heapq module)"
 5    , "homepage"        : "https://github.com/qiao/heap.js"
 6    , "keywords"        : ["algorithm", "data structure", "heap"]
 7    , "author"          : "Xueqiao Xu <xueqiaoxu@gmail.com>"
 8    , "main"            : "./index.js"
 9    , "dependencies"    : {}
10    , "devDependencies" : {
11        "coffee-script"   : "1.3.x"
12      , "mocha"           : "2.1.x"
13      , "should"          : "0.6.x"
14    }
15    , "scripts"         : {
16        "test"            : "make test"
17    }
18    , "repository"      : {
19        "type"          : "git"
20      , "url"           : "git://github.com/qiao/heap.js.git"
21    }
22    , "licenses"        : [{
23        "type"          :  "PSF"
24      , "url"           : "http://docs.python.org/license.html"
25    }]
26  }