forked from louischatriot/node-binary-search-tree
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
33 lines (33 loc) · 813 Bytes
/
package.json
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
{
"name": "@rmanibus/binary-search-tree",
"version": "1.0.0-beta.0",
"type": "module",
"author": {
"name": "Louis Chatriot",
"email": "[email protected]"
},
"description": "Different binary search tree implementations, including a self-balancing one (AVL)",
"keywords": [
"AVL tree",
"binary search tree",
"self-balancing",
"AVL tree"
],
"homepage": "https://github.com/rmanibus/node-binary-search-tree",
"repository": {
"type": "git",
"url": "[email protected]:rmanibus/node-binary-search-tree.git"
},
"dependencies": {
"underscore": "^1.13"
},
"devDependencies": {
"chai": "^4.3",
"mocha": "^10.1"
},
"scripts": {
"test": "./node_modules/.bin/mocha --reporter spec --timeout 10000"
},
"main": "index",
"licence": "MIT"
}