forked from 3rd-Eden/node-bisection
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 1.16 KB
/
package.json
File metadata and controls
34 lines (34 loc) · 1.16 KB
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
31
32
33
34
{
"name": "bisection"
, "version": "0.0.3"
, "author": "Jason Wiener"
, "description": "A JavaScript port of the Python 8.5. bisect - Array bisection algorithm : This module provides support for maintaining a list in sorted order without having to sort the list after each insertion. For long lists of items with expensive comparison operations, this can be an improvement over the more common approach. The module is called bisect because it uses a basic bisection algorithm to do its work. The source code may be most useful as a working example of the algorithm (the boundary conditions are already right!)."
, "main": "index"
, "keywords":[
"algorithm"
, "bisect"
, "bisect_left"
, "bisect_right"
, "insort"
, "insort_left"
, "insort_right"
, "bisection"
, "python"
]
, "directories": {
"lib": "./lib"
}
, "maintainers": [{
"name":"Jason Wiener"
, "email":"hiya@jasonwiener.com"
, "web":"http://www.jasonwiener.com"
}]
, "licenses": [{
"type": "MIT"
, "url": "http://github.com/jasonwiener/node-bisection/blob/master/LICENSE"
}]
, "repositories": [{
"type": "git"
, "url" : "http://github.com/jasonwiener/node-bisection.git"
}]
}