forked from apache/hadoop
-
Notifications
You must be signed in to change notification settings - Fork 0
/
LICENSE-binary-yarn-ui
3339 lines (3339 loc) · 160 KB
/
LICENSE-binary-yarn-ui
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
yarn licenses v1.22.5
├─ (BSD-2-Clause OR MIT)
│ └─ sha@2.0.1
│ └─ URL: https://github.com/ForbesLindesay/sha.git
├─ (LGPL-2.0 or MIT)
│ └─ xmldom@0.1.31
│ ├─ URL: git://github.com/xmldom/xmldom.git
│ ├─ VendorName: jindw
│ └─ VendorUrl: https://github.com/xmldom/xmldom
├─ (MIT AND JSON)
│ └─ jshint@2.10.3
│ ├─ URL: https://github.com/jshint/jshint.git
│ ├─ VendorName: Anton Kovalyov
│ └─ VendorUrl: http://jshint.com/
├─ (MIT OR Apache-2.0)
│ └─ ember-test-helpers@0.5.34
│ └─ URL: https://github.com/switchfly/ember-test-helpers.git
├─ (WTFPL OR MIT)
│ ├─ opener@1.4.3
│ │ ├─ URL: https://github.com/domenic/opener.git
│ │ ├─ VendorName: Domenic Denicola
│ │ └─ VendorUrl: https://domenic.me/
│ └─ path-is-inside@1.0.2
│ ├─ URL: https://github.com/domenic/path-is-inside.git
│ ├─ VendorName: Domenic Denicola
│ └─ VendorUrl: https://domenic.me
├─ Apache-2.0
│ ├─ aws-sign2@0.6.0
│ │ ├─ URL: https://github.com/mikeal/aws-sign
│ │ ├─ VendorName: Mikeal Rogers
│ │ └─ VendorUrl: http://www.futurealoof.com
│ ├─ aws-sign2@0.7.0
│ │ ├─ URL: https://github.com/mikeal/aws-sign
│ │ ├─ VendorName: Mikeal Rogers
│ │ └─ VendorUrl: http://www.futurealoof.com
│ ├─ bser@2.1.1
│ │ ├─ URL: https://github.com/facebook/watchman
│ │ ├─ VendorName: Wez Furlong
│ │ └─ VendorUrl: https://facebook.github.io/watchman/docs/bser.html
│ ├─ caseless@0.11.0
│ │ ├─ URL: https://github.com/mikeal/caseless
│ │ └─ VendorName: Mikeal Rogers
│ ├─ caseless@0.12.0
│ │ ├─ URL: https://github.com/mikeal/caseless
│ │ └─ VendorName: Mikeal Rogers
│ ├─ fb-watchman@2.0.1
│ │ ├─ URL: git@github.com:facebook/watchman.git
│ │ ├─ VendorName: Wez Furlong
│ │ └─ VendorUrl: https://facebook.github.io/watchman/
│ ├─ forever-agent@0.6.1
│ │ ├─ URL: https://github.com/mikeal/forever-agent
│ │ ├─ VendorName: Mikeal Rogers
│ │ └─ VendorUrl: http://www.futurealoof.com
│ ├─ kew@0.7.0
│ │ ├─ URL: https://github.com/Medium/kew.git
│ │ └─ VendorUrl: https://github.com/Medium/kew
│ ├─ less@2.7.3
│ │ ├─ URL: https://github.com/less/less.js.git
│ │ ├─ VendorName: Alexis Sellier
│ │ └─ VendorUrl: http://lesscss.org/
│ ├─ oauth-sign@0.8.2
│ │ ├─ URL: https://github.com/mikeal/oauth-sign
│ │ ├─ VendorName: Mikeal Rogers
│ │ └─ VendorUrl: http://www.futurealoof.com
│ ├─ oauth-sign@0.9.0
│ │ ├─ URL: https://github.com/mikeal/oauth-sign
│ │ ├─ VendorName: Mikeal Rogers
│ │ └─ VendorUrl: http://www.futurealoof.com
│ ├─ phantomjs-prebuilt@2.1.13
│ │ ├─ URL: git://github.com/Medium/phantomjs.git
│ │ ├─ VendorName: Dan Pupius
│ │ └─ VendorUrl: https://github.com/Medium/phantomjs
│ ├─ request@2.65.0
│ │ ├─ URL: https://github.com/request/request.git
│ │ └─ VendorName: Mikeal Rogers
│ ├─ request@2.74.0
│ │ ├─ URL: https://github.com/request/request.git
│ │ └─ VendorName: Mikeal Rogers
│ ├─ request@2.81.0
│ │ ├─ URL: https://github.com/request/request.git
│ │ └─ VendorName: Mikeal Rogers
│ ├─ request@2.88.0
│ │ ├─ URL: https://github.com/request/request.git
│ │ └─ VendorName: Mikeal Rogers
│ ├─ spdx-correct@3.1.0
│ │ ├─ URL: https://github.com/jslicense/spdx-correct.js.git
│ │ ├─ VendorName: Kyle E. Mitchell
│ │ └─ VendorUrl: https://kemitchell.com
│ ├─ spdx@0.4.3
│ │ ├─ URL: https://github.com/kemitchell/spdx.js.git
│ │ ├─ VendorName: Kyle E. Mitchell
│ │ └─ VendorUrl: https://github.com/kemitchell/spdx.js
│ ├─ true-case-path@1.0.3
│ │ ├─ URL: git+https://github.com/barsh/true-case-path.git
│ │ ├─ VendorName: barsh
│ │ └─ VendorUrl: https://github.com/barsh/true-case-path#readme
│ ├─ tunnel-agent@0.4.3
│ │ ├─ URL: https://github.com/mikeal/tunnel-agent
│ │ ├─ VendorName: Mikeal Rogers
│ │ └─ VendorUrl: http://www.futurealoof.com
│ ├─ tunnel-agent@0.6.0
│ │ ├─ URL: https://github.com/mikeal/tunnel-agent
│ │ ├─ VendorName: Mikeal Rogers
│ │ └─ VendorUrl: http://www.futurealoof.com
│ ├─ validate-npm-package-license@3.0.4
│ │ ├─ URL: https://github.com/kemitchell/validate-npm-package-license.js.git
│ │ ├─ VendorName: Kyle E. Mitchell
│ │ └─ VendorUrl: https://kemitchell.com
│ ├─ walker@1.0.7
│ │ ├─ URL: https://github.com/daaku/nodejs-walker
│ │ ├─ VendorName: Naitik Shah
│ │ └─ VendorUrl: https://github.com/daaku/nodejs-walker
│ ├─ websocket-driver@0.7.3
│ │ ├─ URL: git://github.com/faye/websocket-driver-node.git
│ │ ├─ VendorName: James Coglan
│ │ └─ VendorUrl: https://github.com/faye/websocket-driver-node
│ └─ workerpool@2.3.3
│ ├─ URL: git://github.com/josdejong/workerpool.git
│ ├─ VendorName: Jos de Jong
│ └─ VendorUrl: https://github.com/josdejong/workerpool
├─ Apache*
│ └─ watch@0.10.0
│ ├─ URL: git://github.com/mikeal/watch.git
│ ├─ VendorName: Mikeal Rogers
│ └─ VendorUrl: https://github.com/mikeal/watch
├─ Artistic-2.0
│ └─ npm@2.14.10
│ ├─ URL: https://github.com/npm/npm
│ ├─ VendorName: Isaac Z. Schlueter
│ └─ VendorUrl: https://docs.npmjs.com/
├─ BSD
│ ├─ graceful-fs@2.0.3
│ │ ├─ URL: git://github.com/isaacs/node-graceful-fs.git
│ │ ├─ VendorName: Isaac Z. Schlueter
│ │ └─ VendorUrl: http://blog.izs.me
│ ├─ mute-stream@0.0.4
│ │ ├─ URL: git://github.com/isaacs/mute-stream
│ │ ├─ VendorName: Isaac Z. Schlueter
│ │ └─ VendorUrl: http://blog.izs.me/
│ ├─ osenv@0.0.3
│ │ ├─ URL: git://github.com/isaacs/osenv
│ │ ├─ VendorName: Isaac Z. Schlueter
│ │ └─ VendorUrl: http://blog.izs.me/
│ └─ tar@1.0.3
│ ├─ URL: git://github.com/isaacs/node-tar.git
│ ├─ VendorName: Isaac Z. Schlueter
│ └─ VendorUrl: http://blog.izs.me/
├─ BSD-2-Clause
│ ├─ cmd-shim@2.0.2
│ │ └─ URL: https://github.com/ForbesLindesay/cmd-shim.git
│ ├─ configstore@1.2.1
│ │ ├─ URL: https://github.com/yeoman/configstore.git
│ │ ├─ VendorName: Sindre Sorhus
│ │ └─ VendorUrl: sindresorhus.com
│ ├─ domelementtype@1.3.1
│ │ ├─ URL: git://github.com/fb55/domelementtype.git
│ │ └─ VendorName: Felix Boehm
│ ├─ domelementtype@2.0.1
│ │ ├─ URL: git://github.com/fb55/domelementtype.git
│ │ └─ VendorName: Felix Boehm
│ ├─ domhandler@2.3.0
│ │ ├─ URL: git://github.com/fb55/DomHandler.git
│ │ └─ VendorName: Felix Boehm
│ ├─ domutils@1.5.1
│ │ ├─ URL: git://github.com/FB55/domutils.git
│ │ └─ VendorName: Felix Boehm
│ ├─ entities@1.0.0
│ │ ├─ URL: git://github.com/fb55/node-entities.git
│ │ └─ VendorName: Felix Boehm
│ ├─ entities@1.1.2
│ │ ├─ URL: git://github.com/fb55/entities.git
│ │ └─ VendorName: Felix Boehm
│ ├─ entities@2.0.0
│ │ ├─ URL: git://github.com/fb55/entities.git
│ │ └─ VendorName: Felix Boehm
│ ├─ esprima@2.7.3
│ │ ├─ URL: https://github.com/jquery/esprima.git
│ │ ├─ VendorName: Ariya Hidayat
│ │ └─ VendorUrl: http://esprima.org/
│ ├─ esprima@3.1.3
│ │ ├─ URL: https://github.com/jquery/esprima.git
│ │ ├─ VendorName: Ariya Hidayat
│ │ └─ VendorUrl: http://esprima.org/
│ ├─ esprima@4.0.1
│ │ ├─ URL: https://github.com/jquery/esprima.git
│ │ ├─ VendorName: Ariya Hidayat
│ │ └─ VendorUrl: http://esprima.org/
│ ├─ esutils@2.0.3
│ │ ├─ URL: http://github.com/estools/esutils.git
│ │ └─ VendorUrl: https://github.com/estools/esutils
│ ├─ extract-zip@1.5.0
│ │ ├─ URL: git+ssh://git@github.com/maxogden/extract-zip.git
│ │ ├─ VendorName: max ogden
│ │ └─ VendorUrl: https://github.com/maxogden/extract-zip
│ ├─ github-url-from-username-repo@1.0.2
│ │ ├─ URL: git@github.com:robertkowalski/github-url-from-username-repo.git
│ │ └─ VendorName: Robert Kowalski
│ ├─ normalize-package-data@2.3.8
│ │ ├─ URL: git://github.com/npm/normalize-package-data.git
│ │ └─ VendorName: Meryn Stol
│ ├─ normalize-package-data@2.5.0
│ │ ├─ URL: git://github.com/npm/normalize-package-data.git
│ │ └─ VendorName: Meryn Stol
│ ├─ npm-install-checks@1.0.7
│ │ ├─ URL: git://github.com/npm/npm-install-checks.git
│ │ ├─ VendorName: Robert Kowalski
│ │ └─ VendorUrl: https://github.com/npm/npm-install-checks
│ ├─ npm-user-validate@0.1.5
│ │ ├─ URL: git://github.com/npm/npm-user-validate.git
│ │ └─ VendorName: Robert Kowalski
│ ├─ regenerator@0.8.40
│ │ ├─ URL: git://github.com/facebook/regenerator.git
│ │ ├─ VendorName: Ben Newman
│ │ └─ VendorUrl: http://github.com/facebook/regenerator
│ ├─ regjsparser@0.1.5
│ │ ├─ URL: git@github.com:jviereck/regjsparser.git
│ │ ├─ VendorName: 'Julian Viereck'
│ │ └─ VendorUrl: https://github.com/jviereck/regjsparser
│ ├─ uglify-js@2.8.29
│ │ ├─ URL: https://github.com/mishoo/UglifyJS2.git
│ │ ├─ VendorName: Mihai Bazon
│ │ └─ VendorUrl: http://lisperator.net/uglifyjs
│ └─ uri-js@4.2.2
│ ├─ URL: http://github.com/garycourt/uri-js
│ ├─ VendorName: Gary Court
│ └─ VendorUrl: https://github.com/garycourt/uri-js
├─ BSD-3-Clause
│ ├─ bcrypt-pbkdf@1.0.2
│ │ └─ URL: git://github.com/joyent/node-bcrypt-pbkdf.git
│ ├─ boom@2.10.1
│ │ └─ URL: git://github.com/hapijs/boom
│ ├─ cpr@0.4.2
│ │ ├─ URL: http://github.com/davglass/cpr.git
│ │ └─ VendorName: Dav Glass
│ ├─ cryptiles@2.0.5
│ │ └─ URL: git://github.com/hapijs/cryptiles
│ ├─ hawk@3.1.3
│ │ ├─ URL: git://github.com/hueniverse/hawk
│ │ ├─ VendorName: Eran Hammer
│ │ └─ VendorUrl: http://hueniverse.com
│ ├─ hoek@2.16.3
│ │ └─ URL: git://github.com/hapijs/hoek
│ ├─ js-base64@2.5.1
│ │ ├─ URL: git://github.com/dankogai/js-base64.git
│ │ └─ VendorName: Dan Kogai
│ ├─ makeerror@1.0.11
│ │ ├─ URL: https://github.com/daaku/nodejs-makeerror
│ │ └─ VendorName: Naitik Shah
│ ├─ printf@0.2.5
│ │ ├─ URL: https://github.com/wdavidw/node-printf.git
│ │ ├─ VendorName: David Worms
│ │ └─ VendorUrl: http://www.adaltas.com/projects/node-printf
│ ├─ qs@5.1.0
│ │ ├─ URL: https://github.com/hapijs/qs.git
│ │ └─ VendorUrl: https://github.com/hapijs/qs
│ ├─ qs@5.2.0
│ │ ├─ URL: https://github.com/hapijs/qs.git
│ │ └─ VendorUrl: https://github.com/hapijs/qs
│ ├─ qs@5.2.1
│ │ ├─ URL: https://github.com/hapijs/qs.git
│ │ └─ VendorUrl: https://github.com/hapijs/qs
│ ├─ qs@6.2.3
│ │ ├─ URL: https://github.com/ljharb/qs.git
│ │ └─ VendorUrl: https://github.com/ljharb/qs
│ ├─ qs@6.4.0
│ │ ├─ URL: https://github.com/ljharb/qs.git
│ │ └─ VendorUrl: https://github.com/ljharb/qs
│ ├─ qs@6.5.2
│ │ ├─ URL: https://github.com/ljharb/qs.git
│ │ └─ VendorUrl: https://github.com/ljharb/qs
│ ├─ qs@6.7.0
│ │ ├─ URL: https://github.com/ljharb/qs.git
│ │ └─ VendorUrl: https://github.com/ljharb/qs
│ ├─ shelljs@0.3.0
│ │ ├─ URL: git://github.com/arturadib/shelljs.git
│ │ ├─ VendorName: Artur Adib
│ │ └─ VendorUrl: http://github.com/arturadib/shelljs
│ ├─ source-map@0.1.32
│ │ ├─ URL: http://github.com/mozilla/source-map.git
│ │ ├─ VendorName: Nick Fitzgerald
│ │ └─ VendorUrl: https://github.com/mozilla/source-map
│ ├─ source-map@0.1.43
│ │ ├─ URL: http://github.com/mozilla/source-map.git
│ │ ├─ VendorName: Nick Fitzgerald
│ │ └─ VendorUrl: https://github.com/mozilla/source-map
│ ├─ source-map@0.4.4
│ │ ├─ URL: http://github.com/mozilla/source-map.git
│ │ ├─ VendorName: Nick Fitzgerald
│ │ └─ VendorUrl: https://github.com/mozilla/source-map
│ ├─ source-map@0.5.7
│ │ ├─ URL: http://github.com/mozilla/source-map.git
│ │ ├─ VendorName: Nick Fitzgerald
│ │ └─ VendorUrl: https://github.com/mozilla/source-map
│ ├─ sprintf-js@1.0.3
│ │ ├─ URL: https://github.com/alexei/sprintf.js.git
│ │ ├─ VendorName: Alexandru Marasteanu
│ │ └─ VendorUrl: http://alexei.ro/
│ ├─ sprintf-js@1.1.2
│ │ ├─ URL: https://github.com/alexei/sprintf.js.git
│ │ └─ VendorName: Alexandru Mărășteanu
│ ├─ tmpl@1.0.4
│ │ ├─ URL: https://github.com/daaku/nodejs-tmpl
│ │ ├─ VendorName: Naitik Shah
│ │ └─ VendorUrl: https://github.com/nshah/nodejs-tmpl
│ ├─ tough-cookie@2.2.2
│ │ ├─ URL: git://github.com/SalesforceEng/tough-cookie.git
│ │ ├─ VendorName: Jeremy Stashewsky
│ │ └─ VendorUrl: https://github.com/SalesforceEng/tough-cookie
│ ├─ tough-cookie@2.3.4
│ │ ├─ URL: git://github.com/salesforce/tough-cookie.git
│ │ ├─ VendorName: Jeremy Stashewsky
│ │ └─ VendorUrl: https://github.com/salesforce/tough-cookie
│ └─ tough-cookie@2.4.3
│ ├─ URL: git://github.com/salesforce/tough-cookie.git
│ ├─ VendorName: Jeremy Stashewsky
│ └─ VendorUrl: https://github.com/salesforce/tough-cookie
├─ BSD-3-Clause OR MIT
│ └─ amdefine@1.0.1
│ ├─ URL: https://github.com/jrburke/amdefine.git
│ ├─ VendorName: James Burke
│ └─ VendorUrl: http://github.com/jrburke/amdefine
├─ BSD*
│ ├─ diff@1.4.0
│ │ └─ URL: git://github.com/kpdecker/jsdiff.git
│ ├─ esprima-fb@12001.1.0-dev-harmony-fb
│ │ ├─ URL: http://github.com/facebook/esprima.git
│ │ ├─ VendorName: Ariya Hidayat
│ │ └─ VendorUrl: https://github.com/facebook/esprima/tree/fb-harmony
│ ├─ esprima-fb@15001.1001.0-dev-harmony-fb
│ │ ├─ URL: http://github.com/facebook/esprima.git
│ │ ├─ VendorName: Ariya Hidayat
│ │ └─ VendorUrl: https://github.com/facebook/esprima/tree/fb-harmony
│ └─ json-schema@0.2.3
│ ├─ URL: http://github.com/kriszyp/json-schema
│ └─ VendorName: Kris Zyp
├─ CC-BY-3.0
│ └─ spdx-exceptions@2.2.0
│ ├─ URL: https://github.com/kemitchell/spdx-exceptions.json.git
│ └─ VendorName: The Linux Foundation
├─ CC0-1.0
│ └─ spdx-license-ids@3.0.5
│ ├─ URL: https://github.com/shinnn/spdx-license-ids.git
│ ├─ VendorName: Shinnosuke Watanabe
│ └─ VendorUrl: https://github.com/shinnn
├─ ISC
│ ├─ abbrev@1.0.9
│ │ ├─ URL: http://github.com/isaacs/abbrev-js
│ │ └─ VendorName: Isaac Z. Schlueter
│ ├─ abbrev@1.1.1
│ │ ├─ URL: http://github.com/isaacs/abbrev-js
│ │ └─ VendorName: Isaac Z. Schlueter
│ ├─ anymatch@1.3.2
│ │ ├─ URL: https://github.com/es128/anymatch
│ │ ├─ VendorName: Elan Shanker
│ │ └─ VendorUrl: https://github.com/es128/anymatch
│ ├─ aproba@1.2.0
│ │ ├─ URL: https://github.com/iarna/aproba
│ │ ├─ VendorName: Rebecca Turner
│ │ └─ VendorUrl: https://github.com/iarna/aproba
│ ├─ are-we-there-yet@1.0.6
│ │ ├─ URL: https://github.com/iarna/are-we-there-yet.git
│ │ ├─ VendorName: Rebecca Turner
│ │ └─ VendorUrl: https://github.com/iarna/are-we-there-yet
│ ├─ are-we-there-yet@1.1.5
│ │ ├─ URL: https://github.com/iarna/are-we-there-yet.git
│ │ ├─ VendorName: Rebecca Turner
│ │ └─ VendorUrl: https://github.com/iarna/are-we-there-yet
│ ├─ async-some@1.0.2
│ │ ├─ URL: https://github.com/othiym23/async-some.git
│ │ ├─ VendorName: Forrest L Norvell
│ │ └─ VendorUrl: https://github.com/othiym23/async-some
│ ├─ block-stream@0.0.8
│ │ ├─ URL: git://github.com/isaacs/block-stream.git
│ │ ├─ VendorName: Isaac Z. Schlueter
│ │ └─ VendorUrl: http://blog.izs.me/
│ ├─ block-stream@0.0.9
│ │ ├─ URL: git://github.com/isaacs/block-stream.git
│ │ ├─ VendorName: Isaac Z. Schlueter
│ │ └─ VendorUrl: http://blog.izs.me/
│ ├─ broccoli-viz@2.0.1
│ │ ├─ URL: https://github.com/stefanpenner/broccoli-viz.git
│ │ ├─ VendorName: Stefan Penner
│ │ └─ VendorUrl: https://github.com/stefanpenner/broccoli-viz
│ ├─ char-spinner@1.0.1
│ │ ├─ URL: git://github.com/isaacs/char-spinner
│ │ ├─ VendorName: Isaac Z. Schlueter
│ │ └─ VendorUrl: https://github.com/isaacs/char-spinner
│ ├─ chmodr@1.0.2
│ │ ├─ URL: git://github.com/isaacs/chmodr.git
│ │ ├─ VendorName: Isaac Z. Schlueter
│ │ └─ VendorUrl: http://blog.izs.me/
│ ├─ chownr@1.0.1
│ │ ├─ URL: git://github.com/isaacs/chownr.git
│ │ ├─ VendorName: Isaac Z. Schlueter
│ │ └─ VendorUrl: http://blog.izs.me/
│ ├─ chownr@1.1.3
│ │ ├─ URL: git://github.com/isaacs/chownr.git
│ │ ├─ VendorName: Isaac Z. Schlueter
│ │ └─ VendorUrl: http://blog.izs.me/
│ ├─ clean-base-url@1.0.0
│ │ ├─ URL: git+ssh://git@github.com/stefanpenner/clean-base-url.git
│ │ ├─ VendorName: Stefan Penner
│ │ └─ VendorUrl: https://github.com/stefanpenner/clean-base-url#readme
│ ├─ cliui@2.1.0
│ │ ├─ URL: http://github.com/bcoe/cliui.git
│ │ └─ VendorName: Ben Coe
│ ├─ cliui@3.2.0
│ │ ├─ URL: http://github.com/yargs/cliui.git
│ │ └─ VendorName: Ben Coe
│ ├─ console-control-strings@1.1.0
│ │ ├─ URL: https://github.com/iarna/console-control-strings
│ │ ├─ VendorName: Rebecca Turner
│ │ └─ VendorUrl: http://re-becca.org/
│ ├─ d@1.0.1
│ │ ├─ URL: git://github.com/medikoo/d.git
│ │ ├─ VendorName: Mariusz Nowak
│ │ └─ VendorUrl: http://www.medikoo.com/
│ ├─ dezalgo@1.0.3
│ │ ├─ URL: https://github.com/npm/dezalgo
│ │ ├─ VendorName: Isaac Z. Schlueter
│ │ └─ VendorUrl: https://github.com/npm/dezalgo
│ ├─ ember-cli-get-dependency-depth@1.0.0
│ │ ├─ URL: git+https://github.com/ember-cli/get-dependency-depth.git
│ │ ├─ VendorName: ember-cli Constributors
│ │ └─ VendorUrl: https://github.com/ember-cli/get-dependency-depth#readme
│ ├─ ember-cli-is-package-missing@1.0.0
│ │ ├─ URL: git+https://github.com/ember-cli/ember-cli.git
│ │ ├─ VendorName: ember-cli contributors
│ │ └─ VendorUrl: https://github.com/ember-cli/ember-cli#readme
│ ├─ ember-cli-normalize-entity-name@1.0.0
│ │ ├─ URL: git+https://github.com/ember-cli/ember-cli.git
│ │ ├─ VendorName: ember-cli contributors
│ │ └─ VendorUrl: https://github.com/ember-cli/ember-cli#readme
│ ├─ ember-cli-path-utils@1.0.0
│ │ ├─ URL: git+https://github.com/ember-cli/ember-cli-path-utils.git
│ │ ├─ VendorName: ember-cli contributors
│ │ └─ VendorUrl: https://github.com/ember-cli/ember-cli-path-utils#readme
│ ├─ ember-cli-preprocess-registry@1.1.0
│ │ ├─ URL: git+https://github.com/ember-cli/ember-cli-preprocessor-registry.git
│ │ ├─ VendorName: ember-cli Contributors
│ │ └─ VendorUrl: https://github.com/ember-cli/ember-cli-preprocessor-registry#readme
│ ├─ ember-cli-string-utils@1.1.0
│ │ ├─ URL: git+https://github.com/ember-cli/ember-cli-string-utils.git
│ │ ├─ VendorName: ember-cli contributors
│ │ └─ VendorUrl: https://github.com/ember-cli/ember-cli-string-utils#readme
│ ├─ ember-cli-test-info@1.0.0
│ │ ├─ URL: git+https://github.com/ember-cli/ember-cli-test-info.git
│ │ ├─ VendorName: ember-cli contributors
│ │ └─ VendorUrl: https://github.com/ember-cli/ember-cli-test-info#readme
│ ├─ ensure-posix-path@1.1.1
│ │ ├─ URL: git+https://github.com/stefanpenner/ensure-posix-path.git
│ │ ├─ VendorName: Stefan Penner
│ │ └─ VendorUrl: https://github.com/stefanpenner/ensure-posix-path#readme
│ ├─ es5-ext@0.10.53
│ │ ├─ URL: https://github.com/medikoo/es5-ext.git
│ │ ├─ VendorName: Mariusz Nowak
│ │ └─ VendorUrl: http://www.medikoo.com/
│ ├─ es6-symbol@3.1.3
│ │ ├─ URL: git://github.com/medikoo/es6-symbol.git
│ │ ├─ VendorName: Mariusz Nowak
│ │ └─ VendorUrl: http://www.medikoo.com/
│ ├─ events-to-array@1.1.2
│ │ ├─ URL: https://github.com/isaacs/events-to-array
│ │ ├─ VendorName: Isaac Z. Schlueter
│ │ └─ VendorUrl: https://github.com/isaacs/events-to-array
│ ├─ exists-sync@0.0.3
│ │ ├─ URL: git+https://github.com/ember-cli/exists-sync.git
│ │ ├─ VendorName: Jake Bixby
│ │ └─ VendorUrl: https://github.com/ember-cli/exists-sync#readme
│ ├─ exists-sync@0.0.4
│ │ ├─ URL: git+https://github.com/ember-cli/exists-sync.git
│ │ ├─ VendorName: Jake Bixby
│ │ └─ VendorUrl: https://github.com/ember-cli/exists-sync#readme
│ ├─ ext@1.4.0
│ │ ├─ URL: https://github.com/medikoo/es5-ext/tree/ext
│ │ ├─ VendorName: Mariusz Nowak
│ │ └─ VendorUrl: http://www.medikoo.com/
│ ├─ fast-ordered-set@1.0.3
│ ├─ fs-monitor-stack@1.1.1
│ │ ├─ URL: git+https://github.com/stefanpenner/fs-monitor-stack.git
│ │ ├─ VendorName: Stefan Penner
│ │ └─ VendorUrl: https://github.com/stefanpenner/fs-monitor-stack#readme
│ ├─ fs-vacuum@1.2.10
│ │ ├─ URL: https://github.com/npm/fs-vacuum.git
│ │ ├─ VendorName: Forrest L Norvell
│ │ └─ VendorUrl: https://github.com/npm/fs-vacuum
│ ├─ fs-write-stream-atomic@1.0.10
│ │ ├─ URL: https://github.com/npm/fs-write-stream-atomic
│ │ ├─ VendorName: Isaac Z. Schlueter
│ │ └─ VendorUrl: https://github.com/npm/fs-write-stream-atomic
│ ├─ fs.realpath@1.0.0
│ │ ├─ URL: git+https://github.com/isaacs/fs.realpath.git
│ │ ├─ VendorName: Isaac Z. Schlueter
│ │ └─ VendorUrl: http://blog.izs.me/
│ ├─ fstream-ignore@1.0.5
│ │ ├─ URL: git://github.com/isaacs/fstream-ignore.git
│ │ ├─ VendorName: Isaac Z. Schlueter
│ │ └─ VendorUrl: http://blog.izs.me/
│ ├─ fstream-npm@1.0.7
│ │ ├─ URL: https://github.com/npm/fstream-npm.git
│ │ ├─ VendorName: Isaac Z. Schlueter
│ │ └─ VendorUrl: http://blog.izs.me/
│ ├─ fstream@1.0.12
│ │ ├─ URL: https://github.com/npm/fstream.git
│ │ ├─ VendorName: Isaac Z. Schlueter
│ │ └─ VendorUrl: http://blog.izs.me/
│ ├─ gauge@1.2.7
│ │ ├─ URL: https://github.com/iarna/gauge
│ │ ├─ VendorName: Rebecca Turner
│ │ └─ VendorUrl: https://github.com/iarna/gauge
│ ├─ gauge@2.7.4
│ │ ├─ URL: https://github.com/iarna/gauge
│ │ ├─ VendorName: Rebecca Turner
│ │ └─ VendorUrl: https://github.com/iarna/gauge
│ ├─ get-caller-file@1.0.3
│ │ ├─ URL: git+https://github.com/stefanpenner/get-caller-file.git
│ │ ├─ VendorName: Stefan Penner
│ │ └─ VendorUrl: https://github.com/stefanpenner/get-caller-file#readme
│ ├─ glob-parent@2.0.0
│ │ ├─ URL: https://github.com/es128/glob-parent
│ │ ├─ VendorName: Elan Shanker
│ │ └─ VendorUrl: https://github.com/es128/glob-parent
│ ├─ glob@4.3.5
│ │ ├─ URL: git://github.com/isaacs/node-glob.git
│ │ ├─ VendorName: Isaac Z. Schlueter
│ │ └─ VendorUrl: http://blog.izs.me/
│ ├─ glob@4.5.3
│ │ ├─ URL: git://github.com/isaacs/node-glob.git
│ │ ├─ VendorName: Isaac Z. Schlueter
│ │ └─ VendorUrl: http://blog.izs.me/
│ ├─ glob@5.0.13
│ │ ├─ URL: git://github.com/isaacs/node-glob.git
│ │ ├─ VendorName: Isaac Z. Schlueter
│ │ └─ VendorUrl: http://blog.izs.me/
│ ├─ glob@5.0.15
│ │ ├─ URL: git://github.com/isaacs/node-glob.git
│ │ ├─ VendorName: Isaac Z. Schlueter
│ │ └─ VendorUrl: http://blog.izs.me/
│ ├─ glob@6.0.4
│ │ ├─ URL: git://github.com/isaacs/node-glob.git
│ │ ├─ VendorName: Isaac Z. Schlueter
│ │ └─ VendorUrl: http://blog.izs.me/
│ ├─ glob@7.1.6
│ │ ├─ URL: git://github.com/isaacs/node-glob.git
│ │ ├─ VendorName: Isaac Z. Schlueter
│ │ └─ VendorUrl: http://blog.izs.me/
│ ├─ graceful-fs@3.0.12
│ │ ├─ URL: git://github.com/isaacs/node-graceful-fs.git
│ │ ├─ VendorName: Isaac Z. Schlueter
│ │ └─ VendorUrl: http://blog.izs.me
│ ├─ graceful-fs@4.1.15
│ │ └─ URL: https://github.com/isaacs/node-graceful-fs
│ ├─ graceful-fs@4.2.3
│ │ └─ URL: https://github.com/isaacs/node-graceful-fs
│ ├─ har-schema@1.0.5
│ │ ├─ URL: https://github.com/ahmadnassri/har-schema.git
│ │ ├─ VendorName: Ahmad Nassri
│ │ └─ VendorUrl: https://github.com/ahmadnassri/har-schema
│ ├─ har-schema@2.0.0
│ │ ├─ URL: https://github.com/ahmadnassri/har-schema.git
│ │ ├─ VendorName: Ahmad Nassri
│ │ └─ VendorUrl: https://github.com/ahmadnassri/har-schema
│ ├─ har-validator@2.0.6
│ │ ├─ URL: https://github.com/ahmadnassri/har-validator.git
│ │ ├─ VendorName: Ahmad Nassri
│ │ └─ VendorUrl: https://github.com/ahmadnassri/har-validator
│ ├─ har-validator@4.2.1
│ │ ├─ URL: https://github.com/ahmadnassri/har-validator.git
│ │ ├─ VendorName: Ahmad Nassri
│ │ └─ VendorUrl: https://github.com/ahmadnassri/har-validator
│ ├─ has-binary-data@0.1.3
│ │ └─ VendorName: Kevin Roark
│ ├─ has-unicode@2.0.1
│ │ ├─ URL: https://github.com/iarna/has-unicode
│ │ ├─ VendorName: Rebecca Turner
│ │ └─ VendorUrl: https://github.com/iarna/has-unicode
│ ├─ hash-for-dep@1.5.1
│ │ ├─ URL: git+https://github.com/stefanpenner/hash-for-dep.git
│ │ ├─ VendorName: Stefan Penner
│ │ └─ VendorUrl: https://github.com/stefanpenner/hash-for-dep#readme
│ ├─ hosted-git-info@2.1.5
│ │ ├─ URL: git+https://github.com/npm/hosted-git-info.git
│ │ ├─ VendorName: Rebecca Turner
│ │ └─ VendorUrl: https://github.com/npm/hosted-git-info
│ ├─ hosted-git-info@2.8.5
│ │ ├─ URL: git+https://github.com/npm/hosted-git-info.git
│ │ ├─ VendorName: Rebecca Turner
│ │ └─ VendorUrl: https://github.com/npm/hosted-git-info
│ ├─ in-publish@2.0.0
│ │ ├─ URL: https://github.com/iarna/in-publish
│ │ ├─ VendorName: Rebecca Turner
│ │ └─ VendorUrl: https://github.com/iarna/in-publish
│ ├─ inflight@1.0.6
│ │ ├─ URL: https://github.com/npm/inflight.git
│ │ ├─ VendorName: Isaac Z. Schlueter
│ │ └─ VendorUrl: https://github.com/isaacs/inflight
│ ├─ inherits@2.0.3
│ │ └─ URL: git://github.com/isaacs/inherits
│ ├─ inherits@2.0.4
│ │ └─ URL: git://github.com/isaacs/inherits
│ ├─ ini@1.3.5
│ │ ├─ URL: git://github.com/isaacs/ini.git
│ │ ├─ VendorName: Isaac Z. Schlueter
│ │ └─ VendorUrl: http://blog.izs.me/
│ ├─ init-package-json@1.9.6
│ │ ├─ URL: https://github.com/npm/init-package-json.git
│ │ ├─ VendorName: Isaac Z. Schlueter
│ │ └─ VendorUrl: http://blog.izs.me/
│ ├─ isexe@2.0.0
│ │ ├─ URL: git+https://github.com/isaacs/isexe.git
│ │ ├─ VendorName: Isaac Z. Schlueter
│ │ └─ VendorUrl: https://github.com/isaacs/isexe#readme
│ ├─ json-stringify-safe@5.0.1
│ │ ├─ URL: git://github.com/isaacs/json-stringify-safe
│ │ ├─ VendorName: Isaac Z. Schlueter
│ │ └─ VendorUrl: https://github.com/isaacs/json-stringify-safe
│ ├─ lockfile@1.0.4
│ │ ├─ URL: https://github.com/npm/lockfile.git
│ │ ├─ VendorName: Isaac Z. Schlueter
│ │ └─ VendorUrl: http://blog.izs.me/
│ ├─ lru-cache@2.7.3
│ │ ├─ URL: git://github.com/isaacs/node-lru-cache.git
│ │ └─ VendorName: Isaac Z. Schlueter
│ ├─ lru-cache@4.1.5
│ │ ├─ URL: git://github.com/isaacs/node-lru-cache.git
│ │ └─ VendorName: Isaac Z. Schlueter
│ ├─ matcher-collection@1.1.2
│ │ ├─ URL: git+https://github.com/stefanpenner/matcher-collection.git
│ │ ├─ VendorName: Stefan Penner
│ │ └─ VendorUrl: https://github.com/stefanpenner/matcher-collection#readme
│ ├─ minimatch@2.0.10
│ │ ├─ URL: git://github.com/isaacs/minimatch.git
│ │ ├─ VendorName: Isaac Z. Schlueter
│ │ └─ VendorUrl: http://blog.izs.me
│ ├─ minimatch@3.0.4
│ │ ├─ URL: git://github.com/isaacs/minimatch.git
│ │ ├─ VendorName: Isaac Z. Schlueter
│ │ └─ VendorUrl: http://blog.izs.me
│ ├─ mute-stream@0.0.8
│ │ ├─ URL: git://github.com/isaacs/mute-stream
│ │ ├─ VendorName: Isaac Z. Schlueter
│ │ └─ VendorUrl: http://blog.izs.me/
│ ├─ natives@1.1.6
│ │ ├─ URL: git+https://github.com/addaleax/natives.git
│ │ ├─ VendorName: Isaac Z. Schlueter
│ │ └─ VendorUrl: https://github.com/addaleax/natives#readme
│ ├─ node-modules-path@1.0.2
│ │ ├─ URL: git+https://github.com/ember-cli/node-modules-path.git
│ │ ├─ VendorName: Stefan Penner
│ │ └─ VendorUrl: https://github.com/ember-cli/node-modules-path#readme
│ ├─ nopt@3.0.6
│ │ ├─ URL: https://github.com/npm/nopt.git
│ │ ├─ VendorName: Isaac Z. Schlueter
│ │ └─ VendorUrl: http://blog.izs.me/
│ ├─ normalize-git-url@3.0.2
│ │ ├─ URL: https://github.com/npm/normalize-git-url.git
│ │ ├─ VendorName: Forrest L Norvell
│ │ └─ VendorUrl: https://github.com/npm/normalize-git-url
│ ├─ npm-cache-filename@1.0.2
│ │ ├─ URL: git://github.com/npm/npm-cache-filename
│ │ ├─ VendorName: Isaac Z. Schlueter
│ │ └─ VendorUrl: https://github.com/npm/npm-cache-filename
│ ├─ npm-normalize-package-bin@1.0.1
│ │ ├─ URL: git+https://github.com/npm/npm-normalize-package-bin
│ │ ├─ VendorName: Isaac Z. Schlueter
│ │ └─ VendorUrl: https://izs.me
│ ├─ npm-package-arg@4.0.2
│ │ ├─ URL: https://github.com/npm/npm-package-arg
│ │ ├─ VendorName: Isaac Z. Schlueter
│ │ └─ VendorUrl: https://github.com/npm/npm-package-arg
│ ├─ npm-package-arg@4.2.1
│ │ ├─ URL: https://github.com/npm/npm-package-arg
│ │ ├─ VendorName: Isaac Z. Schlueter
│ │ └─ VendorUrl: https://github.com/npm/npm-package-arg
│ ├─ npm-package-arg@5.1.2
│ │ ├─ URL: https://github.com/npm/npm-package-arg
│ │ ├─ VendorName: Isaac Z. Schlueter
│ │ └─ VendorUrl: https://github.com/npm/npm-package-arg
│ ├─ npm-registry-client@7.0.9
│ │ ├─ URL: https://github.com/npm/npm-registry-client.git
│ │ ├─ VendorName: Isaac Z. Schlueter
│ │ └─ VendorUrl: http://blog.izs.me/
│ ├─ npmlog@1.2.1
│ │ ├─ URL: git://github.com/isaacs/npmlog.git
│ │ ├─ VendorName: Isaac Z. Schlueter
│ │ └─ VendorUrl: http://blog.izs.me/
│ ├─ npmlog@2.0.4
│ │ ├─ URL: https://github.com/npm/npmlog.git
│ │ ├─ VendorName: Isaac Z. Schlueter
│ │ └─ VendorUrl: http://blog.izs.me/
│ ├─ npmlog@4.1.2
│ │ ├─ URL: https://github.com/npm/npmlog.git
│ │ ├─ VendorName: Isaac Z. Schlueter
│ │ └─ VendorUrl: http://blog.izs.me/
│ ├─ once@1.3.3
│ │ ├─ URL: git://github.com/isaacs/once
│ │ ├─ VendorName: Isaac Z. Schlueter
│ │ └─ VendorUrl: http://blog.izs.me/
│ ├─ once@1.4.0
│ │ ├─ URL: git://github.com/isaacs/once
│ │ ├─ VendorName: Isaac Z. Schlueter
│ │ └─ VendorUrl: http://blog.izs.me/
│ ├─ osenv@0.1.5
│ │ ├─ URL: https://github.com/npm/osenv
│ │ ├─ VendorName: Isaac Z. Schlueter
│ │ └─ VendorUrl: http://blog.izs.me/
│ ├─ path-posix@1.0.0
│ │ ├─ URL: git@github.com:jden/node-path-posix.git
│ │ └─ VendorName: jden
│ ├─ pleasant-progress@1.1.0
│ │ ├─ URL: https://github.com/stefanpenner/pleasant-progress.git
│ │ ├─ VendorName: Stefan Penner
│ │ └─ VendorUrl: https://github.com/stefanpenner/pleasant-progress
│ ├─ process-relative-require@1.0.0
│ │ ├─ URL: git+https://github.com/ember-cli/process-relative-require.git
│ │ ├─ VendorName: Stefan Penner
│ │ └─ VendorUrl: https://github.com/ember-cli/process-relative-require#readme
│ ├─ promzard@0.3.0
│ │ ├─ URL: git://github.com/isaacs/promzard
│ │ ├─ VendorName: Isaac Z. Schlueter
│ │ └─ VendorUrl: http://blog.izs.me/
│ ├─ proto-list@1.2.4
│ │ ├─ URL: https://github.com/isaacs/proto-list
│ │ ├─ VendorName: Isaac Z. Schlueter
│ │ └─ VendorUrl: http://blog.izs.me/
│ ├─ pseudomap@1.0.2
│ │ ├─ URL: git+https://github.com/isaacs/pseudomap.git
│ │ ├─ VendorName: Isaac Z. Schlueter
│ │ └─ VendorUrl: https://github.com/isaacs/pseudomap#readme
│ ├─ read-installed@4.0.3
│ │ ├─ URL: git://github.com/isaacs/read-installed
│ │ ├─ VendorName: Isaac Z. Schlueter
│ │ └─ VendorUrl: http://blog.izs.me/
│ ├─ read-package-json@2.0.13
│ │ ├─ URL: https://github.com/npm/read-package-json.git
│ │ ├─ VendorName: Isaac Z. Schlueter
│ │ └─ VendorUrl: http://blog.izs.me/
│ ├─ read-package-json@2.1.1
│ │ ├─ URL: https://github.com/npm/read-package-json.git
│ │ ├─ VendorName: Isaac Z. Schlueter
│ │ └─ VendorUrl: http://blog.izs.me/
│ ├─ read@1.0.7
│ │ ├─ URL: git://github.com/isaacs/read.git
│ │ ├─ VendorName: Isaac Z. Schlueter
│ │ └─ VendorUrl: http://blog.izs.me/
│ ├─ readdir-scoped-modules@1.1.0
│ │ ├─ URL: https://github.com/npm/readdir-scoped-modules
│ │ ├─ VendorName: Isaac Z. Schlueter
│ │ └─ VendorUrl: https://github.com/npm/readdir-scoped-modules
│ ├─ realize-package-specifier@3.0.3
│ │ ├─ URL: https://github.com/npm/realize-package-specifier.git
│ │ ├─ VendorName: Rebecca Turner
│ │ └─ VendorUrl: https://github.com/npm/realize-package-specifier
│ ├─ remove-trailing-separator@1.1.0
│ │ ├─ URL: git+https://github.com/darsain/remove-trailing-separator.git
│ │ ├─ VendorName: darsain
│ │ └─ VendorUrl: https://github.com/darsain/remove-trailing-separator#readme
│ ├─ require-main-filename@1.0.1
│ │ ├─ URL: git+ssh://git@github.com/yargs/require-main-filename.git
│ │ ├─ VendorName: Ben Coe
│ │ └─ VendorUrl: https://github.com/yargs/require-main-filename#readme
│ ├─ rimraf@2.4.5
│ │ ├─ URL: git://github.com/isaacs/rimraf.git
│ │ ├─ VendorName: Isaac Z. Schlueter
│ │ └─ VendorUrl: http://blog.izs.me/
│ ├─ rimraf@2.7.1
│ │ ├─ URL: git://github.com/isaacs/rimraf.git
│ │ ├─ VendorName: Isaac Z. Schlueter
│ │ └─ VendorUrl: http://blog.izs.me/
│ ├─ semver@4.3.6
│ │ └─ URL: git://github.com/npm/node-semver.git
│ ├─ semver@5.0.3
│ │ └─ URL: https://github.com/npm/node-semver
│ ├─ semver@5.3.0
│ │ └─ URL: https://github.com/npm/node-semver
│ ├─ semver@5.7.1
│ │ └─ URL: https://github.com/npm/node-semver
│ ├─ set-blocking@2.0.0
│ │ ├─ URL: git+https://github.com/yargs/set-blocking.git
│ │ ├─ VendorName: Ben Coe
│ │ └─ VendorUrl: https://github.com/yargs/set-blocking#readme
│ ├─ setprototypeof@1.1.1
│ │ ├─ URL: https://github.com/wesleytodd/setprototypeof.git
│ │ ├─ VendorName: Wes Todd
│ │ └─ VendorUrl: https://github.com/wesleytodd/setprototypeof
│ ├─ sigmund@1.0.1
│ │ ├─ URL: git://github.com/isaacs/sigmund
│ │ ├─ VendorName: Isaac Z. Schlueter
│ │ └─ VendorUrl: http://blog.izs.me/
│ ├─ signal-exit@3.0.2
│ │ ├─ URL: https://github.com/tapjs/signal-exit.git
│ │ ├─ VendorName: Ben Coe
│ │ └─ VendorUrl: https://github.com/tapjs/signal-exit
│ ├─ silent-error@1.1.1
│ │ ├─ URL: git+https://github.com/stefanpenner/silent-error.git
│ │ ├─ VendorName: Stefan Penner
│ │ └─ VendorUrl: https://github.com/stefanpenner/silent-error#readme
│ ├─ slide@1.1.6
│ │ ├─ URL: git://github.com/isaacs/slide-flow-control.git
│ │ ├─ VendorName: Isaac Z. Schlueter
│ │ └─ VendorUrl: http://blog.izs.me/
│ ├─ tar@2.2.2
│ │ ├─ URL: git://github.com/isaacs/node-tar.git
│ │ ├─ VendorName: Isaac Z. Schlueter
│ │ └─ VendorUrl: http://blog.izs.me/
│ ├─ timers-ext@0.1.7
│ │ ├─ URL: git://github.com/medikoo/timers-ext.git
│ │ ├─ VendorName: Mariusz Nowak
│ │ └─ VendorUrl: http://www.medikoo.com/
│ ├─ tree-sync@1.4.0
│ │ ├─ URL: https://github.com/stefanpenner/tree-sync/
│ │ └─ VendorName: Stefan Penner
│ ├─ type@1.2.0
│ │ ├─ URL: https://github.com/medikoo/type.git
│ │ ├─ VendorName: Mariusz Nowak
│ │ └─ VendorUrl: https://www.medikoo.com/
│ ├─ type@2.0.0
│ │ ├─ URL: https://github.com/medikoo/type.git
│ │ ├─ VendorName: Mariusz Nowak
│ │ └─ VendorUrl: https://www.medikoo.com/
│ ├─ uid-number@0.0.6
│ │ ├─ URL: git://github.com/isaacs/uid-number.git
│ │ ├─ VendorName: Isaac Z. Schlueter
│ │ └─ VendorUrl: http://blog.izs.me/
│ ├─ validate-npm-package-name@2.2.2
│ │ ├─ URL: https://github.com/npm/validate-npm-package-name
│ │ ├─ VendorName: zeke
│ │ └─ VendorUrl: https://github.com/npm/validate-npm-package-name
│ ├─ validate-npm-package-name@3.0.0
│ │ ├─ URL: https://github.com/npm/validate-npm-package-name
│ │ ├─ VendorName: zeke
│ │ └─ VendorUrl: https://github.com/npm/validate-npm-package-name
│ ├─ which-module@1.0.0
│ │ ├─ URL: git+https://github.com/nexdrew/which-module.git
│ │ ├─ VendorName: nexdrew
│ │ └─ VendorUrl: https://github.com/nexdrew/which-module#readme
│ ├─ which@1.2.14
│ │ ├─ URL: git://github.com/isaacs/node-which.git
│ │ ├─ VendorName: Isaac Z. Schlueter
│ │ └─ VendorUrl: http://blog.izs.me
│ ├─ which@1.3.1
│ │ ├─ URL: git://github.com/isaacs/node-which.git
│ │ ├─ VendorName: Isaac Z. Schlueter
│ │ └─ VendorUrl: http://blog.izs.me
│ ├─ wide-align@1.1.3
│ │ ├─ URL: https://github.com/iarna/wide-align
│ │ ├─ VendorName: Rebecca Turner
│ │ └─ VendorUrl: http://re-becca.org/
│ ├─ wrappy@1.0.2
│ │ ├─ URL: https://github.com/npm/wrappy
│ │ ├─ VendorName: Isaac Z. Schlueter
│ │ └─ VendorUrl: https://github.com/npm/wrappy
│ ├─ write-file-atomic@1.1.4
│ │ ├─ URL: git@github.com:iarna/write-file-atomic.git
│ │ ├─ VendorName: Rebecca Turner
│ │ └─ VendorUrl: https://github.com/iarna/write-file-atomic
│ ├─ write-file-atomic@1.3.4
│ │ ├─ URL: git@github.com:iarna/write-file-atomic.git
│ │ ├─ VendorName: Rebecca Turner
│ │ └─ VendorUrl: https://github.com/iarna/write-file-atomic
│ ├─ y18n@3.2.2
│ │ ├─ URL: git@github.com:yargs/y18n.git
│ │ ├─ VendorName: Ben Coe
│ │ └─ VendorUrl: https://github.com/yargs/y18n
│ ├─ yallist@2.1.2
│ │ ├─ URL: git+https://github.com/isaacs/yallist.git
│ │ ├─ VendorName: Isaac Z. Schlueter
│ │ └─ VendorUrl: http://blog.izs.me/
│ └─ yargs-parser@5.0.0
│ ├─ URL: git@github.com:yargs/yargs-parser.git
│ └─ VendorName: Ben Coe
├─ MIT
│ ├─ @sailshq/lodash@3.10.4
│ │ ├─ URL: git://github.com/treelinehq/lodash.git
│ │ └─ VendorName: Mike McNeil
│ ├─ accepts@1.3.7
│ │ └─ URL: https://github.com/jshttp/accepts.git
│ ├─ acorn@5.7.3
│ │ ├─ URL: https://github.com/acornjs/acorn.git
│ │ └─ VendorUrl: https://github.com/acornjs/acorn
│ ├─ ajv@4.11.8
│ │ ├─ URL: https://github.com/epoberezkin/ajv.git
│ │ ├─ VendorName: Evgeny Poberezkin
│ │ └─ VendorUrl: https://github.com/epoberezkin/ajv
│ ├─ ajv@6.10.2
│ │ ├─ URL: https://github.com/epoberezkin/ajv.git
│ │ ├─ VendorName: Evgeny Poberezkin
│ │ └─ VendorUrl: https://github.com/epoberezkin/ajv
│ ├─ align-text@0.1.4
│ │ ├─ URL: git://github.com/jonschlinkert/align-text.git
│ │ ├─ VendorName: Jon Schlinkert
│ │ └─ VendorUrl: https://github.com/jonschlinkert/align-text
│ ├─ alter@0.2.0
│ │ ├─ URL: https://github.com/olov/alter.git
│ │ └─ VendorName: Olov Lassus
│ ├─ amd-name-resolver@0.0.2
│ │ └─ VendorName: Ember CLI contributors
│ ├─ ansi-regex@0.2.1
│ │ ├─ URL: https://github.com/sindresorhus/ansi-regex.git
│ │ ├─ VendorName: Sindre Sorhus
│ │ └─ VendorUrl: http://sindresorhus.com
│ ├─ ansi-regex@1.1.1
│ │ ├─ URL: https://github.com/sindresorhus/ansi-regex.git
│ │ ├─ VendorName: Sindre Sorhus
│ │ └─ VendorUrl: http://sindresorhus.com
│ ├─ ansi-regex@2.1.1
│ │ ├─ URL: https://github.com/chalk/ansi-regex.git
│ │ ├─ VendorName: Sindre Sorhus
│ │ └─ VendorUrl: sindresorhus.com
│ ├─ ansi-regex@3.0.0
│ │ ├─ URL: https://github.com/chalk/ansi-regex.git
│ │ ├─ VendorName: Sindre Sorhus
│ │ └─ VendorUrl: sindresorhus.com
│ ├─ ansi-styles@1.0.0
│ │ ├─ URL: git://github.com/sindresorhus/ansi-styles.git
│ │ ├─ VendorName: Sindre Sorhus
│ │ └─ VendorUrl: https://github.com/sindresorhus/ansi-styles
│ ├─ ansi-styles@1.1.0
│ │ ├─ URL: https://github.com/sindresorhus/ansi-styles.git
│ │ ├─ VendorName: Sindre Sorhus
│ │ └─ VendorUrl: http://sindresorhus.com
│ ├─ ansi-styles@2.2.1
│ │ ├─ URL: https://github.com/chalk/ansi-styles.git
│ │ ├─ VendorName: Sindre Sorhus
│ │ └─ VendorUrl: sindresorhus.com
│ ├─ ansi-styles@3.2.1
│ │ ├─ URL: https://github.com/chalk/ansi-styles.git
│ │ ├─ VendorName: Sindre Sorhus
│ │ └─ VendorUrl: sindresorhus.com
│ ├─ ansi@0.3.1
│ │ ├─ URL: git://github.com/TooTallNate/ansi.js.git
│ │ ├─ VendorName: Nathan Rajlich
│ │ └─ VendorUrl: http://tootallnate.net
│ ├─ ansicolors@0.2.1
│ │ ├─ URL: git://github.com/thlorenz/ansicolors.git
│ │ ├─ VendorName: Thorsten Lorenz
│ │ └─ VendorUrl: thlorenz.com
│ ├─ ansicolors@0.3.2
│ │ ├─ URL: git://github.com/thlorenz/ansicolors.git
│ │ ├─ VendorName: Thorsten Lorenz
│ │ └─ VendorUrl: thlorenz.com
│ ├─ ansistyles@0.1.3
│ │ ├─ URL: git://github.com/thlorenz/ansistyles.git
│ │ ├─ VendorName: Thorsten Lorenz
│ │ └─ VendorUrl: thlorenz.com
│ ├─ archy@1.0.0
│ │ ├─ URL: http://github.com/substack/node-archy.git
│ │ ├─ VendorName: James Halliday
│ │ └─ VendorUrl: http://substack.net
│ ├─ argparse@1.0.10
│ │ └─ URL: https://github.com/nodeca/argparse.git
│ ├─ arr-diff@2.0.0
│ │ ├─ URL: https://github.com/jonschlinkert/arr-diff.git
│ │ ├─ VendorName: Jon Schlinkert
│ │ └─ VendorUrl: https://github.com/jonschlinkert/arr-diff
│ ├─ arr-flatten@1.1.0
│ │ ├─ URL: https://github.com/jonschlinkert/arr-flatten.git
│ │ ├─ VendorName: Jon Schlinkert
│ │ └─ VendorUrl: https://github.com/jonschlinkert/arr-flatten
│ ├─ array-equal@1.0.0
│ │ ├─ URL: https://github.com/component/array-equal.git
│ │ ├─ VendorName: Jonathan Ong
│ │ └─ VendorUrl: http://jongleberry.com
│ ├─ array-find-index@1.0.2
│ │ ├─ URL: https://github.com/sindresorhus/array-find-index.git
│ │ ├─ VendorName: Sindre Sorhus
│ │ └─ VendorUrl: sindresorhus.com
│ ├─ array-flatten@1.1.1
│ │ ├─ URL: git://github.com/blakeembrey/array-flatten.git
│ │ ├─ VendorName: Blake Embrey
│ │ └─ VendorUrl: https://github.com/blakeembrey/array-flatten
│ ├─ array-index@1.0.0
│ │ ├─ URL: git://github.com/TooTallNate/array-index.git
│ │ ├─ VendorName: Nathan Rajlich
│ │ └─ VendorUrl: http://tootallnate.net
│ ├─ array-unique@0.2.1
│ │ ├─ URL: git://github.com/jonschlinkert/array-unique.git
│ │ ├─ VendorName: Jon Schlinkert
│ │ └─ VendorUrl: https://github.com/jonschlinkert/array-unique
│ ├─ arraybuffer.slice@0.0.6
│ │ ├─ URL: git@github.com:rase-/arraybuffer.slice.git
│ │ └─ VendorUrl: https://github.com/rase-/arraybuffer.slice
│ ├─ asap@2.0.6
│ │ └─ URL: https://github.com/kriskowal/asap.git
│ ├─ asn1@0.1.11
│ │ ├─ URL: git://github.com/mcavage/node-asn1.git
│ │ └─ VendorName: Mark Cavage
│ ├─ asn1@0.2.4
│ │ ├─ URL: git://github.com/joyent/node-asn1.git
│ │ ├─ VendorName: Joyent
│ │ └─ VendorUrl: joyent.com
│ ├─ assert-plus@0.2.0
│ │ ├─ URL: https://github.com/mcavage/node-assert-plus.git
│ │ └─ VendorName: Mark Cavage
│ ├─ assert-plus@1.0.0
│ │ ├─ URL: https://github.com/mcavage/node-assert-plus.git
│ │ └─ VendorName: Mark Cavage
│ ├─ ast-traverse@0.1.1
│ │ ├─ URL: https://github.com/olov/ast-traverse.git
│ │ └─ VendorName: Olov Lassus