forked from qiao/heap.js
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
26 lines (26 loc) · 859 Bytes
/
package.json
File metadata and controls
26 lines (26 loc) · 859 Bytes
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
{
"name" : "heap"
, "version" : "0.2.3"
, "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"
}]
}