forked from bnoguchi/node-hash-ring
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 985 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
42
43
44
45
46
47
48
{
"name": "@movable/hash_ring",
"version": "1.0.0",
"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"
}
],
"scripts": {
"test": "node_modules/.bin/mocha test/test_*.js"
},
"licenses": [
"MIT"
],
"main": "./index.js",
"types": "./index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/movableink/node-hash-ring.git"
},
"dependencies": {
"node-addon-api": "^3.0.0",
"node-gyp-build": "^4.2.3"
},
"devDependencies": {
"chi-squared-test": "^1.1.0",
"mocha": "^2.3.2"
},
"bugs": {
"url": "https://github.com/movableink/node-hash-ring/issues"
},
"engines": {
"node": ">=10"
},
"volta": {
"node": "14.7.0"
}
}