-
Notifications
You must be signed in to change notification settings - Fork 19
/
package.json
27 lines (27 loc) · 897 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
{
"name" : "hash_ring",
"version" : "0.2.1",
"description" : "Consistent hashing C++ Add-on for node.js",
"keywords": [ "node", "hash ring", "consistent hashing", "sharding", "distributed" ],
"author": "Brian Noguchi <brian.noguchi@gmail.com>",
"contributors": [
{ "name": "Brian Noguchi", "url": "http://ngchi.wordpress.com" },
{ "name": "Joel Chen", "url": "http://github.com/jchip" }
],
"license": "MIT",
"main": "./index.js",
"scripts": {
"test": "expresso test/test_distribution.js && node --expose-gc test/test_leak.js",
"build": "node-gyp configure build"
},
"repository": {
"type": "git",
"url": "https://github.com/bnoguchi/node-hash-ring.git"
},
"devDependencies": {
"expresso": ">=0.7.6",
"should": ">=0.2.0"
},
"bugs": { "url": "https://github.com/bnoguchi/node-hash-ring/issues" },
"engines": { "node": ">=4.6.x" }
}