-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 956 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
34
35
36
37
38
39
40
41
{
"name": "print-bst",
"version": "3.0.0",
"description": "Binary Search Tree with Print Functionality",
"main": "bst.min.js",
"types": "bst.d.ts",
"scripts": {
"test": "mocha bst.spec.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/saibabanadh/print-bst.git"
},
"keywords": [
"data structure",
"data algorithm",
"computer science",
"binary search data structure",
"print",
"tree",
"print tree",
"print bst",
"bst",
"binary tree",
"binary search",
"binary search tree",
"bst",
"bs tree"
],
"author": "Sai Baba Nadh Konda <saibabanadh@gmail.com> (http://github.com/saibabanadh)",
"license": "MIT",
"bugs": {
"url": "https://github.com/saibabanadh/print-bst/issues"
},
"homepage": "https://github.com/saibabanadh/print-bst#readme",
"devDependencies": {
"gulp": "^4.0.2",
"gulp-minify": "^3.1.0",
"mocha": "^7.1.2"
}
}