-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
50 lines (50 loc) · 1.03 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
{
"name": "esds",
"version": "0.6.0",
"description": "ES6 JS lightweight data structures (Priority Queue, Binary Search Tree (BST), Graph, Bloom Filters, Trie, Queue, Stack, Linked-List)",
"main": "ESDS.js",
"bugs": {
"url": "https://github.com/jayalbo/ESDS/issues"
},
"keywords": [
"priority queue",
"heap",
"queue",
"stack",
"trie",
"graph",
"bst",
"binary search tree",
"bianry tree",
"js",
"bloom filters",
"bloom-filter",
"bloom_filters",
"filter",
"filters",
"es6",
"directed graph",
"undirected graph",
"prefix tree",
"digital tree",
"list",
"linked-list",
"linked list",
"data_structures",
"data structures"
],
"scripts": {
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js"
},
"repository": {
"type": "git",
"url": "https://github.com/jayalbo/ESDS.git"
},
"type": "module",
"author": "",
"license": "MIT",
"dependencies": {
"jest": "^27.2.1",
"xxhash-wasm": "^0.4.1"
}
}