forked from ipfs/js-ipfs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
254 lines (254 loc) · 8.87 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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
{
"name": "ipfs",
"version": "0.28.2",
"description": "JavaScript implementation of the IPFS specification",
"bin": {
"jsipfs": "src/cli/bin.js"
},
"main": "src/core/index.js",
"browser": {
"./src/core/components/init-assets.js": false,
"./src/core/runtime/config-nodejs.json": "./src/core/runtime/config-browser.json",
"./src/core/runtime/libp2p-nodejs.js": "./src/core/runtime/libp2p-browser.js",
"./src/core/runtime/repo-nodejs.js": "./src/core/runtime/repo-browser.js",
"./src/core/runtime/dns-nodejs.js": "./src/core/runtime/dns-browser.js",
"./test/utils/create-repo-nodejs.js": "./test/utils/create-repo-browser.js",
"stream": "readable-stream",
"joi": "joi-browser"
},
"engines": {
"node": ">=6.0.0",
"npm": ">=3.0.0"
},
"scripts": {
"lint": "aegir lint",
"build": "aegir build",
"test": "aegir test -t node -t browser -t webworker --no-cors",
"test:node": "aegir test -t node",
"test:browser": "aegir test -t browser --no-cors",
"test:webworker": "aegir test -t webworker --no-cors",
"test:node:core": "aegir test -t node -f test/core/**/*.js",
"test:node:http": "aegir test -t node -f test/http-api/index.js",
"test:node:gateway": "aegir test -t node -f test/gateway/index.js",
"test:node:cli": "aegir test -t node -f test/cli/index.js",
"test:bootstrapers": "IPFS_TEST=bootstrapers aegir test -t browser -f test/bootstrapers.js",
"benchmark": "echo \"Error: no benchmarks yet\" && exit 1",
"benchmark:node": "echo \"Error: no benchmarks yet\" && exit 1",
"benchmark:node:core": "echo \"Error: no benchmarks yet\" && exit 1",
"benchmark:node:http": "echo \"Error: no benchmarks yet\" && exit 1",
"benchmark:browser": "echo \"Error: no benchmarks yet\" && exit 1",
"release": "aegir release -t node -t browser",
"release-minor": "aegir release --type minor -t node -t browser",
"release-major": "aegir release --type major -t node -t browser",
"coverage": "aegir coverage",
"coverage-publish": "aegir-coverage publish"
},
"pre-push": [
"lint",
"test"
],
"repository": {
"type": "git",
"url": "git+https://github.com/ipfs/js-ipfs.git"
},
"keywords": [
"IPFS"
],
"author": "David Dias <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/ipfs/js-ipfs/issues"
},
"homepage": "https://github.com/ipfs/js-ipfs#readme",
"devDependencies": {
"aegir": "^13.0.6",
"buffer-loader": "0.0.1",
"chai": "^4.1.2",
"delay": "^2.0.0",
"detect-node": "^2.0.3",
"dir-compare": "^1.4.0",
"dirty-chai": "^2.0.1",
"eslint-plugin-react": "^7.7.0",
"execa": "^0.10.0",
"expose-loader": "^0.7.5",
"form-data": "^2.3.2",
"hat": "0.0.3",
"ipfsd-ctl": "~0.31.0",
"interface-ipfs-core": "~0.58.0",
"lodash": "^4.17.5",
"mocha": "^5.0.5",
"ncp": "^2.0.0",
"nexpect": "^0.5.0",
"pre-commit": "^1.2.2",
"pretty-bytes": "^4.0.2",
"qs": "^6.5.1",
"random-fs": "^1.0.3",
"rimraf": "^2.6.2",
"stream-to-promise": "^2.2.0",
"transform-loader": "^0.2.4"
},
"dependencies": {
"async": "^2.6.0",
"big.js": "^5.0.3",
"binary-querystring": "~0.1.2",
"bl": "^1.2.2",
"boom": "^7.2.0",
"bs58": "^4.0.1",
"byteman": "^1.3.5",
"cids": "~0.5.3",
"debug": "^3.1.0",
"file-type": "^7.6.0",
"filesize": "^3.6.1",
"fsm-event": "^2.1.0",
"get-folder-size": "^1.0.1",
"glob": "^7.1.2",
"hapi": "^16.6.2",
"hapi-set-header": "^1.0.2",
"hoek": "^5.0.3",
"human-to-milliseconds": "^1.0.0",
"ipfs-api": "^19.0.0",
"ipfs-bitswap": "~0.19.0",
"ipfs-block": "~0.6.1",
"ipfs-block-service": "~0.13.0",
"ipfs-multipart": "~0.1.0",
"ipfs-repo": "~0.18.7",
"ipfs-unixfs": "~0.1.14",
"ipfs-unixfs-engine": "~0.27.0",
"ipld": "^0.15.0",
"is-ipfs": "^0.3.2",
"is-stream": "^1.1.0",
"joi": "^13.1.2",
"joi-browser": "^13.0.1",
"joi-multiaddr": "^1.0.1",
"libp2p": "~0.19.2",
"libp2p-circuit": "~0.1.5",
"libp2p-floodsub": "~0.14.1",
"libp2p-kad-dht": "~0.9.0",
"libp2p-keychain": "~0.3.1",
"libp2p-mdns": "~0.9.2",
"libp2p-mplex": "^0.6.0",
"libp2p-railing": "~0.7.1",
"libp2p-secio": "~0.9.4",
"libp2p-tcp": "~0.11.6",
"libp2p-webrtc-star": "~0.13.4",
"libp2p-websocket-star": "~0.7.7",
"libp2p-websockets": "~0.10.5",
"lodash.flatmap": "^4.5.0",
"lodash.get": "^4.4.2",
"lodash.sortby": "^4.7.0",
"lodash.values": "^4.3.0",
"mafmt": "^4.0.0",
"mime-types": "^2.1.18",
"mkdirp": "~0.5.1",
"multiaddr": "^3.1.0",
"multihashes": "~0.4.13",
"once": "^1.4.0",
"path-exists": "^3.0.0",
"peer-book": "~0.5.4",
"peer-id": "~0.10.6",
"peer-info": "~0.11.6",
"progress": "^2.0.0",
"promisify-es6": "^1.0.3",
"pull-abortable": "^4.1.1",
"pull-defer": "^0.2.2",
"pull-file": "^1.1.0",
"pull-ndjson": "^0.1.1",
"pull-paramap": "^1.2.2",
"pull-pushable": "^2.2.0",
"pull-sort": "^1.0.1",
"pull-stream": "^3.6.7",
"pull-stream-to-stream": "^1.3.4",
"pull-zip": "^2.0.1",
"read-pkg-up": "^3.0.0",
"readable-stream": "2.3.5",
"safe-buffer": "^5.1.1",
"stream-to-pull-stream": "^1.7.2",
"tar-stream": "^1.5.5",
"temp": "~0.8.3",
"through2": "^2.0.3",
"update-notifier": "^2.4.0",
"yargs": "^11.0.0",
"yargs-parser": "^9.0.2"
},
"optionalDependencies": {
"prom-client": "^11.0.0",
"prometheus-gc-stats": "^0.5.1"
},
"contributors": [
"Alan Shaw <[email protected]>",
"Andrew de Andrade <[email protected]>",
"Arpit Agarwal <[email protected]>",
"Arpit Agarwal <[email protected]>",
"Bernard Mordan <[email protected]>",
"Bruno Zell <[email protected]>",
"CHEVALAY JOSSELIN <[email protected]>",
"Caio Gondim <[email protected]>",
"Christian Couder <[email protected]>",
"Dafeng <[email protected]>",
"Daniel J. O'Quinn <[email protected]>",
"Daniela Borges Matos de Carvalho <[email protected]>",
"David Dias <[email protected]>",
"David da Silva <[email protected]>",
"Dmitriy Ryajov <[email protected]>",
"Dzmitry Das <[email protected]>",
"Enrico Marino <[email protected]>",
"Faheel Ahmad <[email protected]>",
"Felix Yan <[email protected]>",
"Francisco Baio Dias <[email protected]>",
"Francisco Baio Dias <[email protected]>",
"Friedel Ziegelmayer <[email protected]>",
"Georgios Rassias <[email protected]>",
"Gorka Ludlow <[email protected]>",
"Greenkeeper <[email protected]>",
"Haad <[email protected]>",
"Haoliang Yu <[email protected]>",
"Harsh Vakharia <[email protected]>",
"Henrique Dias <[email protected]>",
"Henry Rodrick <[email protected]>",
"Jade Meskill <[email protected]>",
"Johannes Wikner <[email protected]>",
"Jon Schlinkert <[email protected]>",
"Jonathan <[email protected]>",
"João Antunes <[email protected]>",
"João Santos <[email protected]>",
"Kevin Wang <[email protected]>",
"Lars Gierth <[email protected]>",
"Lukas Drgon <[email protected]>",
"Maciej Krüger <[email protected]>",
"Marius Darila <[email protected]>",
"Michelle Lee <[email protected]>",
"Mikeal Rogers <[email protected]>",
"Mithgol <[email protected]>",
"Nuno Nogueira <[email protected]>",
"Oskar Nyberg <[email protected]>",
"Pau Ramon Revilla <[email protected]>",
"Paulo Rodrigues <[email protected]>",
"Pedro Teixeira <[email protected]>",
"RasmusErik Voel Jensen <[email protected]>",
"Richard Littauer <[email protected]>",
"Richard Schneider <[email protected]>",
"Rod Keys <[email protected]>",
"Sangwon Hong <[email protected]>",
"Sid Harder <[email protected]>",
"SidHarder <[email protected]>",
"Stephen Whitmore <[email protected]>",
"Stephen Whitmore <[email protected]>",
"Terence Pae <[email protected]>",
"Uroš Jurglič <[email protected]>",
"Volker Mische <[email protected]>",
"Xiao Liang <[email protected]>",
"Yahya <[email protected]>",
"achingbrain <[email protected]>",
"bitspill <[email protected]>",
"haad <[email protected]>",
"jbenet <[email protected]>",
"jonahweissman <[email protected]>",
"kevingzhang <[email protected]>",
"kumavis <[email protected]>",
"nginnever <[email protected]>",
"npmcdn-to-unpkg-bot <[email protected]>",
"tcme <[email protected]>",
"victorbjelkholm <[email protected]>",
"Łukasz Magiera <[email protected]>"
]
}