forked from ipfs/js-ipfs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
263 lines (263 loc) · 12 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
{
"name": "js-ipfs",
"version": "1.0.0",
"description": "JavaScript implementation of the IPFS specification",
"scripts": {
"postinstall": "lerna bootstrap",
"link": "lerna link",
"reset": "lerna run clean && rimraf packages/*/node_modules examples/*/node_modules node_modules",
"test": "lerna run test",
"test:node": "lerna run test:node",
"test:browser": "lerna run test:browser",
"test:webworker": "lerna run test:webworker",
"test:electron": "lerna run test:electron",
"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",
"configure-examples": "run-s configure-examples:* release:pre:reinstall release:pre:bundle",
"configure-examples:add-examples": "json -I -f ./lerna.json -e \"this.packages.push('examples/*'); this.packages = [...new Set(this.packages)]\"",
"configure-examples:add-hoisted-modules": "json -I -f ./lerna.json -e \"this.command.bootstrap.nohoist = ['ipfs-css', 'tachyons']; this.command.bootstrap.nohoist = [...new Set(this.command.bootstrap.nohoist)]\"",
"release": "run-s release:pre:* release:publish docker:release release:post:*",
"release:pre:non-dirty-repo": "git diff --quiet",
"release:pre:update-contributors": "aegir release --lint=false --test=false --bump=false --build=false --changelog=false --commit=false --tag=false --push=false --ghrelease=false --docs=false --publish=false --types=false",
"release:pre:reinstall": "npm run reset && npm i && rimraf package-lock.json packages/*/package-lock.json",
"release:pre:bundle": "NODE_ENV=production npm run build -- --scope={ipfs,ipfs-core,ipfs-*client,ipfs-grpc-protocol,ipfs-message-port-*}",
"release:publish": "lerna publish",
"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:post:update-example-dependencies": "node scripts/update-example-deps.js",
"release:rc": "run-s release:pre:* release:canary",
"release:canary": "lerna publish --canary --preid rc --dist-tag next --force-publish --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": {
"execa": "^5.0.0",
"json": "^10.0.0",
"lerna": "^3.22.0",
"npm-run-all": "^4.1.5",
"rimraf": "^3.0.2"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ipfs/js-ipfs.git"
},
"private": true,
"contributors": [
"David Dias <[email protected]>",
"achingbrain <[email protected]>",
"Alan Shaw <[email protected]>",
"Friedel Ziegelmayer <[email protected]>",
"Juan Batiz-Benet <[email protected]>",
"Hugo Dias <[email protected]>",
"Vasco Santos <[email protected]>",
"Henrique Dias <[email protected]>",
"Volker Mische <[email protected]>",
"ᴠɪᴄᴛᴏʀ ʙᴊᴇʟᴋʜᴏʟᴍ <[email protected]>",
"Stephen Whitmore <[email protected]>",
"Marcin Rataj <[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]>",
"Connor Keenan <[email protected]>",
"Pedro Santos <[email protected]>",
"Harlan T Wood <[email protected]>",
"Pascal Precht <[email protected]>",
"Andrew Nesbitt <[email protected]>",
"Maciej Krüger <[email protected]>",
"Michael Garvin <[email protected]>",
"Steven Allen <[email protected]>",
"Michael Muré <[email protected]>",
"João Antunes <[email protected]>",
"Enrico Marino <[email protected]>",
"Christian Couder <[email protected]>",
"Rob Brackett <[email protected]>",
"Prabhakar Poudel <[email protected]>",
"Mithgol <[email protected]>",
"Hector Sanjuan <[email protected]>",
"Xmader <[email protected]>",
"Joonas Koivunen <[email protected]>",
"Gavin McDermott <[email protected]>",
"Jonathan <[email protected]>",
"Mikeal Rogers <[email protected]>",
"Sangwon Hong <[email protected]>",
"Dzmitry Das <[email protected]>",
"haad <[email protected]>",
"Marius Darila <[email protected]>",
"Andrew de Andrade <[email protected]>",
"Paulo Rodrigues <[email protected]>",
"RasmusErik Voel Jensen <[email protected]>",
"Ryan Bell <[email protected]>",
"Alex Mingoia <[email protected]>",
"Yahya <[email protected]>",
"Matt Ober <[email protected]>",
"Jeromy <[email protected]>",
"Mark Robert Henderson <[email protected]>",
"Andrey <[email protected]>",
"Antonio Tenorio-Fornés <[email protected]>",
"Dan Ordille <[email protected]>",
"David Gilbertson <[email protected]>",
"Doug A <[email protected]>",
"Georgios Rassias <[email protected]>",
"Gorka Ludlow <[email protected]>",
"Jim Pick <[email protected]>",
"Jonybang <[email protected]>",
"Kevin Simper <[email protected]>",
"Kevin Wang <[email protected]>",
"0xflotus <[email protected]>",
"Maxime Lathuilière <[email protected]>",
"Nuno Nogueira <[email protected]>",
"Portia Burton <[email protected]>",
"Raoul Millais <[email protected]>",
"Sid Harder <[email protected]>",
"anders <[email protected]>",
"bluelovers <[email protected]>",
"samuli <[email protected]>",
"shunkin <[email protected]>",
"tcme <[email protected]>",
"Максим Ильин <[email protected]>",
"SeungWon <[email protected]>",
"noah the goodra <[email protected]>",
"Heo Sangmin <[email protected]>",
"Lars Gierth <[email protected]>",
"Lukas Drgon <[email protected]>",
"Henry Rodrick <[email protected]>",
"Marcus Bernales <[email protected]>",
"Mat Kelly <[email protected]>",
"Hannah Howard <[email protected]>",
"Guilherme Pacheco <[email protected]>",
"Matt Zumwalt <[email protected]>",
"priecint <[email protected]>",
"Michael Bradley <[email protected]>",
"Grant Herman <[email protected]>",
"Michelle Lee <[email protected]>",
"Giuseppe Bertone <[email protected]>",
"Mitar <[email protected]>",
"Giles <[email protected]>",
"Mohamed Abdulaziz <[email protected]>",
"André Cruz <[email protected]>",
"Mounish Sai <[email protected]>",
"Nate Foss <[email protected]>",
"Nick Poulden <[email protected]>",
"Nicolás Santángelo <[email protected]>",
"George Shammas <[email protected]>",
"ron litzenberger <[email protected]>",
"Níckolas Goline <[email protected]>",
"Gabriel Garrido Calvo <[email protected]>",
"Orie Steele <[email protected]>",
"Oskar Nyberg <[email protected]>",
"Pau Ramon Revilla <[email protected]>",
"Paul Cowgill <[email protected]>",
"Filip Š <[email protected]>",
"Fil <[email protected]>",
"Felix Yan <[email protected]>",
"Faheel Ahmad <[email protected]>",
"Pete Thomas <[email protected]>",
"Alex North <[email protected]>",
"sarthak khandelwal <[email protected]>",
"Donatas Stundys <[email protected]>",
"Dominic Della Valle <[email protected]>",
"Dmitry Nikulin <[email protected]>",
"Dietrich Ayala <[email protected]>",
"Rod Keys <[email protected]>",
"Roman Khafizianov <[email protected]>",
"Davide Icardi <[email protected]>",
"David da Silva <[email protected]>",
"SidHarder <[email protected]>",
"Adam Uhlíř <[email protected]>",
"David Braun <[email protected]>",
"Steven Vandevelde <[email protected]>",
"Subin Siby <[email protected]>",
"TJKoury <[email protected]>",
"Tapasweni Pathak <[email protected]>",
"Tara Vancil <[email protected]>",
"Terence Pae <[email protected]>",
"David <[email protected]>",
"Thiago Delgado <[email protected]>",
"Thorsten Zoerner <[email protected]>",
"Timothé <[email protected]>",
"Danny <[email protected]>",
"Daniela Borges Matos de Carvalho <[email protected]>",
"Uroš Jurglič <[email protected]>",
"Daniel J. O'Quinn <[email protected]>",
"Daniel Constantin <[email protected]>",
"Victor Bjelkholm <[email protected]>",
"Daniel Buchner <[email protected]>",
"Vincent Martin <[email protected]>",
"Dafeng <[email protected]>",
"Vutsal Singhal <[email protected]>",
"Connor White <[email protected]>",
"Yole <[email protected]>",
"Zhiyuan Lin <[email protected]>",
"Christian Paul <[email protected]>",
"bitspill <[email protected]>",
"thattommyhall <[email protected]>",
"datafatmunger <[email protected]>",
"Chance Hudson <[email protected]>",
"Caio Gondim <[email protected]>",
"CHEVALAY JOSSELIN <[email protected]>",
"dmitriy ryajov <[email protected]>",
"elsehow <[email protected]>",
"ethers <[email protected]>",
"Bruno Zell <[email protected]>",
"Bruno Barbieri <[email protected]>",
"Brian Vander Schaaf <[email protected]>",
"Bernard Mordan <[email protected]>",
"hapsody <[email protected]>",
"isan_rivkin <[email protected]>",
"Ayush Mahajan <[email protected]>",
"kevingzhang <[email protected]>",
"James Halliday <[email protected]>",
"Jason Carver <[email protected]>",
"Jeeyong Um <[email protected]>",
"Jessica Schilling <[email protected]>",
"Joe Turgeon <[email protected]>",
"Joel Gustafson <[email protected]>",
"Johannes Wikner <[email protected]>",
"John Kane <[email protected]>",
"Jon Schlinkert <[email protected]>",
"Jade Meskill <[email protected]>",
"Jonathan Commins <[email protected]>",
"leekt216 <[email protected]>",
"Jacob Karlsson <[email protected]>",
"Jorropo <[email protected]>",
"Holodisc <[email protected]>"
]
}