-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 940 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 940 Bytes
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
{
"name": "hyperbeedeebee",
"version": "2.0.0",
"description": "A MongoDB-like database built on top of Hyperbee with support for indexing",
"main": "index.js",
"scripts": {
"lint": "standard --fix",
"test": "npm run lint && node ./test.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/RangerMauve/hyperbeedeebee.git"
},
"keywords": [
"hyperbee",
"index",
"db",
"p2p",
"database"
],
"author": "rangermauve <ranger@mauve.moe> (https://mauve.moe/)",
"license": "AGPL-3.0",
"bugs": {
"url": "https://github.com/RangerMauve/hyperbeedeebee/issues"
},
"homepage": "https://github.com/RangerMauve/hyperbeedeebee#readme",
"dependencies": {
"bson": "^4.3.0",
"cbor": "^8.1.0"
},
"devDependencies": {
"hyperbee": "^1.5.4",
"hypercore": "^9.9.1",
"random-access-memory": "^3.1.2",
"standard": "^16.0.3",
"tape": "^5.2.2"
}
}