forked from ipfs/js-ipfs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
312 lines (312 loc) · 14 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
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
{
"name": "js-ipfs",
"version": "1.0.0",
"description": "JavaScript implementation of the IPFS specification",
"scripts": {
"link": "lerna link",
"reset": "lerna run clean && rimraf packages/*/node_modules node_modules package-lock.json packages/*/package-lock.json",
"test": "lerna run test",
"test:node": "lerna run test:node",
"test:chrome": "lerna run test:chrome",
"test:chrome-webworker": "lerna run test:chrome-webworker",
"test:firefox": "lerna run test:firefox",
"test:firefox-webworker": "lerna run test:firefox-webworker",
"test:electron-main": "lerna run test:electron-main",
"test:electron-renderer": "lerna run test:electron-renderer",
"test:external": "lerna run test:external",
"test:cli": "lerna run test:cli",
"test:interop": "lerna run test:interop",
"test:interface:client": "lerna run test:interface:client",
"test:interface:core": "lerna run test:interface:core",
"test:interface:http-go": "lerna run test:interface:http-go",
"test:interface:http-js": "lerna run test:interface:http-js",
"test:interface:message-port-client": "lerna run test:interface:message-port-client",
"coverage": "lerna run coverage",
"build": "lerna run build",
"clean": "lerna run clean",
"lint": "lerna run lint",
"dep-check": "lerna run dep-check",
"release": "run-s build npm:release docker:release",
"npm:release": "lerna publish from-package --no-push --no-private --yes",
"docker:release": "run-s docker:release:*",
"docker:release:build": "docker build . --no-cache --tag js-ipfs:latest --file ./Dockerfile.latest",
"docker:release:tag-latest": "docker tag js-ipfs:latest docker.io/ipfs/js-ipfs:latest",
"docker:release:tag-version": "docker tag js-ipfs:latest docker.io/ipfs/js-ipfs:v`npm show ipfs@latest version -q`",
"docker:release:push-latest": "docker push ipfs/js-ipfs:latest",
"docker:release:push-version": "docker push ipfs/js-ipfs:v`npm show ipfs@latest version -q`",
"release:rc": "run-s npm:rc:* docker:rc",
"npm:rc:version": "lerna version prerelease --preid `git rev-parse --short HEAD` --force-publish --no-push --yes",
"npm:rc:build": "npm run build",
"npm:rc:publish": "lerna publish from-package --no-push --no-private --dist-tag next --yes",
"docker:rc": "run-s docker:rc:*",
"docker:rc:build": "docker build . --no-cache --tag js-ipfs:next --file ./Dockerfile.next",
"docker:rc:tag-next": "docker tag js-ipfs:next docker.io/ipfs/js-ipfs:next",
"docker:rc:tag-rc": "docker tag js-ipfs:next docker.io/ipfs/js-ipfs:v`npm show ipfs@next version -q`",
"docker:rc:push-next": "docker push ipfs/js-ipfs:next",
"docker:rc:push-rc": "docker push ipfs/js-ipfs:v`npm show ipfs@next version -q`"
},
"eslintConfig": {
"extends": "ipfs",
"ignorePatterns": [
"!.aegir.js"
]
},
"devDependencies": {
"lerna": "^4.0.0",
"node-fetch": "npm:@achingbrain/node-fetch@^2.6.4",
"npm-run-all": "^4.1.5",
"rimraf": "^3.0.2"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ipfs/js-ipfs.git"
},
"private": true,
"workspaces": [
"packages/*"
],
"engines": {
"npm": ">=7.0.0"
},
"contributors": [
"David Dias <[email protected]>",
"achingbrain <[email protected]>",
"Alan Shaw <[email protected]>",
"Friedel Ziegelmayer <[email protected]>",
"Juan Batiz-Benet <[email protected]>",
"Vasco Santos <[email protected]>",
"Hugo Dias <[email protected]>",
"Henrique Dias <[email protected]>",
"Volker Mische <[email protected]>",
"ᴠɪᴄᴛᴏʀ ʙᴊᴇʟᴋʜᴏʟᴍ <[email protected]>",
"Marcin Rataj <[email protected]>",
"Stephen Whitmore <[email protected]>",
"Jacob Heun <[email protected]>",
"Francisco Baio Dias <[email protected]>",
"Matt Bell <[email protected]>",
"Richard Schneider <[email protected]>",
"Pedro Teixeira <[email protected]>",
"Travis Person <[email protected]>",
"Kristoffer Ström <[email protected]>",
"Dmitriy Ryajov <[email protected]>",
"Irakli Gozalishvili <[email protected]>",
"Oli Evans <[email protected]>",
"nginnever <[email protected]>",
"Richard Littauer <[email protected]>",
"dirkmc <[email protected]>",
"Diogo Silva <[email protected]>",
"Pedro Santos <[email protected]>",
"Connor Keenan <[email protected]>",
"kumavis <[email protected]>",
"Harlan T Wood <[email protected]>",
"Nitin Patel <[email protected]>",
"Pascal Precht <[email protected]>",
"Andrew Nesbitt <[email protected]>",
"Hector Sanjuan <[email protected]>",
"Maciej Krüger <[email protected]>",
"Michael Garvin <[email protected]>",
"Steven Allen <[email protected]>",
"Michael Muré <[email protected]>",
"Łukasz Magiera <[email protected]>",
"João Antunes <[email protected]>",
"Enrico Marino <[email protected]>",
"Teri Chadbourne <[email protected]>",
"Christian Couder <[email protected]>",
"Rob Brackett <[email protected]>",
"Prabhakar Poudel <[email protected]>",
"Mithgol <[email protected]>",
"Haad <[email protected]>",
"Jonathan <[email protected]>",
"Xmader <[email protected]>",
"Sangwon Hong <[email protected]>",
"Joonas Koivunen <[email protected]>",
"Gavin McDermott <[email protected]>",
"Mikeal Rogers <[email protected]>",
"Dzmitry Das <[email protected]>",
"Rod Vagg <[email protected]>",
"Andrew de Andrade <[email protected]>",
"Matt Ober <[email protected]>",
"Максим Ильин <[email protected]>",
"Ryan Bell <[email protected]>",
"Alex Mingoia <[email protected]>",
"RasmusErik Voel Jensen <[email protected]>",
"Marius Darila <[email protected]>",
"Yahya <[email protected]>",
"anders <[email protected]>",
"bluelovers <[email protected]>",
"Paulo Rodrigues <[email protected]>",
"haad <[email protected]>",
"Jeromy <[email protected]>",
"0xflotus <[email protected]>",
"Andrey <[email protected]>",
"André Cruz <[email protected]>",
"Antonio Tenorio-Fornés <[email protected]>",
"Dan Ordille <[email protected]>",
"Dan Shields <[email protected]>",
"David Gilbertson <[email protected]>",
"Doug A <[email protected]>",
"Georgios Rassias <[email protected]>",
"Gorka Ludlow <[email protected]>",
"Jeff Downie <[email protected]>",
"Jim Pick <[email protected]>",
"Jonybang <[email protected]>",
"Kevin Simper <[email protected]>",
"Kevin Wang <[email protected]>",
"Ludwig <[email protected]>",
"Mark Robert Henderson <[email protected]>",
"Maxime Lathuilière <[email protected]>",
"Molly <[email protected]>",
"Nuno Nogueira <[email protected]>",
"Portia Burton <[email protected]>",
"Raoul Millais <[email protected]>",
"Sid Harder <[email protected]>",
"Vu Tien Khang <[email protected]>",
"reasv <[email protected]>",
"samuli <[email protected]>",
"shunkin <[email protected]>",
"tcme <[email protected]>",
"seungwon-kang <[email protected]>",
"Arpit Agarwal <[email protected]>",
"Jason Papakostas <[email protected]>",
"Ilya Kreymer <[email protected]>",
"Julien Malard <[email protected]>",
"phillmac <[email protected]>",
"Holodisc <[email protected]>",
"Lars Gierth <[email protected]>",
"priecint <[email protected]>",
"Lukas Drgon <[email protected]>",
"Heo Sangmin <[email protected]>",
"Manuel Spagnolo <[email protected]>",
"Henry Rodrick <[email protected]>",
"Marcus Bernales <[email protected]>",
"Harsh Vakharia <[email protected]>",
"Alen Siljak <[email protected]>",
"Mat Kelly <[email protected]>",
"Haoliang Yu <[email protected]>",
"Hannah Howard <[email protected]>",
"Matt Zumwalt <[email protected]>",
"robbsolter <[email protected]>",
"Michael Bradley <[email protected]>",
"Guilherme Pacheco <[email protected]>",
"Gregory Oakes <[email protected]>",
"Michelle Lee <[email protected]>",
"Grant Herman <[email protected]>",
"Mitar <[email protected]>",
"Gopalakrishna Palem <[email protected]>",
"Mohamed Abdulaziz <[email protected]>",
"ron litzenberger <[email protected]>",
"Mounish Sai <[email protected]>",
"My9Bot <[email protected]>",
"Nate Foss <[email protected]>",
"Adin Schmahmann <[email protected]>",
"Nick Poulden <[email protected]>",
"Nicolás Santángelo <[email protected]>",
"Giuseppe Bertone <[email protected]>",
"sarthak khandelwal <[email protected]>",
"Níckolas Goline <[email protected]>",
"Giles <[email protected]>",
"Olivério Sousa <[email protected]>",
"Orie Steele <[email protected]>",
"Oskar Nyberg <[email protected]>",
"Padmashree Jha <[email protected]>",
"George Shammas <[email protected]>",
"Pau Ramon Revilla <[email protected]>",
"Paul Cowgill <[email protected]>",
"Gabriel Garrido Calvo <[email protected]>",
"Filip Š <[email protected]>",
"Fil <[email protected]>",
"Pete Thomas <[email protected]>",
"Philipp Krüger <[email protected]>",
"Felix Yan <[email protected]>",
"Qmstream <[email protected]>",
"Adam Uhlíř <[email protected]>",
"Faheel Ahmad <[email protected]>",
"Revat Arora <[email protected]>",
"Donatas Stundys <[email protected]>",
"Dominic Della Valle <[email protected]>",
"Rod Keys <[email protected]>",
"Dmitry Nikulin <[email protected]>",
"Roman Khafizianov <[email protected]>",
"Dietrich Ayala <[email protected]>",
"Davide Icardi <[email protected]>",
"Sergey Ukustov <[email protected]>",
"swedneck <[email protected]>",
"SidHarder <[email protected]>",
"A_A <[email protected]>",
"David da Silva <[email protected]>",
"Steven Vandevelde <[email protected]>",
"Subin Siby <[email protected]>",
"TJKoury <[email protected]>",
"Tapasweni Pathak <[email protected]>",
"Tara Vancil <[email protected]>",
"Tejas Kumthekar <[email protected]>",
"Terence Pae <[email protected]>",
"David Braun <[email protected]>",
"Thiago Delgado <[email protected]>",
"Thorsten Zoerner <[email protected]>",
"Timothé <[email protected]>",
"David <[email protected]>",
"Danny <[email protected]>",
"thattommyhall <[email protected]>",
"Uroš Jurglič <[email protected]>",
"Daniela Borges Matos de Carvalho <[email protected]>",
"Daniel J. O'Quinn <[email protected]>",
"Victor Bjelkholm <[email protected]>",
"Daniel Constantin <[email protected]>",
"Vincent Martin <[email protected]>",
"Daniel Buchner <[email protected]>",
"Alex North <[email protected]>",
"Vutsal Singhal <[email protected]>",
"Xiao Liang <[email protected]>",
"Dafeng <[email protected]>",
"Connor White <[email protected]>",
"Yole <[email protected]>",
"Yusef Napora <[email protected]>",
"Zhiyuan Lin <[email protected]>",
"Clemo <[email protected]>",
"Christian Paul <[email protected]>",
"arjunraghurama <[email protected]>",
"bitspill <[email protected]>",
"Chirag Shinde <[email protected]>",
"datafatmunger <[email protected]>",
"Chance Hudson <[email protected]>",
"Caio Gondim <[email protected]>",
"CSDUMMI <[email protected]>",
"CHEVALAY JOSSELIN <[email protected]>",
"Bruno Zell <[email protected]>",
"dmitriy ryajov <[email protected]>",
"elsehow <[email protected]>",
"ethers <[email protected]>",
"Bruno Barbieri <[email protected]>",
"Brian Vander Schaaf <[email protected]>",
"Brandon <[email protected]>",
"Bernard Mordan <[email protected]>",
"hapsody <[email protected]>",
"imestin <[email protected]>",
"isan_rivkin <[email protected]>",
"javaskript <[email protected]>",
"Ayush Mahajan <[email protected]>",
"jonahweissman <[email protected]>",
"kevingzhang <[email protected]>",
"klueq <[email protected]>",
"James Halliday <[email protected]>",
"Jason Carver <[email protected]>",
"Jeeyong Um <[email protected]>",
"leekt216 <[email protected]>",
"nature hacker <[email protected]>",
"Jessica Schilling <[email protected]>",
"Arkadiy Kukarkin <[email protected]>",
"Joe Turgeon <[email protected]>",
"Joel Gustafson <[email protected]>",
"Johannes Wikner <[email protected]>",
"John Kane <[email protected]>",
"Johnny <[email protected]>",
"Jon Schlinkert <[email protected]>",
"Jade Meskill <[email protected]>",
"Jonathan Commins <[email protected]>",
"noah the goodra <[email protected]>",
"Jacob Karlsson <[email protected]>",
"Jorropo <[email protected]>",
"João Santos <[email protected]>"
]
}