-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 933 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 933 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
27
28
29
30
31
32
33
34
35
{
"name": "fullstackjs-binary-search-tree",
"version": "1.0.0",
"description": "A JavaScript implementation of a balanced Binary Search Tree with traversal and manipulation methods",
"main": "src/bst.js",
"type": "module",
"scripts": {
"start": "node src/driver.js"
},
"keywords": [
"binary-search-tree",
"data-structures",
"algorithms",
"javascript",
"tree-traversal",
"balanced-tree",
"bst",
"computer-science",
"the-odin-project",
"recursion"
],
"author": "The Odin Project Student",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/top-submissions/fullstackjs-binary-search-tree.git"
},
"bugs": {
"url": "https://github.com/top-submissions/fullstackjs-binary-search-tree/issues"
},
"homepage": "https://github.com/top-submissions/fullstackjs-binary-search-tree#readme",
"engines": {
"node": ">=14.0.0"
}
}