Skip to content

Commit c7e9aa1

Browse files
authored
Merge pull request #4 from rmanibus/maintenance
Maintenance
2 parents 1c80451 + c104f65 commit c7e9aa1

File tree

4 files changed

+136
-167
lines changed

4 files changed

+136
-167
lines changed

.github/workflows/main.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
os:
1818
- ubuntu-latest
1919
- windows-latest
20-
node-version: [10.x, 12.x, 14.x, 15.x]
20+
node-version: [14.x, 15.x, 16.x, 18.x, 19.x]
2121
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/
2222

2323
steps:

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Binary search trees for Node.js
22

3-
**Note: this module is not actively maintained bar for bug fixes. Its primary use is within NeDB and I do not plan on adding any new features.**
3+
**Note: this module is a maintained fork of louischatriot/node-binary-search-tree. it is Tested with nodeJS 14 to nodeJS 19.**
44

55
Two implementations of binary search tree: <a href="http://en.wikipedia.org/wiki/Binary_search_tree" target="_blank">basic</a> and <a href="http://en.wikipedia.org/wiki/AVL_tree" target="_blank">AVL</a> (a kind of self-balancing binmary search tree). I wrote this module primarily to store indexes for <a href="https://github.com/louischatriot/nedb" target="_blank">NeDB</a> (a javascript dependency-less database).
66

package.json

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,12 +22,11 @@
2222
},
2323
"devDependencies": {
2424
"chai": "^4.3",
25-
"mocha": "^8.4"
25+
"mocha": "^10.1"
2626
},
2727
"scripts": {
2828
"test": "./node_modules/.bin/mocha --reporter spec --timeout 10000"
2929
},
30-
3130
"main": "index",
3231
"licence": "MIT"
3332
}

0 commit comments

Comments
 (0)