forked from bnoguchi/node-hash-ring
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
30 lines (30 loc) · 1.05 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
{
"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 <[email protected]>",
"contributors": [
{ "name": "Brian Noguchi", "url": "http://ngchi.wordpress.com" },
{ "name": "Joel Chen", "url": "http://github.com/jchip" }
],
"license": "MIT",
"main": "./index.js",
"scripts": {
"test": "npm run build && npm run test-md5 && npm run test-murmur && npm run test-leak",
"test-md5": "expresso test/test_distribution.js md5",
"test-murmur": "expresso test/test_distribution.js murmur",
"test-leak": "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" }
}