-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
34 lines (34 loc) · 883 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
{
"name": "binary-tree-visualizer",
"version": "1.0.0",
"description": "## Features - Animation speed control. - Inserting random numbers. - Ability to export trees as png images. - Showing value insertion steps.",
"main": "index.js",
"scripts": {
"dev": "webpack-dev-server",
"build": "webpack --mode production"
},
"repository": {
"type": "git",
"url": "git+https://github.com/WinterCore/bst-visualizer.git"
},
"keywords": [
"bst",
"binary",
"search",
"tree",
"visualizer",
"visualizer",
"stpes"
],
"author": "WinterCore",
"license": "MIT",
"bugs": {
"url": "https://github.com/WinterCore/bst-visualizer/issues"
},
"homepage": "https://github.com/WinterCore/bst-visualizer#readme",
"devDependencies": {
"webpack": "^4.44.2",
"webpack-cli": "^3.3.12",
"webpack-dev-server": "^3.11.0"
}
}