-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
66 lines (66 loc) · 1.36 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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"author": "Yunong J Xiao <[email protected]>",
"contributors": [
{
"name": "Mark Cavage",
"email": "[email protected]"
},
{
"name": "Fred Kuo",
"email": "[email protected]"
}
],
"name": "fash",
"description": "A consistent hashing library for node",
"keywords": [
"consistent hashing",
"consistent hash",
"hash",
"hashing",
"distributed",
"dynamo",
"hash ring"
],
"version": "2.3.1",
"repository": {
"type": "git",
"url": "https://github.com/yunong/node-fash.git"
},
"main": "./lib/index.js",
"directories": {
"lib": "./lib"
},
"engines": {
"node": ">=0.8"
},
"dependencies": {
"assert-plus": "0.1.2",
"bignum": "0.6.0",
"bunyan": "*",
"cmdln": "1.3.1",
"dashdash": "1.4.0",
"levelup": "git://github.com/yunong/node-levelup.git#273cbda",
"leveldown": "0.8.0",
"once": "1.1.1",
"redis": "0.8.4",
"vasync": "1.3.3",
"verror": "1.3.6"
},
"optionalDependencies": {
"dtrace-provider": "0.2.8"
},
"devDependencies": {
"node-uuid": "1.4.1",
"nodeunit": "git://github.com/yunong/nodeunit.git#master",
"bunyan": "*",
"lodash": "1.3.1",
"restify": "2.6.0"
},
"bin": {
"fash": "bin/fash.js"
},
"scripts": {
"pretest": "./lint.sh",
"test": "./node_modules/.bin/nodeunit test/*.test.js"
}
}