forked from neo4j/neo4j-browser
-
Notifications
You must be signed in to change notification settings - Fork 0
/
NOTICE.txt
1652 lines (1647 loc) · 81.8 KB
/
NOTICE.txt
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
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
Copyright (c) "Neo4j,"
Neo4j Sweden AB [http://neo4j.com]
This product includes software ("Software") developed by Neo Technology.
The copyright in the bundled Neo4j graph database (including the
Software) is owned by Neo Technology. The Software developed and owned
by Neo Technology is licensed under the GNU GENERAL PUBLIC LICENSE
Version 3 (http://www.fsf.org/licensing/licenses/gpl-3.0.html) ("GPL")
to all third parties and that license, as required by the GPL, is
included in the LICENSE.txt file.
However, if you have executed an End User Software License and Services
Agreement or an OEM Software License and Support Services Agreement, or
another commercial license agreement with Neo Technology or one of its
affiliates (each, a "Commercial Agreement"), the terms of the license in
such Commercial Agreement will supersede the GPL and you may use the
software solely pursuant to the terms of the relevant Commercial
Agreement.
Full license texts are found in LICENSES.txt.
Third-party licenses
--------------------
├─ (BSD-3-Clause AND Apache-2.0)
│ └─ [email protected]
│ ├─ URL: git://github.com/gka/chroma.js.git
│ ├─ VendorName: Gregor Aisch
│ └─ VendorUrl: https://github.com/gka/chroma.js
├─ (BSD-3-Clause OR GPL-2.0)
│ └─ [email protected]
│ ├─ URL: https://github.com/digitalbazaar/forge
│ ├─ VendorName: Digital Bazaar, Inc.
│ └─ VendorUrl: https://github.com/digitalbazaar/forge
├─ (MIT AND Zlib)
│ └─ [email protected]
│ ├─ URL: https://github.com/nodeca/pako.git
│ └─ VendorUrl: https://github.com/nodeca/pako
├─ (MIT or Apache-2.0)
│ └─ [email protected]
│ ├─ URL: git://git.coolaj86.com/coolaj86/dom-storage.js.git
│ ├─ VendorName: AJ ONeal
│ └─ VendorUrl: https://git.coolaj86.com/coolaj86/dom-storage.js
├─ (MIT OR GPL-3.0)
│ └─ [email protected]
│ ├─ URL: https://github.com/Stuk/jszip.git
│ └─ VendorName: Stuart Knightley
├─ 0BSD
│ ├─ [email protected]
│ │ ├─ URL: https://github.com/Microsoft/tslib.git
│ │ ├─ VendorName: Microsoft Corp.
│ │ └─ VendorUrl: https://www.typescriptlang.org/
│ └─ [email protected]
│ ├─ URL: https://github.com/Microsoft/tslib.git
│ ├─ VendorName: Microsoft Corp.
│ └─ VendorUrl: https://www.typescriptlang.org/
├─ Apache-2.0
│ ├─ @firebase/[email protected]
│ │ ├─ URL: https://github.com/firebase/firebase-js-sdk.git
│ │ ├─ VendorName: Firebase
│ │ └─ VendorUrl: https://firebase.google.com/
│ ├─ @firebase/[email protected]
│ │ ├─ URL: https://github.com/firebase/firebase-js-sdk.git
│ │ ├─ VendorName: Firebase
│ │ └─ VendorUrl: https://firebase.google.com/
│ ├─ @firebase/[email protected]
│ │ ├─ URL: https://github.com/firebase/firebase-js-sdk.git
│ │ ├─ VendorName: Firebase
│ │ └─ VendorUrl: https://firebase.google.com/
│ ├─ @firebase/[email protected]
│ │ ├─ URL: https://github.com/firebase/firebase-js-sdk.git
│ │ ├─ VendorName: Firebase
│ │ └─ VendorUrl: https://firebase.google.com/
│ ├─ @firebase/[email protected]
│ │ ├─ URL: https://github.com/firebase/firebase-js-sdk.git
│ │ ├─ VendorName: Firebase
│ │ └─ VendorUrl: https://firebase.google.com/
│ ├─ @firebase/[email protected]
│ │ ├─ URL: https://github.com/firebase/firebase-js-sdk.git
│ │ ├─ VendorName: Firebase
│ │ └─ VendorUrl: https://firebase.google.com/
│ ├─ @firebase/[email protected]
│ │ ├─ URL: https://github.com/firebase/firebase-js-sdk.git
│ │ ├─ VendorName: Firebase
│ │ └─ VendorUrl: https://firebase.google.com/
│ ├─ @firebase/[email protected]
│ │ ├─ URL: https://github.com/firebase/firebase-js-sdk.git
│ │ ├─ VendorName: Firebase
│ │ └─ VendorUrl: https://firebase.google.com/
│ ├─ @firebase/[email protected]
│ │ ├─ URL: https://github.com/firebase/firebase-js-sdk.git
│ │ ├─ VendorName: Firebase
│ │ └─ VendorUrl: https://firebase.google.com/
│ ├─ @firebase/[email protected]
│ │ ├─ URL: https://github.com/firebase/firebase-js-sdk.git
│ │ ├─ VendorName: Firebase
│ │ └─ VendorUrl: https://firebase.google.com/
│ ├─ @firebase/[email protected]
│ │ ├─ URL: https://github.com/firebase/firebase-js-sdk.git
│ │ ├─ VendorName: Firebase
│ │ └─ VendorUrl: https://firebase.google.com/
│ ├─ @firebase/[email protected]
│ │ ├─ URL: https://github.com/firebase/firebase-js-sdk.git
│ │ ├─ VendorName: Firebase
│ │ └─ VendorUrl: https://firebase.google.com/
│ ├─ @firebase/[email protected]
│ │ ├─ URL: https://github.com/firebase/firebase-js-sdk.git
│ │ ├─ VendorName: Firebase
│ │ └─ VendorUrl: https://firebase.google.com/
│ ├─ @firebase/[email protected]
│ │ ├─ URL: https://github.com/firebase/firebase-js-sdk.git
│ │ ├─ VendorName: Firebase
│ │ └─ VendorUrl: https://firebase.google.com/
│ ├─ @firebase/[email protected]
│ │ ├─ URL: https://github.com/firebase/firebase-js-sdk.git
│ │ ├─ VendorName: Firebase
│ │ └─ VendorUrl: https://firebase.google.com/
│ ├─ @firebase/[email protected]
│ │ ├─ URL: https://github.com/firebase/firebase-js-sdk.git
│ │ ├─ VendorName: Firebase
│ │ └─ VendorUrl: https://firebase.google.com/
│ ├─ @firebase/[email protected]
│ │ ├─ URL: https://github.com/firebase/firebase-js-sdk.git
│ │ ├─ VendorName: Firebase
│ │ └─ VendorUrl: https://firebase.google.com/
│ ├─ @firebase/[email protected]
│ │ ├─ URL: https://github.com/firebase/firebase-js-sdk.git
│ │ ├─ VendorName: Firebase
│ │ └─ VendorUrl: https://firebase.google.com/
│ ├─ @firebase/[email protected]
│ │ ├─ URL: https://github.com/firebase/firebase-js-sdk.git
│ │ ├─ VendorName: Firebase
│ │ └─ VendorUrl: https://firebase.google.com/
│ ├─ @firebase/[email protected]
│ │ ├─ URL: https://github.com/firebase/firebase-js-sdk.git
│ │ ├─ VendorName: Firebase
│ │ └─ VendorUrl: https://firebase.google.com/
│ ├─ @firebase/[email protected]
│ │ ├─ URL: https://github.com/firebase/firebase-js-sdk.git
│ │ ├─ VendorName: Firebase
│ │ └─ VendorUrl: https://firebase.google.com/
│ ├─ @firebase/[email protected]
│ │ ├─ URL: https://github.com/firebase/firebase-js-sdk.git
│ │ ├─ VendorName: Firebase
│ │ └─ VendorUrl: https://firebase.google.com/
│ ├─ @firebase/[email protected]
│ │ ├─ URL: https://github.com/firebase/firebase-js-sdk.git
│ │ ├─ VendorName: Firebase
│ │ └─ VendorUrl: https://firebase.google.com/
│ ├─ @firebase/[email protected]
│ │ ├─ URL: https://github.com/firebase/firebase-js-sdk.git
│ │ ├─ VendorName: Firebase
│ │ └─ VendorUrl: https://firebase.google.com/
│ ├─ @firebase/[email protected]
│ │ ├─ URL: https://github.com/firebase/firebase-js-sdk.git
│ │ ├─ VendorName: Firebase
│ │ └─ VendorUrl: https://firebase.google.com/
│ ├─ @firebase/[email protected]
│ │ ├─ URL: https://github.com/firebase/firebase-js-sdk.git
│ │ ├─ VendorName: Firebase
│ │ └─ VendorUrl: https://firebase.google.com/
│ ├─ @firebase/[email protected]
│ │ ├─ URL: https://github.com/firebase/firebase-js-sdk.git
│ │ ├─ VendorName: Firebase
│ │ └─ VendorUrl: https://firebase.google.com/
│ ├─ @firebase/[email protected]
│ │ ├─ URL: https://github.com/firebase/firebase-js-sdk.git
│ │ ├─ VendorName: Firebase
│ │ └─ VendorUrl: https://firebase.google.com/
│ ├─ @grpc/[email protected]
│ │ ├─ URL: https://github.com/grpc/grpc-node/tree/master/packages/grpc-js
│ │ ├─ VendorName: Google Inc.
│ │ └─ VendorUrl: https://grpc.io/
│ ├─ @grpc/[email protected]
│ │ ├─ URL: https://github.com/grpc/grpc-node.git
│ │ ├─ VendorName: Google Inc.
│ │ └─ VendorUrl: https://grpc.io/
│ ├─ @grpc/[email protected]
│ │ ├─ URL: https://github.com/grpc/grpc-node.git
│ │ ├─ VendorName: Google Inc.
│ │ └─ VendorUrl: https://grpc.io/
│ ├─ @juggle/[email protected]
│ │ ├─ URL: git+ssh://[email protected]/juggle/resize-observer.git
│ │ ├─ VendorName: Juggle
│ │ └─ VendorUrl: https://juggle.studio/resize-observer/
│ ├─ @neo4j/[email protected]
│ │ └─ URL: https://github.com/neo4j-apps/lambda-parser
│ ├─ @scarf/[email protected]
│ │ ├─ URL: git+https://github.com/scarf-sh/scarf-js.git
│ │ ├─ VendorName: Scarf Systems
│ │ └─ VendorUrl: https://github.com/scarf-sh/scarf-js
│ ├─ [email protected]
│ │ ├─ URL: git+ssh://[email protected]/Brightspace/node-ecdsa-sig-formatter.git
│ │ ├─ VendorName: D2L Corporation
│ │ └─ VendorUrl: https://github.com/Brightspace/node-ecdsa-sig-formatter#readme
│ ├─ [email protected]
│ │ ├─ URL: https://github.com/samthor/fast-text-encoding.git
│ │ └─ VendorName: Sam Thorogood
│ ├─ [email protected]
│ │ ├─ URL: git://github.com/faye/faye-websocket-node.git
│ │ ├─ VendorName: James Coglan
│ │ └─ VendorUrl: https://github.com/faye/faye-websocket-node
│ ├─ [email protected]
│ │ ├─ URL: https://github.com/firebase/firebase-js-sdk.git
│ │ ├─ VendorName: Firebase
│ │ └─ VendorUrl: https://firebase.google.com/
│ ├─ [email protected]
│ │ ├─ URL: https://github.com/googleapis/gaxios.git
│ │ └─ VendorName: Google, LLC
│ ├─ [email protected]
│ │ ├─ URL: https://github.com/googleapis/gcp-metadata.git
│ │ └─ VendorName: Stephen Sawchuk
│ ├─ [email protected]
│ │ ├─ URL: https://github.com/googleapis/google-auth-library-nodejs.git
│ │ └─ VendorName: Google Inc.
│ ├─ [email protected]
│ │ ├─ URL: git://github.com/localForage/localForage.git
│ │ ├─ VendorName: Mozilla
│ │ └─ VendorUrl: https://github.com/localForage/localForage
│ ├─ [email protected]
│ │ ├─ URL: https://github.com/dcodeIO/long.js.git
│ │ └─ VendorName: Daniel Wirtz
│ ├─ [email protected]
│ │ ├─ URL: git+https://github.com/neo4j-devtools/neo4j-client-sso.git
│ │ └─ VendorName: Neo4j Engineering
│ ├─ [email protected]
│ │ ├─ URL: git://github.com/neo4j/neo4j-javascript-driver.git
│ │ ├─ VendorName: Neo4j
│ │ └─ VendorUrl: https://github.com/neo4j/neo4j-javascript-driver#readme
│ ├─ [email protected]
│ │ ├─ URL: git://github.com/neo4j/neo4j-javascript-driver.git
│ │ ├─ VendorName: Neo4j
│ │ └─ VendorUrl: https://github.com/neo4j/neo4j-javascript-driver#readme
│ ├─ [email protected]
│ │ ├─ URL: git://github.com/neo4j/neo4j-javascript-driver.git
│ │ └─ VendorName: Neo4j
│ ├─ [email protected]
│ │ ├─ URL: [email protected]:ReactiveX/RxJS.git
│ │ ├─ VendorName: Ben Lesh
│ │ └─ VendorUrl: https://github.com/ReactiveX/RxJS
│ ├─ [email protected]
│ │ ├─ URL: https://github.com/reactivex/rxjs.git
│ │ ├─ VendorName: Ben Lesh
│ │ └─ VendorUrl: https://rxjs.dev/
│ ├─ [email protected]
│ │ ├─ URL: git://github.com/faye/websocket-driver-node.git
│ │ ├─ VendorName: James Coglan
│ │ └─ VendorUrl: https://github.com/faye/websocket-driver-node
│ └─ [email protected]
│ ├─ URL: git://github.com/faye/websocket-extensions-node.git
│ ├─ VendorName: James Coglan
│ └─ VendorUrl: http://github.com/faye/websocket-extensions-node
├─ BSD
│ └─ [email protected]
│ ├─ URL: https://github.com/antlr/antlr4.git
│ └─ VendorUrl: https://github.com/antlr/antlr4
├─ BSD-2-Clause
│ ├─ [email protected]
│ │ ├─ URL: https://github.com/terser/terser
│ │ ├─ VendorName: Mihai Bazon
│ │ └─ VendorUrl: https://terser.org/
│ └─ [email protected]
│ ├─ URL: https://github.com/jsdom/webidl-conversions.git
│ ├─ VendorName: Domenic Denicola
│ └─ VendorUrl: https://domenic.me/
├─ BSD-3-Clause
│ ├─ @protobufjs/[email protected]
│ │ ├─ URL: https://github.com/dcodeIO/protobuf.js.git
│ │ └─ VendorName: Daniel Wirtz
│ ├─ @protobufjs/[email protected]
│ │ ├─ URL: https://github.com/dcodeIO/protobuf.js.git
│ │ └─ VendorName: Daniel Wirtz
│ ├─ @protobufjs/[email protected]
│ │ ├─ URL: https://github.com/dcodeIO/protobuf.js.git
│ │ └─ VendorName: Daniel Wirtz
│ ├─ @protobufjs/[email protected]
│ │ ├─ URL: https://github.com/dcodeIO/protobuf.js.git
│ │ └─ VendorName: Daniel Wirtz
│ ├─ @protobufjs/[email protected]
│ │ ├─ URL: https://github.com/dcodeIO/protobuf.js.git
│ │ └─ VendorName: Daniel Wirtz
│ ├─ @protobufjs/[email protected]
│ │ ├─ URL: https://github.com/dcodeIO/protobuf.js.git
│ │ └─ VendorName: Daniel Wirtz
│ ├─ @protobufjs/[email protected]
│ │ ├─ URL: https://github.com/dcodeIO/protobuf.js.git
│ │ └─ VendorName: Daniel Wirtz
│ ├─ @protobufjs/[email protected]
│ │ ├─ URL: https://github.com/dcodeIO/protobuf.js.git
│ │ └─ VendorName: Daniel Wirtz
│ ├─ @protobufjs/[email protected]
│ │ ├─ URL: https://github.com/dcodeIO/protobuf.js.git
│ │ └─ VendorName: Daniel Wirtz
│ ├─ @protobufjs/[email protected]
│ │ ├─ URL: https://github.com/dcodeIO/protobuf.js.git
│ │ └─ VendorName: Daniel Wirtz
│ ├─ @sentry/[email protected]
│ │ ├─ URL: git://github.com/getsentry/sentry-javascript.git
│ │ ├─ VendorName: Sentry
│ │ └─ VendorUrl: https://github.com/getsentry/sentry-javascript/tree/master/packages/browser
│ ├─ @sentry/[email protected]
│ │ ├─ URL: git://github.com/getsentry/sentry-javascript.git
│ │ ├─ VendorName: Sentry
│ │ └─ VendorUrl: https://github.com/getsentry/sentry-javascript/tree/master/packages/core
│ ├─ @sentry/[email protected]
│ │ ├─ URL: git://github.com/getsentry/sentry-javascript.git
│ │ ├─ VendorName: Sentry
│ │ └─ VendorUrl: https://github.com/getsentry/sentry-javascript/tree/master/packages/hub
│ ├─ @sentry/[email protected]
│ │ ├─ URL: git://github.com/getsentry/sentry-javascript.git
│ │ ├─ VendorName: Sentry
│ │ └─ VendorUrl: https://github.com/getsentry/sentry-javascript/tree/master/packages/hub
│ ├─ @sentry/[email protected]
│ │ ├─ URL: git://github.com/getsentry/sentry-javascript.git
│ │ ├─ VendorName: Sentry
│ │ └─ VendorUrl: https://github.com/getsentry/sentry-javascript/tree/master/packages/integrations
│ ├─ @sentry/[email protected]
│ │ ├─ URL: git://github.com/getsentry/sentry-javascript.git
│ │ ├─ VendorName: Sentry
│ │ └─ VendorUrl: https://github.com/getsentry/sentry-javascript/tree/master/packages/minimal
│ ├─ @sentry/[email protected]
│ │ ├─ URL: git://github.com/getsentry/sentry-javascript.git
│ │ ├─ VendorName: Sentry
│ │ └─ VendorUrl: https://github.com/getsentry/sentry-javascript/tree/master/packages/minimal
│ ├─ @sentry/[email protected]
│ │ ├─ URL: git://github.com/getsentry/sentry-javascript.git
│ │ ├─ VendorName: Sentry
│ │ └─ VendorUrl: https://github.com/getsentry/sentry-javascript/tree/master/packages/react
│ ├─ @sentry/[email protected]
│ │ ├─ URL: git://github.com/getsentry/sentry-javascript.git
│ │ ├─ VendorName: Sentry
│ │ └─ VendorUrl: https://github.com/getsentry/sentry-javascript/tree/master/packages/types
│ ├─ @sentry/[email protected]
│ │ ├─ URL: git://github.com/getsentry/sentry-javascript.git
│ │ ├─ VendorName: Sentry
│ │ └─ VendorUrl: https://github.com/getsentry/sentry-javascript/tree/master/packages/types
│ ├─ @sentry/[email protected]
│ │ ├─ URL: git://github.com/getsentry/sentry-javascript.git
│ │ ├─ VendorName: Sentry
│ │ └─ VendorUrl: https://github.com/getsentry/sentry-javascript/tree/master/packages/utils
│ ├─ @sentry/[email protected]
│ │ ├─ URL: git://github.com/getsentry/sentry-javascript.git
│ │ ├─ VendorName: Sentry
│ │ └─ VendorUrl: https://github.com/getsentry/sentry-javascript/tree/master/packages/utils
│ ├─ [email protected]
│ │ ├─ URL: [email protected]:goinstant/buffer-equal-constant-time.git
│ │ └─ VendorName: GoInstant Inc., a salesforce.com company
│ ├─ [email protected]
│ │ ├─ URL: https://github.com/d3/d3-ease.git
│ │ ├─ VendorName: Mike Bostock
│ │ └─ VendorUrl: https://d3js.org/d3-ease/
│ ├─ [email protected]
│ │ └─ URL: git://github.com/kpdecker/jsdiff.git
│ ├─ [email protected]
│ │ ├─ URL: https://github.com/JedWatson/exenv.git
│ │ ├─ VendorName: Jed Watson
│ │ └─ VendorUrl: https://github.com/JedWatson/exenv
│ ├─ [email protected]
│ │ ├─ URL: git://github.com/mridgway/hoist-non-react-statics.git
│ │ └─ VendorName: Michael Ridgway
│ ├─ [email protected]
│ │ ├─ URL: git://github.com/mridgway/hoist-non-react-statics.git
│ │ └─ VendorName: Michael Ridgway
│ ├─ [email protected]
│ │ ├─ URL: git://github.com/feross/ieee754.git
│ │ ├─ VendorName: Feross Aboukhadijeh
│ │ └─ VendorUrl: https://feross.org
│ ├─ [email protected]
│ │ ├─ URL: https://github.com/tjvr/moo.git
│ │ └─ VendorName: Tim Radvan
│ ├─ [email protected]
│ │ ├─ URL: https://github.com/protobufjs/protobuf.js.git
│ │ ├─ VendorName: Daniel Wirtz
│ │ └─ VendorUrl: http://dcode.io/protobuf.js
│ ├─ [email protected]
│ │ ├─ URL: http://github.com/mozilla/source-map.git
│ │ ├─ VendorName: Nick Fitzgerald
│ │ └─ VendorUrl: https://github.com/mozilla/source-map
│ └─ [email protected]
│ ├─ URL: http://github.com/mozilla/source-map.git
│ ├─ VendorName: Nick Fitzgerald
│ └─ VendorUrl: https://github.com/mozilla/source-map
├─ CC0-1.0
│ └─ [email protected]
│ ├─ URL: https://github.com/tabatkins/railroad-diagrams.git
│ ├─ VendorName: Tab Atkins Jr.
│ └─ VendorUrl: https://github.com/tabatkins/railroad-diagrams
├─ GPL-3.0
│ ├─ @neo4j-ndl/[email protected]
│ │ ├─ URL: http:
│ │ ├─ VendorName: Neo4j Inc.
│ │ └─ VendorUrl: http:
│ ├─ @neo4j-ndl/[email protected]
│ │ ├─ URL: http:
│ │ ├─ VendorName: Neo4j Inc.
│ │ └─ VendorUrl: http:
│ └─ [email protected]
│ ├─ URL: git://github.com/neo4j-contrib/cypher-editor.git
│ └─ VendorName: Neo Technology Inc.
├─ ISC
│ ├─ [email protected]
│ │ ├─ URL: http://github.com/yargs/cliui.git
│ │ └─ VendorName: Ben Coe
│ ├─ [email protected]
│ │ ├─ URL: https://github.com/sonicdoe/css-color-keywords.git
│ │ └─ VendorName: Jakob Krigovsky
│ ├─ [email protected]
│ │ ├─ URL: https://github.com/d3/d3-array.git
│ │ ├─ VendorName: Mike Bostock
│ │ └─ VendorUrl: https://d3js.org/d3-array/
│ ├─ [email protected]
│ │ ├─ URL: https://github.com/d3/d3-color.git
│ │ ├─ VendorName: Mike Bostock
│ │ └─ VendorUrl: https://d3js.org/d3-color/
│ ├─ [email protected]
│ │ ├─ URL: https://github.com/d3/d3-dispatch.git
│ │ ├─ VendorName: Mike Bostock
│ │ └─ VendorUrl: https://d3js.org/d3-dispatch/
│ ├─ [email protected]
│ │ ├─ URL: https://github.com/d3/d3-drag.git
│ │ ├─ VendorName: Mike Bostock
│ │ └─ VendorUrl: https://d3js.org/d3-drag/
│ ├─ [email protected]
│ │ ├─ URL: https://github.com/d3/d3-force.git
│ │ ├─ VendorName: Mike Bostock
│ │ └─ VendorUrl: https://d3js.org/d3-force/
│ ├─ [email protected]
│ │ ├─ URL: https://github.com/d3/d3-format.git
│ │ ├─ VendorName: Mike Bostock
│ │ └─ VendorUrl: https://d3js.org/d3-format/
│ ├─ [email protected]
│ │ ├─ URL: https://github.com/d3/d3-interpolate.git
│ │ ├─ VendorName: Mike Bostock
│ │ └─ VendorUrl: https://d3js.org/d3-interpolate/
│ ├─ [email protected]
│ │ ├─ URL: https://github.com/d3/d3-path.git
│ │ ├─ VendorName: Mike Bostock
│ │ └─ VendorUrl: https://d3js.org/d3-path/
│ ├─ [email protected]
│ │ ├─ URL: https://github.com/d3/d3-quadtree.git
│ │ ├─ VendorName: Mike Bostock
│ │ └─ VendorUrl: https://d3js.org/d3-quadtree/
│ ├─ [email protected]
│ │ ├─ URL: https://github.com/d3/d3-scale.git
│ │ ├─ VendorName: Mike Bostock
│ │ └─ VendorUrl: https://d3js.org/d3-scale/
│ ├─ [email protected]
│ │ ├─ URL: https://github.com/d3/d3-selection.git
│ │ ├─ VendorName: Mike Bostock
│ │ └─ VendorUrl: https://d3js.org/d3-selection/
│ ├─ [email protected]
│ │ ├─ URL: https://github.com/d3/d3-shape.git
│ │ ├─ VendorName: Mike Bostock
│ │ └─ VendorUrl: https://d3js.org/d3-shape/
│ ├─ [email protected]
│ │ ├─ URL: https://github.com/d3/d3-time-format.git
│ │ ├─ VendorName: Mike Bostock
│ │ └─ VendorUrl: https://d3js.org/d3-time-format/
│ ├─ [email protected]
│ │ ├─ URL: https://github.com/d3/d3-time.git
│ │ ├─ VendorName: Mike Bostock
│ │ └─ VendorUrl: https://d3js.org/d3-time/
│ ├─ [email protected]
│ │ ├─ URL: https://github.com/d3/d3-timer.git
│ │ ├─ VendorName: Mike Bostock
│ │ └─ VendorUrl: https://d3js.org/d3-timer/
│ ├─ [email protected]
│ │ ├─ URL: https://github.com/d3/d3-transition.git
│ │ ├─ VendorName: Mike Bostock
│ │ └─ VendorUrl: https://d3js.org/d3-transition/
│ ├─ [email protected]
│ │ ├─ URL: https://github.com/d3/d3-zoom.git
│ │ ├─ VendorName: Mike Bostock
│ │ └─ VendorUrl: https://d3js.org/d3-zoom/
│ ├─ [email protected]
│ │ ├─ URL: git+https://github.com/stefanpenner/get-caller-file.git
│ │ ├─ VendorName: Stefan Penner
│ │ └─ VendorUrl: https://github.com/stefanpenner/get-caller-file#readme
│ ├─ [email protected]
│ │ ├─ URL: git://github.com/jakearchibald/indexeddb-promised.git
│ │ └─ VendorName: Jake Archibald
│ ├─ [email protected]
│ │ └─ URL: git://github.com/isaacs/inherits
│ ├─ [email protected]
│ │ ├─ URL: https://github.com/mbostock/internmap.git
│ │ ├─ VendorName: Mike Bostock
│ │ └─ VendorUrl: https://github.com/mbostock/internmap/
│ ├─ [email protected]
│ │ ├─ URL: git://github.com/isaacs/node-lru-cache.git
│ │ └─ VendorName: Isaac Z. Schlueter
│ ├─ [email protected]
│ │ ├─ URL: git+ssh://[email protected]/yargs/require-main-filename.git
│ │ ├─ VendorName: Ben Coe
│ │ └─ VendorUrl: https://github.com/yargs/require-main-filename#readme
│ ├─ [email protected]
│ │ └─ URL: https://github.com/npm/node-semver
│ ├─ [email protected]
│ │ └─ URL: https://github.com/npm/node-semver
│ ├─ [email protected]
│ │ ├─ URL: git+https://github.com/yargs/set-blocking.git
│ │ ├─ VendorName: Ben Coe
│ │ └─ VendorUrl: https://github.com/yargs/set-blocking#readme
│ ├─ [email protected]
│ │ ├─ URL: git+https://github.com/nexdrew/which-module.git
│ │ ├─ VendorName: nexdrew
│ │ └─ VendorUrl: https://github.com/nexdrew/which-module#readme
│ ├─ [email protected]
│ │ ├─ URL: [email protected]:yargs/y18n.git
│ │ ├─ VendorName: Ben Coe
│ │ └─ VendorUrl: https://github.com/yargs/y18n
│ ├─ [email protected]
│ │ ├─ URL: git+https://github.com/isaacs/yallist.git
│ │ ├─ VendorName: Isaac Z. Schlueter
│ │ └─ VendorUrl: http://blog.izs.me/
│ └─ [email protected]
│ ├─ URL: https://github.com/yargs/yargs-parser.git
│ └─ VendorName: Ben Coe
├─ MIT
│ ├─ @apollo/[email protected]
│ │ ├─ URL: git+https://github.com/apollographql/apollo-client.git
│ │ ├─ VendorName: [email protected]
│ │ └─ VendorUrl: https://www.apollographql.com/
│ ├─ @babel/[email protected]
│ │ ├─ URL: https://github.com/babel/babel.git
│ │ ├─ VendorName: The Babel Team
│ │ └─ VendorUrl: https://babel.dev/docs/en/next/babel-code-frame
│ ├─ @babel/[email protected]
│ │ ├─ URL: https://github.com/babel/babel.git
│ │ ├─ VendorName: The Babel Team
│ │ └─ VendorUrl: https://babel.dev/docs/en/next/babel-generator
│ ├─ @babel/[email protected]
│ │ ├─ URL: https://github.com/babel/babel.git
│ │ ├─ VendorName: The Babel Team
│ │ └─ VendorUrl: https://babel.dev/docs/en/next/babel-helper-annotate-as-pure
│ ├─ @babel/[email protected]
│ │ ├─ URL: https://github.com/babel/babel.git
│ │ ├─ VendorName: The Babel Team
│ │ └─ VendorUrl: https://babel.dev/docs/en/next/babel-helper-environment-visitor
│ ├─ @babel/[email protected]
│ │ ├─ URL: https://github.com/babel/babel.git
│ │ ├─ VendorName: The Babel Team
│ │ └─ VendorUrl: https://babel.dev/docs/en/next/babel-helper-function-name
│ ├─ @babel/[email protected]
│ │ ├─ URL: https://github.com/babel/babel.git
│ │ ├─ VendorName: The Babel Team
│ │ └─ VendorUrl: https://babel.dev/docs/en/next/babel-helper-get-function-arity
│ ├─ @babel/[email protected]
│ │ ├─ URL: https://github.com/babel/babel.git
│ │ ├─ VendorName: The Babel Team
│ │ └─ VendorUrl: https://babel.dev/docs/en/next/babel-helper-hoist-variables
│ ├─ @babel/[email protected]
│ │ ├─ URL: https://github.com/babel/babel.git
│ │ ├─ VendorName: Logan Smyth
│ │ └─ VendorUrl: https://babeljs.io/
│ ├─ @babel/[email protected]
│ │ ├─ URL: https://github.com/babel/babel.git
│ │ ├─ VendorName: The Babel Team
│ │ └─ VendorUrl: https://babel.dev/docs/en/next/babel-helper-module-imports
│ ├─ @babel/[email protected]
│ │ ├─ URL: https://github.com/babel/babel.git
│ │ ├─ VendorName: The Babel Team
│ │ └─ VendorUrl: https://babel.dev/docs/en/next/babel-helper-split-export-declaration
│ ├─ @babel/[email protected]
│ │ ├─ URL: https://github.com/babel/babel.git
│ │ ├─ VendorName: The Babel Team
│ │ └─ VendorUrl: https://babel.dev/team
│ ├─ @babel/[email protected]
│ │ ├─ URL: https://github.com/babel/babel.git
│ │ ├─ VendorName: The Babel Team
│ │ └─ VendorUrl: https://babel.dev/team
│ ├─ @babel/[email protected]
│ │ ├─ URL: https://github.com/babel/babel.git
│ │ ├─ VendorName: The Babel Team
│ │ └─ VendorUrl: https://babel.dev/docs/en/next/babel-highlight
│ ├─ @babel/[email protected]
│ │ ├─ URL: https://github.com/babel/babel.git
│ │ ├─ VendorName: The Babel Team
│ │ └─ VendorUrl: https://babel.dev/docs/en/next/babel-parser
│ ├─ @babel/[email protected]
│ │ ├─ URL: https://github.com/babel/babel.git
│ │ ├─ VendorName: The Babel Team
│ │ └─ VendorUrl: https://babel.dev/team
│ ├─ @babel/[email protected]
│ │ ├─ URL: https://github.com/babel/babel.git
│ │ ├─ VendorName: Sebastian McKenzie
│ │ └─ VendorUrl: https://babeljs.io/
│ ├─ @babel/[email protected]
│ │ ├─ URL: https://github.com/babel/babel.git
│ │ ├─ VendorName: The Babel Team
│ │ └─ VendorUrl: https://babel.dev/docs/en/next/babel-runtime
│ ├─ @babel/[email protected]
│ │ ├─ URL: https://github.com/babel/babel.git
│ │ ├─ VendorName: The Babel Team
│ │ └─ VendorUrl: https://babel.dev/docs/en/next/babel-template
│ ├─ @babel/[email protected]
│ │ ├─ URL: https://github.com/babel/babel.git
│ │ ├─ VendorName: The Babel Team
│ │ └─ VendorUrl: https://babel.dev/docs/en/next/babel-traverse
│ ├─ @babel/[email protected]
│ │ ├─ URL: https://github.com/babel/babel.git
│ │ ├─ VendorName: Sebastian McKenzie
│ │ └─ VendorUrl: https://babeljs.io/
│ ├─ @babel/[email protected]
│ │ ├─ URL: https://github.com/babel/babel.git
│ │ ├─ VendorName: The Babel Team
│ │ └─ VendorUrl: https://babel.dev/docs/en/next/babel-types
│ ├─ @emotion/[email protected]
│ │ └─ URL: https://github.com/emotion-js/emotion/tree/master/packages/is-prop-valid
│ ├─ @emotion/[email protected]
│ │ └─ URL: https://github.com/emotion-js/emotion/tree/master/packages/memoize
│ ├─ @emotion/[email protected]
│ │ └─ URL: https://github.com/emotion-js/emotion/tree/master/packages/stylis
│ ├─ @emotion/[email protected]
│ │ └─ URL: https://github.com/emotion-js/emotion/tree/master/packages/unitless
│ ├─ @graphql-typed-document-node/[email protected]
│ │ ├─ URL: [email protected]:dotansimha/graphql-typed-document-node.git
│ │ └─ VendorName: Dotan Simha
│ ├─ @heroicons/[email protected]
│ │ ├─ URL: https://github.com/tailwindlabs/heroicons.git
│ │ └─ VendorUrl: https://github.com/tailwindlabs/heroicons#readme
│ ├─ @react-dnd/[email protected]
│ │ └─ URL: https://github.com/kriskowal/asap.git
│ ├─ @react-dnd/[email protected]
│ │ ├─ URL: https://github.com/react-dnd/invariant
│ │ └─ VendorName: Andres Suarez
│ ├─ @react-dnd/[email protected]
│ │ ├─ URL: https://github.com/react-dnd/shallowequal.git
│ │ ├─ VendorName: Alberto Leal
│ │ └─ VendorUrl: github.com/dashed
│ ├─ @semantic-ui-react/[email protected]
│ │ ├─ URL: https://github.com/layershifter/event-stack
│ │ └─ VendorName: layershifter
│ ├─ @sentry/[email protected]
│ │ ├─ URL: git://github.com/getsentry/sentry-javascript.git
│ │ ├─ VendorName: Sentry
│ │ └─ VendorUrl: https://github.com/getsentry/sentry-javascript/tree/master/packages/tracing
│ ├─ @stardust-ui/[email protected]
│ │ ├─ URL: https://github.com/stardust-ui/react.git
│ │ ├─ VendorName: Oleksandr Fediashov
│ │ └─ VendorUrl: https://github.com/stardust-ui/react/tree/master/packages/react-component-event-listener
│ ├─ @stardust-ui/[email protected]
│ │ ├─ URL: https://github.com/stardust-ui/react.git
│ │ ├─ VendorName: Oleksandr Fediashov
│ │ └─ VendorUrl: https://github.com/stardust-ui/react/tree/master/packages/react-component-ref
│ ├─ @types/[email protected]
│ │ └─ URL: https://github.com/DefinitelyTyped/DefinitelyTyped.git
│ ├─ @types/[email protected]
│ │ ├─ URL: https://github.com/DefinitelyTyped/DefinitelyTyped.git
│ │ └─ VendorUrl: https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/chroma-js
│ ├─ @types/[email protected]
│ │ └─ URL: https://github.com/DefinitelyTyped/DefinitelyTyped.git
│ ├─ @types/[email protected]
│ │ ├─ URL: https://github.com/DefinitelyTyped/DefinitelyTyped.git
│ │ └─ VendorUrl: https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/debug
│ ├─ @types/[email protected]
│ │ └─ URL: https://github.com/DefinitelyTyped/DefinitelyTyped.git
│ ├─ @types/[email protected]
│ │ └─ URL: https://github.com/DefinitelyTyped/DefinitelyTyped.git
│ ├─ @types/[email protected]
│ │ └─ URL: https://github.com/DefinitelyTyped/DefinitelyTyped.git
│ ├─ @types/[email protected]
│ │ └─ URL: https://github.com/DefinitelyTyped/DefinitelyTyped.git
│ ├─ @types/[email protected]
│ │ └─ URL: https://github.com/DefinitelyTyped/DefinitelyTyped.git
│ ├─ @types/[email protected]
│ │ └─ URL: https://github.com/DefinitelyTyped/DefinitelyTyped.git
│ ├─ @types/[email protected]
│ │ └─ URL: https://github.com/DefinitelyTyped/DefinitelyTyped.git
│ ├─ @types/[email protected]
│ │ └─ URL: https://github.com/DefinitelyTyped/DefinitelyTyped.git
│ ├─ @types/[email protected]
│ │ └─ URL: https://github.com/DefinitelyTyped/DefinitelyTyped.git
│ ├─ @types/[email protected]
│ │ └─ URL: https://github.com/DefinitelyTyped/DefinitelyTyped.git
│ ├─ @types/[email protected]
│ │ └─ URL: https://github.com/DefinitelyTyped/DefinitelyTyped.git
│ ├─ @types/[email protected]
│ │ └─ URL: https://github.com/DefinitelyTyped/DefinitelyTyped.git
│ ├─ @types/[email protected]
│ │ └─ URL: https://github.com/DefinitelyTyped/DefinitelyTyped.git
│ ├─ @wry/[email protected]
│ │ ├─ URL: git+https://github.com/benjamn/wryware.git
│ │ ├─ VendorName: Ben Newman
│ │ └─ VendorUrl: https://github.com/benjamn/wryware
│ ├─ @wry/[email protected]
│ │ ├─ URL: git+https://github.com/benjamn/wryware.git
│ │ ├─ VendorName: Ben Newman
│ │ └─ VendorUrl: https://github.com/benjamn/wryware
│ ├─ [email protected]
│ │ ├─ URL: git+https://github.com/mysticatea/abort-controller.git
│ │ ├─ VendorName: Toru Nagashima
│ │ └─ VendorUrl: https://github.com/mysticatea/abort-controller#readme
│ ├─ [email protected]
│ │ ├─ URL: git://github.com/TooTallNate/node-agent-base.git
│ │ ├─ VendorName: Nathan Rajlich
│ │ └─ VendorUrl: http://n8.io/
│ ├─ [email protected]
│ │ ├─ URL: https://github.com/chalk/ansi-regex.git
│ │ ├─ VendorName: Sindre Sorhus
│ │ └─ VendorUrl: sindresorhus.com
│ ├─ [email protected]
│ │ ├─ URL: https://github.com/chalk/ansi-styles.git
│ │ ├─ VendorName: Sindre Sorhus
│ │ └─ VendorUrl: sindresorhus.com
│ ├─ [email protected]
│ │ ├─ URL: https://github.com/chalk/ansi-styles.git
│ │ ├─ VendorName: Sindre Sorhus
│ │ └─ VendorUrl: sindresorhus.com
│ ├─ [email protected]
│ │ ├─ URL: https://github.com/jaydenseric/apollo-upload-client.git
│ │ ├─ VendorName: Jayden Seric
│ │ └─ VendorUrl: https://github.com/jaydenseric/apollo-upload-client#readme
│ ├─ [email protected]
│ │ ├─ URL: https://github.com/sindresorhus/arrify.git
│ │ ├─ VendorName: Sindre Sorhus
│ │ └─ VendorUrl: sindresorhus.com
│ ├─ [email protected]
│ │ ├─ URL: https://github.com/oskarhane/ascii-data-table.git
│ │ ├─ VendorName: Oskar Hane
│ │ └─ VendorUrl: http://oskarhane.com/
│ ├─ [email protected]
│ │ ├─ URL: https://github.com/styled-components/babel-plugin-styled-components.git
│ │ └─ VendorUrl: https://styled-components.com/docs/tooling#babel-plugin
│ ├─ [email protected]
│ │ └─ URL: https://github.com/babel/babel/tree/master/packages/babel-plugin-syntax-jsx
│ ├─ [email protected]
│ │ ├─ URL: https://github.com/wooorm/bail.git
│ │ ├─ VendorName: Titus Wormer
│ │ └─ VendorUrl: https://wooorm.com
│ ├─ [email protected]
│ │ ├─ URL: git://github.com/beatgammit/base64-js.git
│ │ ├─ VendorName: T. Jameson Little
│ │ └─ VendorUrl: https://github.com/beatgammit/base64-js
│ ├─ [email protected]
│ │ ├─ URL: git://github.com/beatgammit/base64-js.git
│ │ ├─ VendorName: T. Jameson Little
│ │ └─ VendorUrl: https://github.com/beatgammit/base64-js
│ ├─ [email protected]
│ │ ├─ URL: https://github.com/MikeMcl/bignumber.js.git
│ │ └─ VendorName: Michael Mclaughlin
│ ├─ [email protected]
│ │ └─ URL: https://github.com/LinusU/buffer-from.git
│ ├─ [email protected]
│ │ ├─ URL: git://github.com/feross/buffer.git
│ │ ├─ VendorName: Feross Aboukhadijeh
│ │ └─ VendorUrl: https://github.com/feross/buffer
│ ├─ [email protected]
│ │ ├─ URL: https://github.com/sindresorhus/camelcase.git
│ │ ├─ VendorName: Sindre Sorhus
│ │ └─ VendorUrl: sindresorhus.com
│ ├─ [email protected]
│ │ ├─ URL: git://github.com/substack/camelize.git
│ │ ├─ VendorName: James Halliday
│ │ └─ VendorUrl: https://github.com/substack/camelize
│ ├─ [email protected]
│ │ └─ URL: https://github.com/canvg/canvg
│ ├─ [email protected]
│ │ ├─ URL: https://github.com/wooorm/ccount.git
│ │ ├─ VendorName: Titus Wormer
│ │ └─ VendorUrl: https://wooorm.com
│ ├─ [email protected]
│ │ └─ URL: https://github.com/chalk/chalk.git
│ ├─ [email protected]
│ │ ├─ URL: https://github.com/wooorm/character-entities.git
│ │ ├─ VendorName: Titus Wormer
│ │ └─ VendorUrl: https://wooorm.com
│ ├─ [email protected]
│ │ ├─ URL: https://github.com/JedWatson/classnames.git
│ │ └─ VendorName: Jed Watson
│ ├─ [email protected]
│ │ ├─ URL: https://github.com/JedWatson/classnames.git
│ │ └─ VendorName: Jed Watson
│ ├─ [email protected]
│ │ ├─ URL: https://github.com/Qix-/color-convert.git
│ │ └─ VendorName: Heather Arthur
│ ├─ [email protected]
│ │ ├─ URL: https://github.com/Qix-/color-convert.git
│ │ └─ VendorName: Heather Arthur
│ ├─ [email protected]
│ │ ├─ URL: [email protected]:dfcreative/color-name.git
│ │ ├─ VendorName: DY
│ │ └─ VendorUrl: https://github.com/dfcreative/color-name
│ ├─ [email protected]
│ │ ├─ URL: [email protected]:colorjs/color-name.git
│ │ ├─ VendorName: DY
│ │ └─ VendorUrl: https://github.com/colorjs/color-name
│ ├─ [email protected]
│ │ ├─ URL: https://github.com/wooorm/comma-separated-tokens.git
│ │ ├─ VendorName: Titus Wormer
│ │ └─ VendorUrl: https://wooorm.com
│ ├─ [email protected]
│ │ ├─ URL: https://github.com/tj/commander.js.git
│ │ └─ VendorName: TJ Holowaychuk
│ ├─ [email protected]
│ │ └─ URL: https://github.com/zloirock/core-js.git
│ ├─ [email protected]
│ │ └─ URL: https://github.com/zloirock/core-js.git
│ ├─ [email protected]
│ │ └─ URL: https://github.com/zloirock/core-js.git
│ ├─ [email protected]
│ │ ├─ URL: git://github.com/isaacs/core-util-is
│ │ ├─ VendorName: Isaac Z. Schlueter
│ │ └─ VendorUrl: http://blog.izs.me/
│ ├─ [email protected]
│ │ ├─ URL: https://github.com/thejameskyle/create-react-context
│ │ └─ VendorName: James Kyle
│ ├─ [email protected]
│ │ ├─ URL: git+https://github.com/styled-components/css-to-react-native.git
│ │ ├─ VendorName: Jacob Parker
│ │ └─ VendorUrl: https://github.com/styled-components/css-to-react-native#readme
│ ├─ [email protected]
│ │ ├─ URL: https://github.com/frenic/csstype
│ │ └─ VendorName: Fredrik Nicol
│ ├─ [email protected]
│ │ ├─ URL: git://github.com/visionmedia/debug.git
│ │ └─ VendorName: TJ Holowaychuk
│ ├─ [email protected]
│ │ ├─ URL: git://github.com/debug-js/debug.git
│ │ └─ VendorName: Josh Junon
│ ├─ [email protected]
│ │ ├─ URL: https://github.com/sindresorhus/decamelize.git
│ │ ├─ VendorName: Sindre Sorhus
│ │ └─ VendorUrl: sindresorhus.com
│ ├─ [email protected]
│ │ ├─ URL: https://github.com/wooorm/decode-named-character-reference.git
│ │ ├─ VendorName: Titus Wormer
│ │ └─ VendorUrl: https://wooorm.com
│ ├─ [email protected]
│ │ ├─ URL: http://github.com/substack/node-deep-equal.git
│ │ ├─ VendorName: James Halliday
│ │ └─ VendorUrl: http://substack.net
│ ├─ [email protected]
│ │ ├─ URL: git://github.com/KyleAMathews/deepmerge.git
│ │ ├─ VendorName: Nick Fisher
│ │ └─ VendorUrl: https://github.com/KyleAMathews/deepmerge
│ ├─ [email protected]
│ │ ├─ URL: git://github.com/ljharb/define-properties.git
│ │ └─ VendorName: Jordan Harband
│ ├─ [email protected]
│ │ ├─ URL: https://github.com/lukeed/dequal.git
│ │ ├─ VendorName: Luke Edwards
│ │ └─ VendorUrl: https://lukeed.com
│ ├─ [email protected]
│ │ ├─ URL: https://github.com/dtudury/discontinuous-range.git
│ │ ├─ VendorName: David Tudury
│ │ └─ VendorUrl: https://github.com/dtudury/discontinuous-range
│ ├─ [email protected]
│ │ └─ URL: https://github.com/react-dnd/react-dnd.git
│ ├─ [email protected]
│ │ ├─ URL: https://github.com/mathiasbynens/emoji-regex.git
│ │ ├─ VendorName: Mathias Bynens
│ │ └─ VendorUrl: https://mths.be/emoji-regex
│ ├─ [email protected]
│ │ ├─ URL: https://github.com/andris9/encoding.git
│ │ └─ VendorName: Andris Reinman
│ ├─ [email protected]
│ │ ├─ URL: git://github.com/ljharb/es-abstract.git
│ │ ├─ VendorName: Jordan Harband
│ │ └─ VendorUrl: http://ljharb.codes
│ ├─ [email protected]
│ │ ├─ URL: git://github.com/ljharb/es-abstract.git
│ │ ├─ VendorName: Jordan Harband
│ │ └─ VendorUrl: http://ljharb.codes
│ ├─ [email protected]
│ │ ├─ URL: git://github.com/ljharb/es-to-primitive.git
│ │ └─ VendorName: Jordan Harband
│ ├─ [email protected]
│ │ ├─ URL: https://github.com/sindresorhus/escape-string-regexp.git
│ │ ├─ VendorName: Sindre Sorhus
│ │ └─ VendorUrl: sindresorhus.com
│ ├─ [email protected]
│ │ ├─ URL: https://github.com/sindresorhus/escape-string-regexp.git
│ │ ├─ VendorName: Sindre Sorhus
│ │ └─ VendorUrl: https://sindresorhus.com
│ ├─ [email protected]
│ │ ├─ URL: https://github.com/mysticatea/event-target-shim.git
│ │ ├─ VendorName: Toru Nagashima
│ │ └─ VendorUrl: https://github.com/mysticatea/event-target-shim
│ ├─ [email protected]
│ │ ├─ URL: https://github.com/justmoon/node-extend.git
│ │ ├─ VendorName: Stefan Thomas
│ │ └─ VendorUrl: http://www.justmoon.net
│ ├─ [email protected]
│ │ ├─ URL: https://github.com/jaydenseric/extract-files.git
│ │ ├─ VendorName: Jayden Seric
│ │ └─ VendorUrl: https://github.com/jaydenseric/extract-files#readme
│ ├─ [email protected]
│ │ ├─ URL: git://github.com/epoberezkin/fast-json-stable-stringify.git
│ │ ├─ VendorName: James Halliday
│ │ └─ VendorUrl: https://github.com/epoberezkin/fast-json-stable-stringify
│ ├─ [email protected]
│ │ ├─ URL: git+https://github.com/eligrey/FileSaver.js.git
│ │ ├─ VendorName: Eli Grey
│ │ └─ VendorUrl: https://github.com/eligrey/FileSaver.js#readme
│ ├─ [email protected]
│ │ ├─ URL: https://github.com/eligrey/FileSaver.js
│ │ ├─ VendorName: Eli Grey
│ │ └─ VendorUrl: https://github.com/eligrey/FileSaver.js#readme
│ ├─ [email protected]
│ │ ├─ URL: https://github.com/sindresorhus/find-up.git
│ │ ├─ VendorName: Sindre Sorhus
│ │ └─ VendorUrl: sindresorhus.com
│ ├─ [email protected]
│ │ ├─ URL: git://github.com/Raynos/function-bind.git
│ │ ├─ VendorName: Raynos
│ │ └─ VendorUrl: https://github.com/Raynos/function-bind
│ ├─ [email protected]
│ │ ├─ URL: https://github.com/atom/fuzzaldrin.git
│ │ └─ VendorUrl: http://atom.github.io/fuzzaldrin
│ ├─ [email protected]
│ │ ├─ URL: https://github.com/sindresorhus/globals.git
│ │ ├─ VendorName: Sindre Sorhus
│ │ └─ VendorUrl: sindresorhus.com
│ ├─ [email protected]
│ │ ├─ URL: https://github.com/google/google-p12-pem
│ │ └─ VendorName: Ryan Seys
│ ├─ [email protected]
│ │ ├─ URL: git+https://github.com/apollographql/graphql-tag.git
│ │ └─ VendorUrl: https://github.com/apollographql/graphql-tag#readme
│ ├─ [email protected]
│ │ ├─ URL: https://github.com/graphql/graphql-js.git
│ │ └─ VendorUrl: https://github.com/graphql/graphql-js
│ ├─ [email protected]
│ │ ├─ URL: https://github.com/google/node-gtoken.git
│ │ └─ VendorName: Google, LLC
│ ├─ [email protected]
│ │ ├─ URL: https://github.com/jamiebuilds/global-unique-id
│ │ └─ VendorName: Jamie Kyle
│ ├─ [email protected]
│ │ ├─ URL: https://github.com/sindresorhus/has-flag.git
│ │ ├─ VendorName: Sindre Sorhus
│ │ └─ VendorUrl: sindresorhus.com
│ ├─ [email protected]
│ │ ├─ URL: git://github.com/ljharb/has-symbols.git
│ │ ├─ VendorName: Jordan Harband
│ │ └─ VendorUrl: http://ljharb.codes
│ ├─ [email protected]
│ │ ├─ URL: git://github.com/tarruda/has.git
│ │ ├─ VendorName: Thiago de Arruda
│ │ └─ VendorUrl: https://github.com/tarruda/has
│ ├─ [email protected]
│ │ ├─ URL: https://github.com/syntax-tree/hast-util-whitespace.git
│ │ ├─ VendorName: Titus Wormer
│ │ └─ VendorUrl: https://wooorm.com
│ ├─ [email protected]
│ │ ├─ URL: git://github.com/creationix/http-parser-js.git
│ │ ├─ VendorName: Tim Caswell
│ │ └─ VendorUrl: https://github.com/creationix
│ ├─ [email protected]
│ │ ├─ URL: git://github.com/TooTallNate/node-https-proxy-agent.git
│ │ ├─ VendorName: Nathan Rajlich
│ │ └─ VendorUrl: http://n8.io/
│ ├─ [email protected]
│ │ ├─ URL: git://github.com/ashtuchkin/iconv-lite.git
│ │ ├─ VendorName: Alexander Shtuchkin
│ │ └─ VendorUrl: https://github.com/ashtuchkin/iconv-lite
│ ├─ [email protected]
│ │ └─ URL: git://github.com/calvinmetcalf/immediate.git
│ ├─ [email protected]
│ │ └─ URL: https://github.com/remarkablemark/inline-style-parser
│ ├─ [email protected]
│ │ ├─ URL: https://github.com/zertosh/invariant
│ │ └─ VendorName: Andres Suarez
│ ├─ [email protected]
│ │ ├─ URL: git://github.com/ljharb/is-arguments.git
│ │ ├─ VendorName: Jordan Harband
│ │ └─ VendorUrl: https://github.com/ljharb/is-arguments
│ ├─ [email protected]
│ │ ├─ URL: git://github.com/feross/is-buffer.git
│ │ ├─ VendorName: Feross Aboukhadijeh
│ │ └─ VendorUrl: https://feross.org
│ ├─ [email protected]
│ │ ├─ URL: git://github.com/ljharb/is-callable.git
│ │ ├─ VendorName: Jordan Harband
│ │ └─ VendorUrl: http://ljharb.codes
│ ├─ [email protected]
│ │ ├─ URL: git://github.com/ljharb/is-date-object.git
│ │ └─ VendorName: Jordan Harband
│ ├─ [email protected]
│ │ ├─ URL: https://github.com/sindresorhus/is-fullwidth-code-point.git
│ │ ├─ VendorName: Sindre Sorhus
│ │ └─ VendorUrl: sindresorhus.com
│ ├─ [email protected]
│ │ ├─ URL: git://github.com/ljharb/is-negative-zero.git
│ │ ├─ VendorName: Jordan Harband
│ │ └─ VendorUrl: https://github.com/ljharb/is-negative-zero
│ ├─ [email protected]
│ │ ├─ URL: https://github.com/sindresorhus/is-plain-obj.git
│ │ ├─ VendorName: Sindre Sorhus
│ │ └─ VendorUrl: https://sindresorhus.com
│ ├─ [email protected]
│ │ ├─ URL: git://github.com/ljharb/is-regex.git
│ │ ├─ VendorName: Jordan Harband
│ │ └─ VendorUrl: https://github.com/ljharb/is-regex
│ ├─ [email protected]
│ │ ├─ URL: https://github.com/sindresorhus/is-stream.git
│ │ ├─ VendorName: Sindre Sorhus
│ │ └─ VendorUrl: sindresorhus.com
│ ├─ [email protected]
│ │ ├─ URL: https://github.com/sindresorhus/is-stream.git