-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 849 Bytes
/
Copy pathpackage.json
File metadata and controls
38 lines (38 loc) · 849 Bytes
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
{
"name": "fast-hashring",
"version": "1.1.1",
"description": "Fast consistent hashing: classic ring with virtual nodes + Jump Consistent Hash (O(1) memory).",
"main": "consistent-hash.js",
"type": "module",
"exports": {
".": {
"types": "./index.d.ts",
"import": "./consistent-hash.js"
},
"./jump-hash.js": {
"types": "./jump-hash.d.ts",
"import": "./jump-hash.js"
}
},
"scripts": {
"test": "bun test --coverage"
},
"keywords": [
"consistent-hashing",
"hashing",
"virtual-nodes",
"npm-module"
],
"types": "index.d.ts",
"author": "Rolando Santamaria Maso <kyberneees@gmail.com>",
"license": "MIT",
"files": [
"consistent-hash.js",
"consistent-hash.d.ts",
"jump-hash.js",
"jump-hash.d.ts",
"index.d.ts",
"README.md",
"LICENSE"
]
}