forked from ipfs-inactive/js-ipfs-mfs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
83 lines (83 loc) · 2.26 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"name": "ipfs-mfs",
"version": "0.13.1",
"description": "JavaScript implementation of the IPFS Mutable File System",
"leadMaintainer": "Alex Potsides <alex.potsides@protocol.ai>",
"main": "src/index.js",
"browser": {
"fs": false,
"@hapi/joi": "joi-browser"
},
"scripts": {
"test": "aegir test",
"test:node": "aegir test -t node",
"test:browser": "aegir test -t browser",
"test:webworker": "aegir test -t webworker",
"build": "aegir build",
"lint": "aegir lint",
"release": "aegir release",
"release-minor": "aegir release --type minor",
"release-major": "aegir release --type major",
"coverage": "aegir coverage",
"dep-check": "aegir dep-check"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ipfs/js-ipfs-mfs.git"
},
"keywords": [
"IPFS"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/ipfs/js-ipfs-mfs/issues"
},
"engines": {
"node": ">=8.0.0",
"npm": ">=3.0.0"
},
"homepage": "https://github.com/ipfs/js-ipfs-mfs#readme",
"devDependencies": {
"aegir": "^20.0.0",
"async-iterator-all": "^1.0.0",
"chai": "^4.2.0",
"detect-node": "^2.0.4",
"detect-webworker": "^1.0.0",
"dirty-chai": "^2.0.1",
"ipfs-block-service": "~0.16.0",
"ipfs-repo": "~0.27.0",
"ipld": "~0.25.0",
"memdown": "^4.0.0",
"temp-write": "^4.0.0"
},
"dependencies": {
"@hapi/boom": "^7.4.2",
"@hapi/joi": "^15.1.0",
"async-iterator-last": "^1.0.0",
"cids": "~0.7.1",
"debug": "^4.1.0",
"err-code": "^2.0.0",
"hamt-sharding": "~0.0.2",
"interface-datastore": "~0.7.0",
"ipfs-multipart": "~0.2.0",
"ipfs-unixfs": "~0.1.16",
"ipfs-unixfs-exporter": "~0.38.0",
"ipfs-unixfs-importer": "~0.40.0",
"ipld-dag-pb": "~0.18.0",
"joi-browser": "^13.4.0",
"mortice": "^2.0.0",
"multicodec": "~0.5.3",
"multihashes": "~0.4.14",
"once": "^1.4.0",
"pull-stream": "^3.6.9"
},
"contributors": [
"Alan Shaw <alan.shaw@protocol.ai>",
"David <github@kattfest.se>",
"David Dias <daviddias.p@gmail.com>",
"Jacob Heun <jacobheun@gmail.com>",
"Vasco Santos <vasco.santos@moxy.studio>",
"Volker Mische <volker.mische@gmail.com>",
"achingbrain <alex@achingbrain.net>"
]
}