-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathpackage.json
62 lines (62 loc) · 1.75 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
{
"name": "ipfs-merkle-dag",
"version": "0.7.3",
"description": "A JavaScript implementations of the IPFS MerkleDAG implementations (protobufs)",
"main": "lib/index.js",
"jsnext:main": "src/index.js",
"scripts": {
"lint": "aegir-lint",
"build": "aegir-build",
"test": "aegir-test",
"test:node": "aegir-test node",
"test:browser": "aegir-test browser",
"release": "aegir-release",
"release-minor": "aegir-release --type minor",
"release-major": "aegir-release --type major",
"coverage": "aegir-coverage"
},
"pre-commit": [
"lint",
"test"
],
"author": "Vijayee Kulkaa <[email protected]>",
"contributors": [
"David Dias <[email protected]>",
"Friedel Ziegelmayer <[email protected]>",
"James Halliday <[email protected]>",
"Richard Littauer <[email protected]>",
"Stephen Whitmore <[email protected]>",
"Vijayee Kulkaa <[email protected]>",
"nginnever <[email protected]>"
],
"license": "ISC",
"repository": {
"type": "git",
"url": "https://github.com/ipfs/js-ipfs-merkle-dag.git"
},
"dependencies": {
"ipfs-block": "^0.3.0",
"is-ipfs": "^0.2.0",
"multihashes": "^0.2.2",
"multihashing": "^0.2.1",
"protocol-buffers": "^3.1.6",
"pull-stream": "^3.4.5",
"pull-traverse": "^1.0.3",
"stable": "^0.1.5"
},
"devDependencies": {
"aegir": "^8.0.1",
"bs58": "^3.0.0",
"buffer-loader": "0.0.1",
"chai": "^3.5.0",
"fs-pull-blob-store": "^0.4.1",
"idb-pull-blob-store": "^0.4.0",
"ipfs-block-service": "^0.5.0",
"ipfs-repo": "^0.9.0",
"lodash": "^4.15.0",
"ncp": "^2.0.0",
"pre-commit": "^1.1.3",
"rimraf": "^2.5.4",
"run-series": "^1.1.4"
}
}