-
Notifications
You must be signed in to change notification settings - Fork 30
/
package.json
48 lines (48 loc) · 1.21 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
{
"name": "hyperbee",
"version": "2.20.4",
"description": "An append-only B-tree running on a Hypercore.",
"main": "index.js",
"files": [
"index.js",
"lib/**.js",
"iterators/**.js"
],
"dependencies": {
"b4a": "^1.6.0",
"codecs": "^3.0.0",
"debounceify": "^1.0.0",
"hypercore-errors": "^1.0.0",
"mutexify": "^1.4.0",
"protocol-buffers-encodings": "^1.2.0",
"rache": "^1.0.0",
"ready-resource": "^1.0.0",
"safety-catch": "^1.0.2",
"streamx": "^2.12.4",
"unslab": "^1.2.0"
},
"devDependencies": {
"brittle": "^3.1.0",
"hypercore": "^10.37.10",
"protocol-buffers": "^4.2.0",
"random-access-memory": "^6.0.0",
"standard": "^17.0.0",
"sub-encoder": "^1.0.6",
"test-tmp": "^1.2.1",
"tree-to-string": "^1.1.1"
},
"scripts": {
"test": "standard && brittle test/*.js",
"protobuf": "protocol-buffers schema.proto -o ./lib/messages.js"
},
"repository": {
"type": "git",
"url": "https://github.com/holepunchto/hyperbee.git"
},
"author": "Mathias Buus (@mafintosh)",
"license": "MIT",
"bugs": {
"url": "https://github.com/holepunchto/hyperbee/issues"
},
"homepage": "https://github.com/holepunchto/hyperbee"
}