forked from tableflip/ipfs-fuse
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 864 Bytes
/
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
{
"name": "ipfs-fuse",
"version": "0.3.2",
"description": "Mount IPFS MFS as a FUSE volume using Node.js",
"main": "index.js",
"bin": {
"ipfs-fuse": "bin.js"
},
"scripts": {
"start": "node bin",
"test": "standard"
},
"keywords": [
"IPFS",
"MFS",
"FUSE",
"filesystem",
"mount"
],
"author": "Alan Shaw",
"license": "MIT",
"dependencies": {
"async": "^2.6.1",
"debug": "^4.1.0",
"explain-error": "^1.0.4",
"fuse-bindings": "^2.11.2",
"ipfs-http-client": "^27.0.0",
"mkdirp": "^0.5.1"
},
"devDependencies": {
"standard": "^12.0.1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/tableflip/ipfs-fuse.git"
},
"bugs": {
"url": "https://github.com/tableflip/ipfs-fuse/issues"
},
"homepage": "https://github.com/tableflip/ipfs-fuse#readme"
}