-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
73 lines (73 loc) · 1.64 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
67
68
69
70
71
72
73
{
"name": "@ronomon/deduplication",
"version": "2.0.4",
"description": "Fast multi-threaded content-dependent chunking deduplication for Buffers in C++ with a reference implementation in Javascript. Ships with extensive tests, a fuzz test and a benchmark.",
"main": "binding.node",
"files": [
"benchmark.js",
"binding.cc",
"binding.gyp",
"binding.js",
"demo.js",
"table.js",
"test.js"
],
"repository": {
"type": "git",
"url": "git+https://github.com/ronomon/deduplication.git"
},
"keywords": [
"async",
"backup",
"bandwidth",
"block size",
"boundary shift",
"cas",
"cdc",
"content-addressable storage",
"content-defined chunking",
"content-dependent chunking",
"cryptographic hash calculation",
"cut-point",
"deduplication",
"differential compression",
"elimination",
"fingerprint",
"gear hash",
"identical",
"maximum",
"minimum",
"normalized chunking",
"pattern",
"rabin karp",
"ratio",
"reference",
"reduce",
"redundancy",
"redundant",
"rsync",
"sliding block",
"sliding window",
"storage",
"tabulation hash",
"variable-sized chunking"
],
"author": "Joran Dirk Greef",
"license": "MIT",
"bugs": {
"url": "https://github.com/ronomon/deduplication/issues"
},
"homepage": "https://github.com/ronomon/deduplication#readme",
"scripts": {
"prepublishOnly": "rm -f binding.node",
"postinstall": "node-gyp clean",
"test": "node test.js"
},
"dependencies": {
"@ronomon/queue": "^3.0.0",
"nan": "^2.10.0"
},
"engines": {
"node": ">=10.0.0"
}
}