forked from 3rd-Eden/node-hashring
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 936 Bytes
/
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
{
"name": "hashring",
"version": "1.0.3",
"author": "Arnout Kazemier",
"description": "A consistent hashring compatible with ketama hashing and python's hash_ring",
"main": "./index.js",
"keywords": [
"hashring",
"hash ring",
"hashing",
"hashvalue",
"ketama",
"hash_ring",
"hash",
"consistent hashing",
"libketama"
],
"license": "MIT",
"bugs": "http://github.com/3rd-Eden/node-hashring/issues",
"homepage": "http://github.com/3rd-Eden/node-hashring/",
"repository": {
"type": "git",
"url": "http://github.com/3rd-Eden/node-hashring.git"
},
"dependencies": {
"bindings": "1.1.x",
"connection-parse": "0.0.x",
"nan": "1.0.x",
"simple-lru-cache": "0.0.x"
},
"devDependencies": {
"benchmark": "1.0.x",
"devnull": "0.0.x",
"microtime": "0.6.x",
"mocha": "1.8.x",
"should": "1.2.x"
},
"scripts": {
"test": "make test"
}
}