-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1.24 KB
/
package.json
File metadata and controls
39 lines (39 loc) · 1.24 KB
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
{
"name": "algosort",
"version": "2.0.3",
"description": "This node package is for all javascript developers who are interested in sorting algorithms. This package gives you the possibility to choose between many different sorting algorithms. This package will output a two dimensional array of all numbers in different sorting states or you create automatically a graphical animation of the sorting algorithm in a canvas element.",
"main": "src/index.js",
"scripts": {
"test": "mocha src/index.test.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/PaulD103/AlgoSort.git"
},
"keywords": [
"algorithms",
"sorting",
"bubblesort",
"selectionsort",
"sort",
"algorithm",
"sorting-algorithms",
"sorting-algorithms-implemented",
"visualization",
"sorting-visualization",
"bubblesort-visualization",
"selectionsort-visualization"
],
"author": "Paul Dunz <contact@javascriptcoding.org> (https://javascriptcoding.org)",
"license": "ISC",
"bugs": {
"url": "https://github.com/PaulD103/AlgoSort/issues"
},
"homepage": "https://github.com/PaulD103/AlgoSort#readme",
"devDependencies": {
"mocha": "^8.4.0"
},
"dependencies": {
"parcel": "^2.0.0-beta.2"
}
}