-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathpackage.json
40 lines (40 loc) · 906 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
{
"name": "@ronomon/reed-solomon",
"version": "6.0.0",
"description": "Fast, reliable Reed-Solomon erasure coding as a native addon for Node.js",
"main": "binding.node",
"files": [
"benchmark.js",
"binding.c",
"binding.gyp",
"test.js"
],
"repository": {
"type": "git",
"url": "git+https://github.com/ronomon/reed-solomon.git"
},
"keywords": [
"reed-solomon",
"erasure coding",
"replication",
"parity",
"redundancy",
"forward",
"error",
"correction"
],
"author": "Joran Dirk Greef",
"license": "MIT",
"bugs": {
"url": "https://github.com/ronomon/reed-solomon/issues"
},
"homepage": "https://github.com/ronomon/reed-solomon#readme",
"scripts": {
"prepublishOnly": "rm -f binding.node",
"postinstall": "node-gyp clean",
"test": "node test.js"
},
"dependencies": {
"@ronomon/queue": "^3.0.1"
}
}