-
Notifications
You must be signed in to change notification settings - Fork 236
/
Copy pathpackage.json
62 lines (62 loc) · 1.31 KB
/
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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
{
"name": "js-algorithms",
"description": "Javascript versions of classic software development algorithms",
"version": "1.9.1",
"main": "index.js",
"repository": "[email protected]:duereg/js-algorithms.git",
"devDependencies": {
"eslint": "^8.48.0",
"eslint-config-airbnb": "^19.0.4",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-jsx-a11y": "^6.1.2",
"eslint-plugin-react": "^7.12.3",
"jasmine": "^5.1.0",
"lodash": "^4.17.11",
"sinon": "^10.0.0"
},
"author": {
"name": "Matt Blair",
"email": "[email protected]",
"url": "http://blog.mattblair.co"
},
"engines": {
"node": ">=16",
"npm": ">=8"
},
"maintainers": [
{
"name": "Matt Blair",
"email": "[email protected]",
"web": "http://blog.mattblair.co"
}
],
"scripts": {
"pretest": "npm install",
"test": "node_modules/.bin/jasmine",
"lint": "eslint ./ --fix"
},
"keywords": [
"algorithms",
"dataStructures",
"binaryHeap",
"binarySearchTree",
"bst",
"linkedList",
"maxHeap",
"minHeap",
"queue",
"stack",
"stackQueue",
"trie",
"permutation",
"shuffle",
"Fisher-Yates",
"palindrome",
"sort",
"depthFirstSearch",
"mergeSort",
"quickSort",
"smallestEnclosingCircle",
"suffixTree"
]
}