forked from ipld/js-ipld-graph-builder
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.2 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
{
"name": "ipld-graph-builder",
"version": "1.2.1",
"description": "a merkle trie implemention that if focused on being generic and fast",
"main": "index.js",
"scripts": {
"coverage": "node --harmony ./node_modules/istanbul/lib/cli.js cover ./test/index.js",
"coveralls": "npm run coverage && coveralls <coverage/lcov.info",
"lint": "standard",
"test": "node --harmony ./test/index.js",
"build:docs": "documentation ./index.js --github --sort-order source -f md > ./docs/index.md"
},
"keywords": [
"merkle",
"dag",
"ipfs"
],
"author": "mjbecze <mjbecze@gmail.com>",
"license": "MPL-2.0",
"dependencies": {
"assert": "^1.4.1",
"cids": "^0.5.0",
"multihashes": "^0.4.5"
},
"devDependencies": {
"async": "^2.3.0",
"coveralls": "^2.13.0",
"documentation": "^3.0.4",
"ipfs": "^0.24.0",
"ipld-dag-pb": "^0.11.0",
"istanbul": "^1.1.0-alpha.1",
"standard": "^10.0.2",
"tape": "^4.6.2"
},
"repository": {
"type": "git",
"url": "git@github.com:ipld/js-ipld-graph-builder.git"
},
"bugs": {
"url": "https://github.com/ipld/js-ipld-graph-builder/issues"
},
"homepage": "https://github.com/ipld/js-ipld-graph-builder"
}