-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1 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
{
"name": "hypercore-dag",
"version": "0.0.0",
"description": "DAGs on top of hypercore, allowing verified random-access to graph nodes",
"main": "index.js",
"directories": {
"test": "test"
},
"dependencies": {
"bitfield": "^1.1.2",
"from2": "^2.3.0",
"mutexify": "^1.1.0",
"protocol-buffers": "^3.1.6",
"pumpify": "^1.3.5",
"run-parallel": "^1.1.6"
},
"devDependencies": {
"after-all": "^2.0.2",
"hypercore": "^4.11.0",
"memdb": "^1.3.1",
"tape": "^4.6.2"
},
"scripts": {
"test": "tape test/*.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/emilbayes/hypercore-dag.git"
},
"keywords": [
"hypercore",
"dag",
"hyperlog",
"hyperscience",
"digraph",
"acyclic",
"dfs",
"bfs"
],
"author": "Emil Bay <github@tixz.dk>",
"license": "ISC",
"bugs": {
"url": "https://github.com/emilbayes/hypercore-dag/issues"
},
"homepage": "https://github.com/emilbayes/hypercore-dag#readme"
}