bower.json
1 { 2 "name" : "heap" 3 , "version" : "0.2.5" 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" : "lib/heap.js" 9 , "dependencies" : {} 10 , "devDependencies" : {} 11 , "repository" : { 12 "type" : "git" 13 , "url" : "git://github.com/qiao/heap.js.git" 14 } 15 , "licenses" : [{ 16 "type" : "PSF" 17 , "url" : "http://docs.python.org/license.html" 18 }] 19 }