-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.8 KB
/
package.json
File metadata and controls
45 lines (45 loc) · 1.8 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
40
41
42
43
44
45
{
"name": "cpcodes",
"version": "1.3.2",
"description": "A Utility library for competitive coding",
"repository": {
"type": "git",
"url": "git+https://github.com/prskid1000/CPCodes.git.git"
},
"scripts": {
"dsu": "node ./Examples/dsu.js",
"kanade": "node ./Examples/kanade.js",
"kmp": "node ./Examples/kmp.js",
"bubblesort": "node ./Examples/bubblesort.js",
"selection_sort": "node ./Examples/selection_sort.js",
"kruksal": "node ./Examples/kruksal.js",
"arpa": "node ./Examples/arpa.js",
"lca": "node ./Examples/lca.js",
"dfs_bfs": "node ./Examples/dfs_bfs.js",
"bellman": "node ./Examples/bellman.js",
"dijikstra": "node ./Examples/dijikstra.js",
"rabin_karp": "node ./Examples/rabin_karp.js",
"prefix_suffix": "node ./Examples/prefix_suffix.js",
"edmonds_karp": "node ./Examples/edmonds_karp.js",
"insertion_sort": "node ./Examples/insertion_sort.js",
"manacher": "node ./Examples/manacher.js",
"smaller_greater_stack": "node ./Examples/smaller_greater_stack.js",
"binary_search": "node ./Examples/binary_search.js",
"ternary_search": "node ./Examples/ternary_search.js",
"merge_sort": "node ./Examples/merge_sort.js",
"heap": "node ./Examples/heap.js",
"heap_sort": "node ./Examples/heap_sort.js",
"bst": "node ./Examples/bst.js",
"reservior": "node ./Examples/reservior.js",
"random": "node ./Examples/random.js",
"aho_corasick": "node ./Examples/aho_corasick.js",
"floodfill": "node ./Examples/floodfill.js",
"quick_sort": "node ./Examples/quick_sort.js"
},
"author": "Prithwiraj Samanta",
"license": "ISC",
"bugs": {
"url": "https://github.com/prskid1000/CPCodes.git/issues"
},
"homepage": "https://github.com/prskid1000/CPCodes.git#readme"
}