forked from ome/omero-iviewer
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlibraries.txt
3109 lines (3104 loc) · 122 KB
/
libraries.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
Managed manually
----------------
Library: OpenLayers 3
License: 2-Clause BSD
Site: https://openlayers.org/
Library: Google Closure
License: Apache Version 2.0
Site: https://developers.google.com/closure/
Library: Apache Ant
License: Apache Version 2.0
Site: http://ant.apache.org/
Managed through webpack
-----------------------
├─ JSONStream@1.3.1
│ ├─ licenses: (MIT OR Apache-2.0)
│ ├─ repository: https://github.com/dominictarr/JSONStream
├─ abab@1.0.3
│ ├─ licenses: ISC
│ ├─ repository: https://github.com/jsdom/abab
├─ abbrev@1.1.0
│ ├─ licenses: ISC
│ ├─ repository: https://github.com/isaacs/abbrev-js
├─ absolute@0.0.1
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/bahamas10/node-absolute
├─ accepts@1.3.3
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/jshttp/accepts
├─ acorn@2.7.0
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/ternjs/acorn
├─ acorn@3.3.0
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/ternjs/acorn
├─ acorn@4.0.11
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/ternjs/acorn
├─ acorn@4.0.13
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/ternjs/acorn
├─ acorn-globals@1.0.9
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/ForbesLindesay/acorn-globals
├─ acorn-jsx@3.0.1
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/RReverser/acorn-jsx
├─ acorn-to-esprima@2.0.8
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/babel/acorn-to-esprima
├─ after@0.8.2
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/Raynos/after
├─ align-text@0.1.4
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/jonschlinkert/align-text
├─ alphanum-sort@1.0.2
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/TrySound/alphanum-sort
├─ amdefine@1.0.1
│ ├─ licenses: BSD-3-Clause OR MIT
│ ├─ repository: https://github.com/jrburke/amdefine
├─ ansi-escapes@1.4.0
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/sindresorhus/ansi-escapes
├─ ansi-red@0.1.1
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/jonschlinkert/ansi-red
├─ ansi-regex@2.1.1
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/chalk/ansi-regex
├─ ansi-styles@1.0.0
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/sindresorhus/ansi-styles
├─ ansi-styles@2.2.1
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/chalk/ansi-styles
├─ ansi-wrap@0.1.0
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/jonschlinkert/ansi-wrap
├─ anymatch@1.3.0
│ ├─ licenses: ISC
│ ├─ repository: https://github.com/es128/anymatch
├─ aproba@1.1.1
│ ├─ licenses: ISC
│ ├─ repository: https://github.com/iarna/aproba
├─ aproba@1.1.2
│ ├─ licenses: ISC
│ ├─ repository: https://github.com/iarna/aproba
├─ are-we-there-yet@1.1.2
│ ├─ licenses: ISC
│ ├─ repository: https://github.com/iarna/are-we-there-yet
├─ are-we-there-yet@1.1.4
│ ├─ licenses: ISC
│ ├─ repository: https://github.com/iarna/are-we-there-yet
├─ argparse@1.0.9
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/nodeca/argparse
├─ arr-diff@2.0.0
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/jonschlinkert/arr-diff
├─ arr-flatten@1.0.3
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/jonschlinkert/arr-flatten
├─ array-differ@1.0.0
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/sindresorhus/array-differ
├─ array-filter@0.0.1
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/juliangruber/array-filter
├─ array-flatten@1.1.1
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/blakeembrey/array-flatten
├─ array-map@0.0.0
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/substack/array-map
├─ array-reduce@0.0.0
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/substack/array-reduce
├─ array-union@1.0.2
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/sindresorhus/array-union
├─ array-uniq@1.0.3
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/sindresorhus/array-uniq
├─ array-unique@0.2.1
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/jonschlinkert/array-unique
├─ arraybuffer.slice@0.0.6
│ ├─ licenses: MIT*
│ └─ repository: https://github.com/rase-/arraybuffer.slice
├─ arrify@1.0.1
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/sindresorhus/arrify
├─ asn1@0.1.11
│ ├─ licenses: MIT*
│ ├─ repository: https://github.com/mcavage/node-asn1
├─ asn1@0.2.3
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/mcavage/node-asn1
├─ asn1.js@4.9.1
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/indutny/asn1.js
├─ assert@1.4.1
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/defunctzombie/commonjs-assert
├─ assert-plus@0.1.5
│ ├─ licenses: MIT*
│ ├─ repository: https://github.com/mcavage/node-assert-plus
├─ assert-plus@0.2.0
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/mcavage/node-assert-plus
├─ assert-plus@1.0.0
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/mcavage/node-assert-plus
├─ ast-types@0.9.6
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/benjamn/ast-types
├─ astw@2.2.0
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/substack/astw
├─ async@0.2.10
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/caolan/async
├─ async@0.9.2
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/caolan/async
├─ async@1.5.2
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/caolan/async
├─ async@2.1.5
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/caolan/async
├─ async@2.3.0
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/caolan/async
├─ async-each@1.0.1
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/paulmillr/async-each
├─ asynckit@0.4.0
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/alexindigo/asynckit
├─ aurelia-binding@1.2.1
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/aurelia/binding
├─ aurelia-bootstrapper-webpack@1.0.0
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/aurelia/bootstrapper-webpack
├─ aurelia-dependency-injection@1.3.1
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/aurelia/dependency-injection
├─ aurelia-event-aggregator@1.0.0
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/aurelia/event-aggregator
├─ aurelia-fetch-client@1.0.0
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/aurelia/fetch-client
├─ aurelia-framework@1.0.0
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/aurelia/framework
├─ aurelia-history@1.0.0
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/aurelia/history
├─ aurelia-history-browser@1.0.0
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/aurelia/history-browser
├─ aurelia-loader@1.0.0
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/aurelia/loader
├─ aurelia-loader-webpack@1.0.0
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/aurelia/loader-webpack
├─ aurelia-logging@1.3.1
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/aurelia/logging
├─ aurelia-logging-console@1.0.0
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/aurelia/logging-console
├─ aurelia-metadata@1.0.3
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/aurelia/metadata
├─ aurelia-pal@1.3.0
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/aurelia/pal
├─ aurelia-pal-browser@1.0.0
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/aurelia/pal-browser
├─ aurelia-path@1.1.1
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/aurelia/path
├─ aurelia-polyfills@1.0.0
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/aurelia/polyfills
├─ aurelia-route-recognizer@1.0.0
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/aurelia/route-recognizer
├─ aurelia-router@1.0.0
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/aurelia/router
├─ aurelia-router@1.3.0
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/aurelia/router
├─ aurelia-task-queue@1.2.0
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/aurelia/task-queue
├─ aurelia-templating@1.4.2
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/aurelia/templating
├─ aurelia-templating-binding@1.0.0
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/aurelia/templating-binding
├─ aurelia-templating-resources@1.0.0
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/aurelia/templating-resources
├─ aurelia-templating-router@1.0.0
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/aurelia/templating-router
├─ aurelia-tools@0.2.4
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/aurelia/tools
├─ aurelia-webpack-plugin@1.1.0
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/aurelia/webpack-plugin
├─ autoprefixer@6.7.7
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/postcss/autoprefixer
├─ aws-sign2@0.5.0
│ ├─ licenses: Apache*
│ ├─ repository: https://github.com/mikeal/aws-sign
├─ aws-sign2@0.6.0
│ ├─ licenses: Apache-2.0
│ ├─ repository: https://github.com/mikeal/aws-sign
├─ aws4@1.6.0
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/mhart/aws4
├─ babel-code-frame@6.22.0
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/babel/babel/tree/master/packages/babel-code-frame
├─ babel-core@6.25.0
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/babel/babel/tree/master/packages/babel-core
├─ babel-eslint@5.0.4
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/babel/babel-eslint
├─ babel-generator@6.25.0
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/babel/babel/tree/master/packages/babel-generator
├─ babel-helper-bindify-decorators@6.24.1
│ ├─ licenses: MIT
│ └─ repository: https://github.com/babel/babel/tree/master/packages/babel-helper-bindify-decorators
├─ babel-helper-builder-binary-assignment-operator-visitor@6.24.1
│ ├─ licenses: MIT
│ └─ repository: https://github.com/babel/babel/tree/master/packages/babel-helper-builder-binary-assignment-operator-visitor
├─ babel-helper-call-delegate@6.24.1
│ ├─ licenses: MIT
│ └─ repository: https://github.com/babel/babel/tree/master/packages/babel-helper-call-delegate
├─ babel-helper-define-map@6.24.1
│ ├─ licenses: MIT
│ └─ repository: https://github.com/babel/babel/tree/master/packages/babel-helper-define-map
├─ babel-helper-explode-assignable-expression@6.24.1
│ ├─ licenses: MIT
│ └─ repository: https://github.com/babel/babel/tree/master/packages/babel-helper-explode-assignable-expression
├─ babel-helper-explode-class@6.24.1
│ ├─ licenses: MIT
│ └─ repository: https://github.com/babel/babel/tree/master/packages/babel-helper-explode-class
├─ babel-helper-function-name@6.24.1
│ ├─ licenses: MIT
│ └─ repository: https://github.com/babel/babel/tree/master/packages/babel-helper-function-name
├─ babel-helper-get-function-arity@6.24.1
│ ├─ licenses: MIT
│ └─ repository: https://github.com/babel/babel/tree/master/packages/babel-helper-get-function-arity
├─ babel-helper-hoist-variables@6.24.1
│ ├─ licenses: MIT
│ └─ repository: https://github.com/babel/babel/tree/master/packages/babel-helper-hoist-variables
├─ babel-helper-optimise-call-expression@6.24.1
│ ├─ licenses: MIT
│ └─ repository: https://github.com/babel/babel/tree/master/packages/babel-helper-optimise-call-expression
├─ babel-helper-regex@6.24.1
│ ├─ licenses: MIT
│ └─ repository: https://github.com/babel/babel/tree/master/packages/babel-helper-regex
├─ babel-helper-remap-async-to-generator@6.24.1
│ ├─ licenses: MIT
│ └─ repository: https://github.com/babel/babel/tree/master/packages/babel-helper-remap-async-to-generator
├─ babel-helper-replace-supers@6.24.1
│ ├─ licenses: MIT
│ └─ repository: https://github.com/babel/babel/tree/master/packages/babel-helper-replace-supers
├─ babel-helpers@6.24.1
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/babel/babel/tree/master/packages/babel-helpers
├─ babel-loader@6.4.1
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/babel/babel-loader
├─ babel-messages@6.23.0
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/babel/babel/tree/master/packages/babel-messages
├─ babel-plugin-check-es2015-constants@6.22.0
│ ├─ licenses: MIT
│ └─ repository: https://github.com/babel/babel/tree/master/packages/babel-plugin-check-es2015-constants
├─ babel-plugin-syntax-async-functions@6.13.0
│ ├─ licenses: MIT
│ └─ repository: https://github.com/babel/babel/tree/master/packages/babel-plugin-syntax-async-functions
├─ babel-plugin-syntax-async-generators@6.13.0
│ ├─ licenses: MIT
│ └─ repository: https://github.com/babel/babel/tree/master/packages/babel-plugin-syntax-async-generators
├─ babel-plugin-syntax-class-constructor-call@6.18.0
│ ├─ licenses: MIT
│ └─ repository: https://github.com/babel/babel/tree/master/packages/babel-plugin-syntax-class-constructor-call
├─ babel-plugin-syntax-class-properties@6.13.0
│ ├─ licenses: MIT
│ └─ repository: https://github.com/babel/babel/tree/master/packages/babel-plugin-syntax-class-properties
├─ babel-plugin-syntax-decorators@6.13.0
│ ├─ licenses: MIT
│ └─ repository: https://github.com/babel/babel/tree/master/packages/babel-plugin-syntax-decorators
├─ babel-plugin-syntax-dynamic-import@6.18.0
│ ├─ licenses: MIT
│ └─ repository: https://github.com/babel/babel/tree/master/packages/babel-plugin-syntax-dynamic-import
├─ babel-plugin-syntax-exponentiation-operator@6.13.0
│ ├─ licenses: MIT
│ └─ repository: https://github.com/babel/babel/tree/master/packages/babel-plugin-syntax-exponentation-operator
├─ babel-plugin-syntax-export-extensions@6.13.0
│ ├─ licenses: MIT
│ └─ repository: https://github.com/babel/babel/tree/master/packages/babel-plugin-syntax-export-extensions
├─ babel-plugin-syntax-object-rest-spread@6.13.0
│ ├─ licenses: MIT
│ └─ repository: https://github.com/babel/babel/tree/master/packages/babel-plugin-syntax-object-rest-spread
├─ babel-plugin-syntax-trailing-function-commas@6.22.0
│ ├─ licenses: MIT
│ └─ repository: https://github.com/babel/babel/tree/master/packages/babel-plugin-syntax-trailing-function-commas
├─ babel-plugin-transform-async-generator-functions@6.24.1
│ ├─ licenses: MIT
│ └─ repository: https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-async-generator-functions
├─ babel-plugin-transform-async-to-generator@6.24.1
│ ├─ licenses: MIT
│ └─ repository: https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-async-to-generator
├─ babel-plugin-transform-class-constructor-call@6.24.1
│ ├─ licenses: MIT
│ └─ repository: https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-class-constructor-call
├─ babel-plugin-transform-class-properties@6.24.1
│ ├─ licenses: MIT
│ └─ repository: https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-class-properties
├─ babel-plugin-transform-decorators@6.24.1
│ ├─ licenses: MIT
│ └─ repository: https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-decorators
├─ babel-plugin-transform-decorators-legacy@1.3.4
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/loganfsmyth/babel-plugin-transform-decorators-legacy
├─ babel-plugin-transform-es2015-arrow-functions@6.22.0
│ ├─ licenses: MIT
│ └─ repository: https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-es2015-arrow-functions
├─ babel-plugin-transform-es2015-block-scoped-functions@6.22.0
│ ├─ licenses: MIT
│ └─ repository: https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-es2015-block-scoped-functions
├─ babel-plugin-transform-es2015-block-scoping@6.24.1
│ ├─ licenses: MIT
│ └─ repository: https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-es2015-block-scoping
├─ babel-plugin-transform-es2015-classes@6.24.1
│ ├─ licenses: MIT
│ └─ repository: https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-es2015-classes
├─ babel-plugin-transform-es2015-computed-properties@6.24.1
│ ├─ licenses: MIT
│ └─ repository: https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-es2015-computed-properties
├─ babel-plugin-transform-es2015-destructuring@6.23.0
│ ├─ licenses: MIT
│ └─ repository: https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-es2015-destructuring
├─ babel-plugin-transform-es2015-duplicate-keys@6.24.1
│ ├─ licenses: MIT
│ └─ repository: https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-es2015-duplicate-keys
├─ babel-plugin-transform-es2015-for-of@6.23.0
│ ├─ licenses: MIT
│ └─ repository: https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-es2015-for-of
├─ babel-plugin-transform-es2015-function-name@6.24.1
│ ├─ licenses: MIT
│ └─ repository: https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-es2015-function-name
├─ babel-plugin-transform-es2015-literals@6.22.0
│ ├─ licenses: MIT
│ └─ repository: https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-es2015-literals
├─ babel-plugin-transform-es2015-modules-amd@6.24.1
│ ├─ licenses: MIT
│ └─ repository: https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-es2015-modules-amd
├─ babel-plugin-transform-es2015-modules-commonjs@6.24.1
│ ├─ licenses: MIT
│ └─ repository: https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-es2015-modules-commonjs
├─ babel-plugin-transform-es2015-modules-systemjs@6.24.1
│ ├─ licenses: MIT
│ └─ repository: https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-es2015-modules-systemjs
├─ babel-plugin-transform-es2015-modules-umd@6.24.1
│ ├─ licenses: MIT
│ └─ repository: https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-es2015-modules-umd
├─ babel-plugin-transform-es2015-object-super@6.24.1
│ ├─ licenses: MIT
│ └─ repository: https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-es2015-object-super
├─ babel-plugin-transform-es2015-parameters@6.24.1
│ ├─ licenses: MIT
│ └─ repository: https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-es2015-parameters
├─ babel-plugin-transform-es2015-shorthand-properties@6.24.1
│ ├─ licenses: MIT
│ └─ repository: https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-es2015-shorthand-properties
├─ babel-plugin-transform-es2015-spread@6.22.0
│ ├─ licenses: MIT
│ └─ repository: https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-es2015-spread
├─ babel-plugin-transform-es2015-sticky-regex@6.24.1
│ ├─ licenses: MIT
│ └─ repository: https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-es2015-sticky-regex
├─ babel-plugin-transform-es2015-template-literals@6.22.0
│ ├─ licenses: MIT
│ └─ repository: https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-es2015-template-literals
├─ babel-plugin-transform-es2015-typeof-symbol@6.23.0
│ ├─ licenses: MIT
│ └─ repository: https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-es2015-typeof-symbol
├─ babel-plugin-transform-es2015-unicode-regex@6.24.1
│ ├─ licenses: MIT
│ └─ repository: https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-es2015-unicode-regex
├─ babel-plugin-transform-exponentiation-operator@6.24.1
│ ├─ licenses: MIT
│ └─ repository: https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-exponentiation-operator
├─ babel-plugin-transform-export-extensions@6.22.0
│ ├─ licenses: MIT
│ └─ repository: https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-export-extensions
├─ babel-plugin-transform-object-rest-spread@6.23.0
│ ├─ licenses: MIT
│ └─ repository: https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-object-rest-spread
├─ babel-plugin-transform-regenerator@6.24.1
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-regenerator
├─ babel-plugin-transform-strict-mode@6.24.1
│ ├─ licenses: MIT
│ └─ repository: https://github.com/babel/babel/tree/master/packages/babel-plugin-transform-strict-mode
├─ babel-preset-es2015@6.24.1
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/babel/babel/tree/master/packages/babel-preset-es2015
├─ babel-preset-es2015-loose@7.0.0
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/bkonkle/babel-preset-es2015-loose
├─ babel-preset-stage-1@6.24.1
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/babel/babel/tree/master/packages/babel-preset-stage-1
├─ babel-preset-stage-2@6.24.1
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/babel/babel/tree/master/packages/babel-preset-stage-2
├─ babel-preset-stage-3@6.24.1
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/babel/babel/tree/master/packages/babel-preset-stage-3
├─ babel-register@6.24.1
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/babel/babel/tree/master/packages/babel-register
├─ babel-runtime@6.23.0
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/babel/babel/tree/master/packages/babel-runtime
├─ babel-template@6.25.0
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/babel/babel/tree/master/packages/babel-template
├─ babel-traverse@6.25.0
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/babel/babel/tree/master/packages/babel-traverse
├─ babel-types@6.25.0
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/babel/babel/tree/master/packages/babel-types
├─ babylon@6.17.3
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/babel/babylon
├─ backo2@1.0.2
│ ├─ licenses: MIT
│ └─ repository: https://github.com/mokesmokes/backo
├─ balanced-match@0.4.2
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/juliangruber/balanced-match
├─ base64-arraybuffer@0.1.5
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/niklasvh/base64-arraybuffer
├─ base64-js@1.2.0
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/beatgammit/base64-js
├─ base64id@1.0.0
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/faeldt/base64id
├─ batch@0.6.1
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/visionmedia/batch
├─ bcrypt-pbkdf@1.0.1
│ └─ licenses: BSD-3-Clause
├─ better-assert@1.0.2
│ ├─ licenses: MIT*
│ ├─ repository: https://github.com/visionmedia/better-assert
├─ big.js@3.1.3
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/MikeMcl/big.js
├─ binary@0.3.0
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/substack/node-binary
├─ binary-extensions@1.8.0
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/sindresorhus/binary-extensions
├─ bl@1.0.3
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/rvagg/bl
├─ blob@0.0.4
│ ├─ licenses: MIT*
│ └─ repository: https://github.com/rase-/blob
├─ block-stream@0.0.9
│ ├─ licenses: ISC
│ ├─ repository: https://github.com/isaacs/block-stream
├─ bluebird@2.11.0
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/petkaantonov/bluebird
├─ bluebird@3.4.7
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/petkaantonov/bluebird
├─ bluebird@3.5.0
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/petkaantonov/bluebird
├─ bn.js@4.11.6
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/indutny/bn.js
├─ boolbase@1.0.0
│ ├─ licenses: ISC
│ ├─ repository: https://github.com/fb55/boolbase
├─ boom@2.10.1
│ ├─ licenses: BSD-3-Clause
│ ├─ repository: https://github.com/hapijs/boom
├─ bootstrap@3.3.7
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/twbs/bootstrap
├─ brace-expansion@1.1.6
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/juliangruber/brace-expansion
├─ brace-expansion@1.1.7
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/juliangruber/brace-expansion
├─ braces@1.8.5
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/jonschlinkert/braces
├─ breeze-dag@0.1.0
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/qualiancy/breeze-dag
├─ breeze-nexttick@0.2.1
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/qualiancy/breeze-nexttick
├─ breeze-queue@0.1.0
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/qualiancy/breeze-queue
├─ brorand@1.1.0
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/indutny/brorand
├─ browser-pack@6.0.2
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/substack/browser-pack
├─ browser-resolve@1.11.2
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/shtylman/node-browser-resolve
├─ browserify@14.3.0
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/substack/node-browserify
├─ browserify-aes@0.4.0
│ ├─ licenses: MIT
│ └─ repository: https://github.com/calvinmetcalf/browserify-aes
├─ browserify-aes@1.0.6
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/crypto-browserify/browserify-aes
├─ browserify-cipher@1.0.0
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/crypto-browserify/browserify-cipher
├─ browserify-des@1.0.0
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/crypto-browserify/browserify-des
├─ browserify-rsa@4.0.1
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/crypto-browserify/browserify-rsa
├─ browserify-sign@4.0.4
│ ├─ licenses: ISC
│ ├─ repository: https://github.com/crypto-browserify/browserify-sign
├─ browserify-zlib@0.1.4
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/devongovett/browserify-zlib
├─ browserslist@1.7.7
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/ai/browserslist
├─ buffer@4.9.1
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/feross/buffer
├─ buffer@5.0.6
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/feross/buffer
├─ buffer-shims@1.0.0
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/calvinmetcalf/buffer-shims
├─ buffer-xor@1.0.3
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/crypto-browserify/buffer-xor
├─ buffers@0.1.1
│ ├─ licenses: UNKNOWN
│ ├─ repository: https://github.com/substack/node-buffers
├─ builtin-modules@1.1.1
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/sindresorhus/builtin-modules
├─ builtin-status-codes@3.0.0
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/bendrucker/builtin-status-codes
├─ bytes@2.3.0
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/visionmedia/bytes.js
├─ cached-path-relative@1.0.1
│ ├─ licenses: MIT
│ └─ repository: https://github.com/ashaffer/cached-path-relative
├─ callsite@1.0.0
│ ├─ licenses: MIT*
├─ camel-case@3.0.0
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/blakeembrey/camel-case
├─ camelcase@1.2.1
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/sindresorhus/camelcase
├─ camelcase@3.0.0
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/sindresorhus/camelcase
├─ caniuse-api@1.6.1
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/nyalab/caniuse-api
├─ caniuse-db@1.0.30000680
│ ├─ licenses: CC-BY-4.0
│ ├─ repository: https://github.com/Fyrd/caniuse
├─ caseless@0.11.0
│ ├─ licenses: Apache-2.0
│ ├─ repository: https://github.com/mikeal/caseless
├─ catharsis@0.8.8
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/hegemonic/catharsis
├─ center-align@0.1.3
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/jonschlinkert/center-align
├─ chainsaw@0.1.0
│ ├─ licenses: MIT*
│ ├─ repository: https://github.com/substack/node-chainsaw
├─ chalk@0.4.0
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/sindresorhus/chalk
├─ chalk@1.1.3
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/chalk/chalk
├─ cheerio@0.20.0
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/cheeriojs/cheerio
├─ chokidar@1.7.0
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/paulmillr/chokidar
├─ cipher-base@1.0.3
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/crypto-browserify/cipher-base
├─ circular-json@0.3.1
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/WebReflection/circular-json
├─ clap@1.1.3
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/lahmatiy/clap
├─ clean-css@4.1.3
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/jakubpawlowicz/clean-css
├─ cli-cursor@1.0.2
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/sindresorhus/cli-cursor
├─ cli-width@1.1.1
│ ├─ licenses: ISC
│ ├─ repository: https://github.com/knownasilya/cli-width
├─ cliui@2.1.0
│ ├─ licenses: ISC
│ ├─ repository: https://github.com/bcoe/cliui
├─ cliui@3.2.0
│ ├─ licenses: ISC
│ ├─ repository: https://github.com/yargs/cliui
├─ clone@1.0.2
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/pvorb/node-clone
├─ closure-util@1.18.0
│ ├─ licenses: MIT
│ └─ repository: https://github.com/openlayers/closure-util
├─ co@3.1.0
│ ├─ licenses: MIT
│ └─ repository: https://github.com/visionmedia/co
├─ co-from-stream@0.0.0
│ ├─ licenses: MIT
│ └─ repository: https://github.com/juliangruber/co-from-stream
├─ co-fs-extra@1.2.1
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/GKuChan/co-fs-extra
├─ co-read@0.0.1
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/juliangruber/co-read
├─ coa@1.0.2
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/veged/coa
├─ code-point-at@1.1.0
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/sindresorhus/code-point-at
├─ coffee-script@1.12.6
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/jashkenas/coffeescript
├─ color@0.11.4
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/qix-/color
├─ color-convert@1.9.0
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/qix-/color-convert
├─ color-name@1.1.2
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/dfcreative/color-name
├─ color-string@0.3.0
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/harthur/color-string
├─ colormin@1.1.2
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/ben-eb/colormin
├─ colors@1.1.2
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/Marak/colors.js
├─ combine-source-map@0.7.2
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/thlorenz/combine-source-map
├─ combined-stream@1.0.5
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/felixge/node-combined-stream
├─ commander@2.9.0
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/tj/commander.js
├─ commondir@1.0.1
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/substack/node-commondir
├─ component-bind@1.0.0
│ ├─ licenses: MIT*
│ └─ repository: https://github.com/component/bind
├─ component-emitter@1.1.2
│ ├─ licenses: MIT*
│ └─ repository: https://github.com/component/emitter
├─ component-emitter@1.2.1
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/component/emitter
├─ component-inherit@0.0.3
│ ├─ licenses: MIT*
│ └─ repository: https://github.com/component/inherit
├─ compressible@2.0.10
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/jshttp/compressible
├─ compression@1.6.2
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/expressjs/compression
├─ concat-map@0.0.1
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/substack/node-concat-map
├─ concat-stream@1.5.2
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/maxogden/concat-stream
├─ connect-history-api-fallback@1.3.0
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/bripkens/connect-history-api-fallback
├─ console-browserify@1.1.0
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/Raynos/console-browserify
├─ console-control-strings@1.1.0
│ ├─ licenses: ISC
│ ├─ repository: https://github.com/iarna/console-control-strings
├─ consolidate@0.14.5
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/visionmedia/consolidate.js
├─ constants-browserify@1.0.0
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/juliangruber/constants-browserify
├─ content-disposition@0.5.2
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/jshttp/content-disposition
├─ content-type@1.0.2
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/jshttp/content-type
├─ convert-source-map@1.1.3
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/thlorenz/convert-source-map
├─ cookie@0.3.1
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/jshttp/cookie
├─ cookie-signature@1.0.6
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/visionmedia/node-cookie-signature
├─ core-js@2.4.1
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/zloirock/core-js
├─ core-util-is@1.0.2
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/isaacs/core-util-is
├─ create-ecdh@4.0.0
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/crypto-browserify/createECDH
├─ create-hash@1.1.3
│ ├─ licenses: MIT
│ └─ repository: https://github.com/crypto-browserify/createHash
├─ create-hmac@1.1.6
│ ├─ licenses: MIT
│ └─ repository: https://github.com/crypto-browserify/createHmac
├─ cross-spawn-async@2.2.5
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/IndigoUnited/node-cross-spawn-async
├─ cryptiles@2.0.5
│ ├─ licenses: BSD-3-Clause
│ ├─ repository: https://github.com/hapijs/cryptiles
├─ crypto-browserify@3.11.0
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/crypto-browserify/crypto-browserify
├─ crypto-browserify@3.3.0
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/dominictarr/crypto-browserify
├─ css-color-names@0.0.4
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/bahamas10/css-color-names
├─ css-loader@0.23.1
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/webpack/css-loader
├─ css-select@1.2.0
│ ├─ licenses: BSD*
│ ├─ repository: https://github.com/fb55/css-select
├─ css-selector-tokenizer@0.5.4
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/css-modules/css-selector-tokenizer
├─ css-selector-tokenizer@0.7.0
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/css-modules/css-selector-tokenizer
├─ css-what@2.1.0
│ ├─ licenses: BSD*
│ ├─ repository: https://github.com/fb55/css-what
├─ cssesc@0.1.0
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/mathiasbynens/cssesc
├─ cssnano@3.10.0
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/ben-eb/cssnano
├─ csso@2.3.2
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/css/csso
├─ cssom@0.3.2
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/NV/CSSOM
├─ cssstyle@0.2.37
│ ├─ licenses: MIT
│ └─ repository: https://github.com/chad3814/CSSStyleDeclaration
├─ ctype@0.5.3
│ ├─ licenses: MIT*
│ ├─ repository: https://github.com/rmustacc/node-ctype
├─ d@1.0.0
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/medikoo/d
├─ d3@4.2.7
│ ├─ licenses: BSD-3-Clause
│ ├─ repository: https://github.com/d3/d3
├─ d3-array@1.0.1
│ ├─ licenses: BSD-3-Clause
│ ├─ repository: https://github.com/d3/d3-array
├─ d3-axis@1.0.3
│ ├─ licenses: BSD-3-Clause
│ ├─ repository: https://github.com/d3/d3-axis
├─ d3-brush@1.0.3
│ ├─ licenses: BSD-3-Clause
│ ├─ repository: https://github.com/d3/d3-brush
├─ d3-chord@1.0.2
│ ├─ licenses: BSD-3-Clause
│ ├─ repository: https://github.com/d3/d3-chord
├─ d3-collection@1.0.1
│ ├─ licenses: BSD-3-Clause
│ ├─ repository: https://github.com/d3/d3-collection
├─ d3-color@1.0.1
│ ├─ licenses: BSD-3-Clause
│ ├─ repository: https://github.com/d3/d3-color
├─ d3-dispatch@1.0.1
│ ├─ licenses: BSD-3-Clause
│ ├─ repository: https://github.com/d3/d3-dispatch
├─ d3-drag@1.0.1
│ ├─ licenses: BSD-3-Clause
│ ├─ repository: https://github.com/d3/d3-drag
├─ d3-dsv@1.0.3
│ ├─ licenses: BSD-3-Clause
│ ├─ repository: https://github.com/d3/d3-dsv
├─ d3-ease@1.0.1
│ ├─ licenses: BSD-3-Clause
│ ├─ repository: https://github.com/d3/d3-ease
├─ d3-force@1.0.3
│ ├─ licenses: BSD-3-Clause
│ ├─ repository: https://github.com/d3/d3-force
├─ d3-format@1.0.2
│ ├─ licenses: BSD-3-Clause
│ ├─ repository: https://github.com/d3/d3-format
├─ d3-geo@1.2.6
│ ├─ licenses: BSD-3-Clause
│ ├─ repository: https://github.com/d3/d3-geo
├─ d3-hierarchy@1.0.2
│ ├─ licenses: BSD-3-Clause
│ ├─ repository: https://github.com/d3/d3-hierarchy
├─ d3-interpolate@1.1.1
│ ├─ licenses: BSD-3-Clause
│ ├─ repository: https://github.com/d3/d3-interpolate
├─ d3-path@1.0.2
│ ├─ licenses: BSD-3-Clause
│ ├─ repository: https://github.com/d3/d3-path
├─ d3-polygon@1.0.1
│ ├─ licenses: BSD-3-Clause
│ ├─ repository: https://github.com/d3/d3-polygon
├─ d3-quadtree@1.0.1
│ ├─ licenses: BSD-3-Clause
│ ├─ repository: https://github.com/d3/d3-quadtree
├─ d3-queue@3.0.3
│ ├─ licenses: BSD-3-Clause
│ ├─ repository: https://github.com/d3/d3-queue
├─ d3-random@1.0.1
│ ├─ licenses: BSD-3-Clause
│ ├─ repository: https://github.com/d3/d3-random
├─ d3-request@1.0.2
│ ├─ licenses: BSD-3-Clause
│ ├─ repository: https://github.com/d3/d3-request
├─ d3-scale@1.0.3
│ ├─ licenses: BSD-3-Clause
│ ├─ repository: https://github.com/d3/d3-scale
├─ d3-selection@1.0.2
│ ├─ licenses: BSD-3-Clause
│ ├─ repository: https://github.com/d3/d3-selection
├─ d3-shape@1.0.3
│ ├─ licenses: BSD-3-Clause
│ ├─ repository: https://github.com/d3/d3-shape
├─ d3-time@1.0.4
│ ├─ licenses: BSD-3-Clause
│ ├─ repository: https://github.com/d3/d3-time
├─ d3-time-format@2.0.2
│ ├─ licenses: BSD-3-Clause
│ ├─ repository: https://github.com/d3/d3-time-format
├─ d3-timer@1.0.3
│ ├─ licenses: BSD-3-Clause
│ ├─ repository: https://github.com/d3/d3-timer
├─ d3-transition@1.0.2
│ ├─ licenses: BSD-3-Clause
│ ├─ repository: https://github.com/d3/d3-transition
├─ d3-voronoi@1.0.2
│ ├─ licenses: BSD-3-Clause
│ ├─ repository: https://github.com/d3/d3-voronoi
├─ d3-zoom@1.0.3
│ ├─ licenses: BSD-3-Clause
│ ├─ repository: https://github.com/d3/d3-zoom
├─ dashdash@1.14.1
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/trentm/node-dashdash
├─ date-now@0.1.4
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/Colingo/date-now
├─ debug@2.2.0
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/visionmedia/debug
├─ debug@2.3.3
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/visionmedia/debug
├─ debug@2.6.7
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/visionmedia/debug
├─ debug@2.6.8
│ ├─ licenses: MIT
│ ├─ repository: https://github.com/visionmedia/debug