This repository has been archived by the owner on Mar 10, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathpackage.json
81 lines (81 loc) · 2.18 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
{
"name": "ipfs-mfs",
"version": "0.4.2",
"description": "JavaScript implementation of the IPFS Mutable File System",
"leadMaintainer": "Alex Potsides <[email protected]>",
"main": "src/index.js",
"browser": {
"fs": false,
"joi": "joi-browser"
},
"scripts": {
"test": "aegir test -f test/browser.js",
"test:node": "aegir test -t node",
"test:browser": "aegir test -t browser -f test/browser.js",
"test:webworker": "aegir test -t webworker -f test/browser.js",
"build": "aegir build",
"lint": "aegir lint",
"release": "aegir release",
"release-minor": "aegir release --type minor",
"release-major": "aegir release --type major",
"coverage": "aegir coverage"
},
"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": "^15.3.0",
"chai": "^4.1.2",
"detect-node": "^2.0.4",
"detect-webworker": "^1.0.0",
"dirty-chai": "^2.0.1",
"ipfs": "~0.32.2",
"pull-buffer-stream": "^1.0.0",
"safe-buffer": "^5.1.1",
"tmp": "~0.0.33"
},
"dependencies": {
"async": "^2.6.1",
"blob": "~0.0.4",
"cids": "~0.5.4",
"debug": "^4.0.1",
"file-api": "~0.10.4",
"filereader-stream": "^2.0.0",
"interface-datastore": "~0.6.0",
"ipfs-unixfs": "~0.1.15",
"ipfs-unixfs-engine": "~0.32.1",
"is-pull-stream": "~0.0.0",
"is-stream": "^1.1.0",
"joi": "^13.4.0",
"joi-browser": "^13.4.0",
"mortice": "^1.2.0",
"once": "^1.4.0",
"promisify-es6": "^1.0.3",
"pull-cat": "^1.1.11",
"pull-defer": "~0.2.2",
"pull-paramap": "^1.2.2",
"pull-pushable": "^2.2.0",
"pull-stream": "^3.6.9",
"pull-stream-to-stream": "^1.3.4",
"pull-traverse": "^1.0.3",
"stream-to-pull-stream": "^1.7.2"
},
"contributors": [
"Jacob Heun <[email protected]>",
"Vasco Santos <[email protected]>",
"achingbrain <[email protected]>"
]
}