-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
101 lines (101 loc) · 3.34 KB
/
package.json
File metadata and controls
101 lines (101 loc) · 3.34 KB
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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
{
"name": "ddrive-daemon",
"version": "2.0.1",
"description": "Daemon for creating, seeding and managing dDrives.",
"main": "index.js",
"bin": {
"ddrive": "./bin/run/run"
},
"scripts": {
"test": "NODE_ENV=test tape test/*.js"
},
"files": [
"index.js",
"manager.js",
"scripts/",
"lib/",
"bin/"
],
"repository": {
"type": "git",
"url": "git+https://github.com/distributedweb/ddrive-daemon.git"
},
"keywords": [
"ddrive",
"fuse",
"daemon"
],
"author": "Peeps Labs <peepslabs@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/distributedweb/ddrive-daemon/issues"
},
"homepage": "https://dwebx.org",
"dependencies": {
"@grpc/grpc-js": "^0.5.1",
"@oclif/command": "^1.5.19",
"@oclif/config": "^1.14.0",
"@oclif/errors": "^1.2.2",
"@oclif/plugin-autocomplete": "^0.1.5",
"@oclif/plugin-help": "^2.2.3",
"buffer-json-encoding": "^1.0.2",
"call-me-maybe": "^1.0.1",
"dwebstore": "git://github.com/DistributedWeb/dwebstore.git#07dcea14f69926a77eac535e2a5f05b2676c80ae",
"dwebstore-swarm-networking": "git://github.com/DistributedWeb/dwebstore-swarm-networking.git#aa485837e9d10df2f2ccb325c99609ec4eb51505",
"dwebx-encoding": "git://github.com/DistributedWeb/dwebx-encoding.git#adbab1965b1152c3a7252ca01807e9744c713398",
"end-of-stream": "^1.4.4",
"fs-extra": "^7.0.1",
"globby": "^11.0.0",
"google-protobuf": "^3.8.0",
"ddatabase-cache": "git://github.com/DistributedWeb/ddatabase-cache.git#db95e214db76f10e77bf45672c84faf2eccb6725",
"ddatabase-crypto": "git://github.com/DistributedWeb/ddatabase-crypto.git#cb6ad0a594998b258fe62531643c66cab1e9fd9e",
"ddatabase-default-storage": "git://github.com/DistributedWeb/ddatabase-default-storage.git#f789a89a669e8db35b85e603b5d71781fc641c24",
"ddatabase-protocol": "git://github.com/DistributedWeb/ddatabase-protocol.git#c8fc78683af50435c5c8c995d55a77c1b52cb127",
"ddrive": "git://github.com/DistributedWeb/ddrive.git#02e5cb33905d4f0c4211674b378ca2a8c6d8e0d3",
"ddrive-daemon-client": "git://github.com/DistributedWeb/ddrive-daemon-client.git#06e26c64037fbc67bcb619a51f90594b73611acb",
"ddrive-schemas": "git://github.com/DistributedWeb/ddrive-schemas.git#bf1f289bc20ced1a0ce1ebc05cd4ca6be18564ed",
"level": "^6.0.0",
"level-mem": "^5.0.1",
"minimist": "^1.2.5",
"mkdirp": "^0.5.1",
"nanoresource-promise": "^1.2.2",
"ora": "^4.0.3",
"peersockets": "^0.3.0",
"pino": "^5.12.6",
"pm2": "^4.2.1",
"process-top": "^1.1.0",
"pump": "^3.0.0",
"pumpify": "^2.0.1",
"random-access-memory": "^3.1.1",
"stream-collector": "^1.0.1",
"streamx": "^2.6.0",
"subleveldown": "^4.0.0",
"varint": "^5.0.0"
},
"optionalDependencies": {
"fuse-native": "^2.2.1",
"ddrive-fuse": "git://github.com/DistributedWeb/ddrive-fuse.git#5fd3a2c1ba322d070f127b5857d1fd7377c8bad1"
},
"devDependencies": {
"standard": "^12.0.1",
"tape": "^4.10.1",
"tmp-promise": "^2.0.1"
},
"standard": {
"ignore": [
"lib/fuse/index.js",
"bin/commands/*.js",
"bin/commands/debug/*.js",
"bin/commands/cleanup/*.js"
]
},
"oclif": {
"commands": "./bin/commands",
"bin": "ddrive",
"plugins": [
"@oclif/plugin-help",
"@oclif/plugin-autocomplete",
"ddrive-daemon-client"
]
}
}