-
Notifications
You must be signed in to change notification settings - Fork 46
/
dependencies
6616 lines (6616 loc) · 413 KB
/
dependencies
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
nodejs-pptx@1.0.0
│ /Users/markdaggett/Sites/clients/humansized/node-pptx
│ Generate PPTX files on the server-side with JavaScript.
│ git+https://github.com/heavysixer/node-pptx.git
│ https://github.com/heavysixer/node-pptx#readme
├── async@1.5.2
│ Higher-order functions and common patterns for asynchronous code
│ git+https://github.com/caolan/async.git
│ https://github.com/caolan/async#readme
├─┬ babel-cli@6.26.0
│ │ Babel command line.
│ │ https://github.com/babel/babel/tree/master/packages/babel-cli
│ │ https://babeljs.io/
│ ├─┬ babel-core@6.26.3
│ │ │ Babel compiler core.
│ │ │ https://github.com/babel/babel/tree/master/packages/babel-core
│ │ │ https://babeljs.io/
│ │ ├── babel-code-frame@6.26.0 deduped
│ │ │ Generate errors that contain a code frame that point to source locations.
│ │ │ https://github.com/babel/babel/tree/master/packages/babel-code-frame
│ │ │ https://babeljs.io/
│ │ ├─┬ babel-generator@6.26.1
│ │ │ │ Turns an AST into code.
│ │ │ │ https://github.com/babel/babel/tree/master/packages/babel-generator
│ │ │ │ https://babeljs.io/
│ │ │ ├── babel-messages@6.23.0 deduped
│ │ │ │ Collection of debug messages used by Babel.
│ │ │ │ https://github.com/babel/babel/tree/master/packages/babel-messages
│ │ │ │ https://babeljs.io/
│ │ │ ├── babel-runtime@6.26.0 deduped
│ │ │ │ babel selfContained runtime
│ │ │ │ https://github.com/babel/babel/tree/master/packages/babel-runtime
│ │ │ ├── babel-types@6.26.0 deduped
│ │ │ │ Babel Types is a Lodash-esque utility library for AST nodes
│ │ │ │ https://github.com/babel/babel/tree/master/packages/babel-types
│ │ │ │ https://babeljs.io/
│ │ │ ├─┬ detect-indent@4.0.0
│ │ │ │ │ Detect the indentation of code
│ │ │ │ │ git+https://github.com/sindresorhus/detect-indent.git
│ │ │ │ │ https://github.com/sindresorhus/detect-indent#readme
│ │ │ │ └─┬ repeating@2.0.1
│ │ │ │ │ Repeat a string - fast
│ │ │ │ │ git+https://github.com/sindresorhus/repeating.git
│ │ │ │ │ https://github.com/sindresorhus/repeating#readme
│ │ │ │ └─┬ is-finite@1.0.2
│ │ │ │ │ ES2015 Number.isFinite() ponyfill
│ │ │ │ │ git+https://github.com/sindresorhus/is-finite.git
│ │ │ │ │ https://github.com/sindresorhus/is-finite#readme
│ │ │ │ └── number-is-nan@1.0.1
│ │ │ │ ES2015 Number.isNaN() ponyfill
│ │ │ │ git+https://github.com/sindresorhus/number-is-nan.git
│ │ │ │ https://github.com/sindresorhus/number-is-nan#readme
│ │ │ ├── jsesc@1.3.0
│ │ │ │ A JavaScript library for escaping JavaScript strings while generating the shortest possible valid output.
│ │ │ │ git+https://github.com/mathiasbynens/jsesc.git
│ │ │ │ https://mths.be/jsesc
│ │ │ ├── lodash@4.17.11 deduped
│ │ │ │ Lodash modular utilities.
│ │ │ │ git+https://github.com/lodash/lodash.git
│ │ │ │ https://lodash.com/
│ │ │ ├── source-map@0.5.7 deduped
│ │ │ │ Generates and consumes source maps
│ │ │ │ git+ssh://git@github.com/mozilla/source-map.git
│ │ │ │ https://github.com/mozilla/source-map
│ │ │ └── trim-right@1.0.1
│ │ │ Similar to String#trim() but removes only whitespace on the right
│ │ │ git+https://github.com/sindresorhus/trim-right.git
│ │ │ https://github.com/sindresorhus/trim-right#readme
│ │ ├─┬ babel-helpers@6.24.1
│ │ │ │ Collection of helper functions used by Babel transforms.
│ │ │ │ https://github.com/babel/babel/tree/master/packages/babel-helpers
│ │ │ │ https://babeljs.io/
│ │ │ ├── babel-runtime@6.26.0 deduped
│ │ │ │ babel selfContained runtime
│ │ │ │ https://github.com/babel/babel/tree/master/packages/babel-runtime
│ │ │ └── babel-template@6.26.0 deduped
│ │ │ Generate an AST from a string template.
│ │ │ https://github.com/babel/babel/tree/master/packages/babel-template
│ │ │ https://babeljs.io/
│ │ ├─┬ babel-messages@6.23.0
│ │ │ │ Collection of debug messages used by Babel.
│ │ │ │ https://github.com/babel/babel/tree/master/packages/babel-messages
│ │ │ │ https://babeljs.io/
│ │ │ └── babel-runtime@6.26.0 deduped
│ │ │ babel selfContained runtime
│ │ │ https://github.com/babel/babel/tree/master/packages/babel-runtime
│ │ ├── babel-register@6.26.0 deduped
│ │ │ babel require hook
│ │ │ https://github.com/babel/babel/tree/master/packages/babel-register
│ │ ├── babel-runtime@6.26.0 deduped
│ │ │ babel selfContained runtime
│ │ │ https://github.com/babel/babel/tree/master/packages/babel-runtime
│ │ ├─┬ babel-template@6.26.0
│ │ │ │ Generate an AST from a string template.
│ │ │ │ https://github.com/babel/babel/tree/master/packages/babel-template
│ │ │ │ https://babeljs.io/
│ │ │ ├── babel-runtime@6.26.0 deduped
│ │ │ │ babel selfContained runtime
│ │ │ │ https://github.com/babel/babel/tree/master/packages/babel-runtime
│ │ │ ├── babel-traverse@6.26.0 deduped
│ │ │ │ The Babel Traverse module maintains the overall tree state, and is responsible for replacing, removing, and adding nodes
│ │ │ │ https://github.com/babel/babel/tree/master/packages/babel-traverse
│ │ │ │ https://babeljs.io/
│ │ │ ├── babel-types@6.26.0 deduped
│ │ │ │ Babel Types is a Lodash-esque utility library for AST nodes
│ │ │ │ https://github.com/babel/babel/tree/master/packages/babel-types
│ │ │ │ https://babeljs.io/
│ │ │ ├── babylon@6.18.0 deduped
│ │ │ │ A JavaScript parser
│ │ │ │ git+https://github.com/babel/babylon.git
│ │ │ │ https://babeljs.io/
│ │ │ └── lodash@4.17.11 deduped
│ │ │ Lodash modular utilities.
│ │ │ git+https://github.com/lodash/lodash.git
│ │ │ https://lodash.com/
│ │ ├─┬ babel-traverse@6.26.0
│ │ │ │ The Babel Traverse module maintains the overall tree state, and is responsible for replacing, removing, and adding nodes
│ │ │ │ https://github.com/babel/babel/tree/master/packages/babel-traverse
│ │ │ │ https://babeljs.io/
│ │ │ ├── babel-code-frame@6.26.0 deduped
│ │ │ │ Generate errors that contain a code frame that point to source locations.
│ │ │ │ https://github.com/babel/babel/tree/master/packages/babel-code-frame
│ │ │ │ https://babeljs.io/
│ │ │ ├── babel-messages@6.23.0 deduped
│ │ │ │ Collection of debug messages used by Babel.
│ │ │ │ https://github.com/babel/babel/tree/master/packages/babel-messages
│ │ │ │ https://babeljs.io/
│ │ │ ├── babel-runtime@6.26.0 deduped
│ │ │ │ babel selfContained runtime
│ │ │ │ https://github.com/babel/babel/tree/master/packages/babel-runtime
│ │ │ ├── babel-types@6.26.0 deduped
│ │ │ │ Babel Types is a Lodash-esque utility library for AST nodes
│ │ │ │ https://github.com/babel/babel/tree/master/packages/babel-types
│ │ │ │ https://babeljs.io/
│ │ │ ├── babylon@6.18.0 deduped
│ │ │ │ A JavaScript parser
│ │ │ │ git+https://github.com/babel/babylon.git
│ │ │ │ https://babeljs.io/
│ │ │ ├── debug@2.6.9 deduped
│ │ │ │ small debugging utility
│ │ │ │ git://github.com/visionmedia/debug.git
│ │ │ │ https://github.com/visionmedia/debug#readme
│ │ │ ├── globals@9.18.0
│ │ │ │ Global identifiers from different JavaScript environments
│ │ │ │ git+https://github.com/sindresorhus/globals.git
│ │ │ │ https://github.com/sindresorhus/globals#readme
│ │ │ ├── invariant@2.2.4 deduped
│ │ │ │ invariant
│ │ │ │ git+https://github.com/zertosh/invariant.git
│ │ │ │ https://github.com/zertosh/invariant#readme
│ │ │ └── lodash@4.17.11 deduped
│ │ │ Lodash modular utilities.
│ │ │ git+https://github.com/lodash/lodash.git
│ │ │ https://lodash.com/
│ │ ├─┬ babel-types@6.26.0
│ │ │ │ Babel Types is a Lodash-esque utility library for AST nodes
│ │ │ │ https://github.com/babel/babel/tree/master/packages/babel-types
│ │ │ │ https://babeljs.io/
│ │ │ ├── babel-runtime@6.26.0 deduped
│ │ │ │ babel selfContained runtime
│ │ │ │ https://github.com/babel/babel/tree/master/packages/babel-runtime
│ │ │ ├── esutils@2.0.2 deduped
│ │ │ │ utility box for ECMAScript language tools
│ │ │ │ git+ssh://git@github.com/estools/esutils.git
│ │ │ │ https://github.com/estools/esutils
│ │ │ ├── lodash@4.17.11 deduped
│ │ │ │ Lodash modular utilities.
│ │ │ │ git+https://github.com/lodash/lodash.git
│ │ │ │ https://lodash.com/
│ │ │ └── to-fast-properties@1.0.3
│ │ │ Force V8 to use fast properties for an object
│ │ │ git+https://github.com/sindresorhus/to-fast-properties.git
│ │ │ https://github.com/sindresorhus/to-fast-properties#readme
│ │ ├── babylon@6.18.0
│ │ │ A JavaScript parser
│ │ │ git+https://github.com/babel/babylon.git
│ │ │ https://babeljs.io/
│ │ ├── convert-source-map@1.6.0 deduped
│ │ │ Converts a source-map from/to different formats and allows adding/changing properties.
│ │ │ git://github.com/thlorenz/convert-source-map.git
│ │ │ https://github.com/thlorenz/convert-source-map
│ │ ├── debug@2.6.9 deduped
│ │ │ small debugging utility
│ │ │ git://github.com/visionmedia/debug.git
│ │ │ https://github.com/visionmedia/debug#readme
│ │ ├── json5@0.5.1
│ │ │ JSON for the ES5 era.
│ │ │ git+https://github.com/aseemk/json5.git
│ │ │ http://json5.org/
│ │ ├── lodash@4.17.11 deduped
│ │ │ Lodash modular utilities.
│ │ │ git+https://github.com/lodash/lodash.git
│ │ │ https://lodash.com/
│ │ ├── minimatch@3.0.4 deduped
│ │ │ a glob matcher in javascript
│ │ │ git://github.com/isaacs/minimatch.git
│ │ │ https://github.com/isaacs/minimatch#readme
│ │ ├── path-is-absolute@1.0.1 deduped
│ │ │ Node.js 0.12 path.isAbsolute() ponyfill
│ │ │ git+https://github.com/sindresorhus/path-is-absolute.git
│ │ │ https://github.com/sindresorhus/path-is-absolute#readme
│ │ ├── private@0.1.8
│ │ │ Utility for associating truly private state with any JavaScript object
│ │ │ git://github.com/benjamn/private.git
│ │ │ http://github.com/benjamn/private
│ │ ├── slash@1.0.0 deduped
│ │ │ Convert Windows backslash paths to slash paths
│ │ │ git+https://github.com/sindresorhus/slash.git
│ │ │ https://github.com/sindresorhus/slash#readme
│ │ └── source-map@0.5.7 deduped
│ │ Generates and consumes source maps
│ │ git+ssh://git@github.com/mozilla/source-map.git
│ │ https://github.com/mozilla/source-map
│ ├─┬ babel-polyfill@6.26.0
│ │ │ Provides polyfills necessary for a full ES2015+ environment
│ │ │ https://github.com/babel/babel/tree/master/packages/babel-polyfill
│ │ │ https://babeljs.io/
│ │ ├── babel-runtime@6.26.0 deduped
│ │ │ babel selfContained runtime
│ │ │ https://github.com/babel/babel/tree/master/packages/babel-runtime
│ │ ├── core-js@2.6.5
│ │ │ Standard library
│ │ │ git+https://github.com/zloirock/core-js.git
│ │ │ https://github.com/zloirock/core-js#readme
│ │ └── regenerator-runtime@0.10.5
│ │ Runtime for Regenerator-compiled generator and async functions.
│ │ https://github.com/facebook/regenerator/tree/master/packages/regenerator-runtime
│ ├─┬ babel-register@6.26.0
│ │ │ babel require hook
│ │ │ https://github.com/babel/babel/tree/master/packages/babel-register
│ │ ├── babel-core@6.26.3 deduped
│ │ │ Babel compiler core.
│ │ │ https://github.com/babel/babel/tree/master/packages/babel-core
│ │ │ https://babeljs.io/
│ │ ├── babel-runtime@6.26.0 deduped
│ │ │ babel selfContained runtime
│ │ │ https://github.com/babel/babel/tree/master/packages/babel-runtime
│ │ ├── core-js@2.6.5
│ │ │ Standard library
│ │ │ git+https://github.com/zloirock/core-js.git
│ │ │ https://github.com/zloirock/core-js#readme
│ │ ├─┬ home-or-tmp@2.0.0
│ │ │ │ Get the user home directory with fallback to the system temp directory
│ │ │ │ git+https://github.com/sindresorhus/home-or-tmp.git
│ │ │ │ https://github.com/sindresorhus/home-or-tmp#readme
│ │ │ ├── os-homedir@1.0.2
│ │ │ │ Node.js 4 `os.homedir()` ponyfill
│ │ │ │ git+https://github.com/sindresorhus/os-homedir.git
│ │ │ │ https://github.com/sindresorhus/os-homedir#readme
│ │ │ └── os-tmpdir@1.0.2
│ │ │ Node.js os.tmpdir() ponyfill
│ │ │ git+https://github.com/sindresorhus/os-tmpdir.git
│ │ │ https://github.com/sindresorhus/os-tmpdir#readme
│ │ ├── lodash@4.17.11 deduped
│ │ │ Lodash modular utilities.
│ │ │ git+https://github.com/lodash/lodash.git
│ │ │ https://lodash.com/
│ │ ├── mkdirp@0.5.1 deduped
│ │ │ Recursively mkdir, like `mkdir -p`
│ │ │ git+https://github.com/substack/node-mkdirp.git
│ │ │ https://github.com/substack/node-mkdirp#readme
│ │ └─┬ source-map-support@0.4.18
│ │ │ Fixes stack traces for files with source maps
│ │ │ git+https://github.com/evanw/node-source-map-support.git
│ │ │ https://github.com/evanw/node-source-map-support#readme
│ │ └── source-map@0.5.7 deduped
│ │ Generates and consumes source maps
│ │ git+ssh://git@github.com/mozilla/source-map.git
│ │ https://github.com/mozilla/source-map
│ ├─┬ babel-runtime@6.26.0
│ │ │ babel selfContained runtime
│ │ │ https://github.com/babel/babel/tree/master/packages/babel-runtime
│ │ ├── core-js@2.6.5
│ │ │ Standard library
│ │ │ git+https://github.com/zloirock/core-js.git
│ │ │ https://github.com/zloirock/core-js#readme
│ │ └── regenerator-runtime@0.11.1
│ │ Runtime for Regenerator-compiled generator and async functions.
│ │ https://github.com/facebook/regenerator/tree/master/packages/regenerator-runtime
│ ├─┬ chokidar@1.7.0
│ │ │ A neat wrapper around node.js fs.watch / fs.watchFile / fsevents.
│ │ │ git+https://github.com/paulmillr/chokidar.git
│ │ │ https://github.com/paulmillr/chokidar
│ │ ├─┬ anymatch@1.3.2
│ │ │ │ Matches strings against configurable strings, globs, regular expressions, and/or functions
│ │ │ │ git+https://github.com/es128/anymatch.git
│ │ │ │ https://github.com/es128/anymatch
│ │ │ ├── micromatch@2.3.11 deduped
│ │ │ │ Glob matching for javascript/node.js. A drop-in replacement and faster alternative to minimatch and multimatch.
│ │ │ │ git+https://github.com/jonschlinkert/micromatch.git
│ │ │ │ https://github.com/jonschlinkert/micromatch
│ │ │ └─┬ normalize-path@2.1.1
│ │ │ │ Normalize file path slashes to be unix-like forward slashes. Also condenses repeat slashes to a single slash and removes and trailing slashes unless disabled.
│ │ │ │ git+https://github.com/jonschlinkert/normalize-path.git
│ │ │ │ https://github.com/jonschlinkert/normalize-path
│ │ │ └── remove-trailing-separator@1.1.0
│ │ │ Removes separators from the end of the string.
│ │ │ git+https://github.com/darsain/remove-trailing-separator.git
│ │ │ https://github.com/darsain/remove-trailing-separator#readme
│ │ ├── async-each@1.0.1
│ │ │ No-bullshit, ultra-simple, 35-lines-of-code async parallel forEach / map function for JavaScript.
│ │ │ git://github.com/paulmillr/async-each.git
│ │ │ https://github.com/paulmillr/async-each/
│ │ ├─┬ fsevents@1.2.7
│ │ │ │ Native Access to Mac OS-X FSEvents
│ │ │ │ git+https://github.com/strongloop/fsevents.git
│ │ │ │ https://github.com/strongloop/fsevents
│ │ │ ├── nan@2.12.1
│ │ │ │ Native Abstractions for Node.js: C++ header for Node 0.8 -> 11 compatibility
│ │ │ │ git://github.com/nodejs/nan.git
│ │ │ │ https://github.com/nodejs/nan#readme
│ │ │ └─┬ node-pre-gyp@0.10.3
│ │ │ │ Node.js native addon binary install tool
│ │ │ │ git://github.com/mapbox/node-pre-gyp.git
│ │ │ │ https://github.com/mapbox/node-pre-gyp#readme
│ │ │ ├── detect-libc@1.0.3
│ │ │ │ Node.js module to detect the C standard library (libc) implementation family and version
│ │ │ │ git://github.com/lovell/detect-libc.git
│ │ │ │ https://github.com/lovell/detect-libc#readme
│ │ │ ├─┬ mkdirp@0.5.1
│ │ │ │ │ Recursively mkdir, like `mkdir -p`
│ │ │ │ │ git+https://github.com/substack/node-mkdirp.git
│ │ │ │ │ https://github.com/substack/node-mkdirp#readme
│ │ │ │ └── minimist@0.0.8
│ │ │ │ parse argument options
│ │ │ │ git://github.com/substack/minimist.git
│ │ │ │ https://github.com/substack/minimist
│ │ │ ├─┬ needle@2.2.4
│ │ │ │ │ The leanest and most handsome HTTP client in the Nodelands.
│ │ │ │ │ git+https://github.com/tomas/needle.git
│ │ │ │ │ https://github.com/tomas/needle#readme
│ │ │ │ ├─┬ debug@2.6.9
│ │ │ │ │ │ small debugging utility
│ │ │ │ │ │ git://github.com/visionmedia/debug.git
│ │ │ │ │ │ https://github.com/visionmedia/debug#readme
│ │ │ │ │ └── ms@2.0.0
│ │ │ │ │ Tiny milisecond conversion utility
│ │ │ │ │ git+https://github.com/zeit/ms.git
│ │ │ │ │ https://github.com/zeit/ms#readme
│ │ │ │ ├─┬ iconv-lite@0.4.24
│ │ │ │ │ │ Convert character encodings in pure javascript.
│ │ │ │ │ │ git://github.com/ashtuchkin/iconv-lite.git
│ │ │ │ │ │ https://github.com/ashtuchkin/iconv-lite
│ │ │ │ │ └── safer-buffer@2.1.2
│ │ │ │ │ Modern Buffer API polyfill without footguns
│ │ │ │ │ git+https://github.com/ChALkeR/safer-buffer.git
│ │ │ │ │ https://github.com/ChALkeR/safer-buffer#readme
│ │ │ │ └── sax@1.2.4
│ │ │ │ An evented streaming XML parser in JavaScript
│ │ │ │ git://github.com/isaacs/sax-js.git
│ │ │ │ https://github.com/isaacs/sax-js#readme
│ │ │ ├─┬ nopt@4.0.1
│ │ │ │ │ Option parsing for Node, supporting types, shorthands, etc. Used by npm.
│ │ │ │ │ git+https://github.com/npm/nopt.git
│ │ │ │ │ https://github.com/npm/nopt#readme
│ │ │ │ ├── abbrev@1.1.1
│ │ │ │ │ Like ruby's abbrev module, but in js
│ │ │ │ │ git+ssh://git@github.com/isaacs/abbrev-js.git
│ │ │ │ │ https://github.com/isaacs/abbrev-js#readme
│ │ │ │ └─┬ osenv@0.1.5
│ │ │ │ │ Look up environment settings specific to different operating systems
│ │ │ │ │ git+https://github.com/npm/osenv.git
│ │ │ │ │ https://github.com/npm/osenv#readme
│ │ │ │ ├── os-homedir@1.0.2
│ │ │ │ │ Node.js 4 `os.homedir()` ponyfill
│ │ │ │ │ git+https://github.com/sindresorhus/os-homedir.git
│ │ │ │ │ https://github.com/sindresorhus/os-homedir#readme
│ │ │ │ └── os-tmpdir@1.0.2
│ │ │ │ Node.js os.tmpdir() ponyfill
│ │ │ │ git+https://github.com/sindresorhus/os-tmpdir.git
│ │ │ │ https://github.com/sindresorhus/os-tmpdir#readme
│ │ │ ├─┬ npm-packlist@1.2.0
│ │ │ │ │ Get a list of the files to add from a folder into an npm package
│ │ │ │ │ git+https://github.com/npm/npm-packlist.git
│ │ │ │ │ https://www.npmjs.com/package/npm-packlist
│ │ │ │ ├─┬ ignore-walk@3.0.1
│ │ │ │ │ │ Nested/recursive `.gitignore`/`.npmignore` parsing and filtering.
│ │ │ │ │ │ git+https://github.com/isaacs/ignore-walk.git
│ │ │ │ │ │ https://github.com/isaacs/ignore-walk#readme
│ │ │ │ │ └─┬ minimatch@3.0.4
│ │ │ │ │ │ a glob matcher in javascript
│ │ │ │ │ │ git://github.com/isaacs/minimatch.git
│ │ │ │ │ │ https://github.com/isaacs/minimatch#readme
│ │ │ │ │ └─┬ brace-expansion@1.1.11
│ │ │ │ │ │ Brace expansion as known from sh/bash
│ │ │ │ │ │ git://github.com/juliangruber/brace-expansion.git
│ │ │ │ │ │ https://github.com/juliangruber/brace-expansion
│ │ │ │ │ ├── balanced-match@1.0.0
│ │ │ │ │ │ Match balanced character pairs, like "{" and "}"
│ │ │ │ │ │ git://github.com/juliangruber/balanced-match.git
│ │ │ │ │ │ https://github.com/juliangruber/balanced-match
│ │ │ │ │ └── concat-map@0.0.1
│ │ │ │ │ concatenative mapdashery
│ │ │ │ │ git://github.com/substack/node-concat-map.git
│ │ │ │ │ https://github.com/substack/node-concat-map#readme
│ │ │ │ └── npm-bundled@1.0.5
│ │ │ │ list things in node_modules that are bundledDependencies, or transitive dependencies thereof
│ │ │ │ git+https://github.com/npm/npm-bundled.git
│ │ │ │ https://github.com/npm/npm-bundled#readme
│ │ │ ├─┬ npmlog@4.1.2
│ │ │ │ │ logger for npm
│ │ │ │ │ git+https://github.com/npm/npmlog.git
│ │ │ │ │ https://github.com/npm/npmlog#readme
│ │ │ │ ├─┬ are-we-there-yet@1.1.5
│ │ │ │ │ │ Keep track of the overall completion of many disparate processes
│ │ │ │ │ │ git+https://github.com/iarna/are-we-there-yet.git
│ │ │ │ │ │ https://github.com/iarna/are-we-there-yet
│ │ │ │ │ ├── delegates@1.0.0
│ │ │ │ │ │ delegate methods and accessors to another property
│ │ │ │ │ │ git+https://github.com/visionmedia/node-delegates.git
│ │ │ │ │ │ https://github.com/visionmedia/node-delegates#readme
│ │ │ │ │ └─┬ readable-stream@2.3.6
│ │ │ │ │ │ Streams3, a user-land copy of the stream library from Node.js
│ │ │ │ │ │ git://github.com/nodejs/readable-stream.git
│ │ │ │ │ │ https://github.com/nodejs/readable-stream#readme
│ │ │ │ │ ├── core-util-is@1.0.2
│ │ │ │ │ │ The `util.is*` functions introduced in Node v0.12.
│ │ │ │ │ │ git://github.com/isaacs/core-util-is.git
│ │ │ │ │ │ https://github.com/isaacs/core-util-is#readme
│ │ │ │ │ ├── inherits@2.0.3 deduped
│ │ │ │ │ │ Browser-friendly inheritance fully compatible with standard node.js inherits()
│ │ │ │ │ │ git://github.com/isaacs/inherits.git
│ │ │ │ │ │ https://github.com/isaacs/inherits#readme
│ │ │ │ │ ├── isarray@1.0.0
│ │ │ │ │ │ Array#isArray for older browsers
│ │ │ │ │ │ git://github.com/juliangruber/isarray.git
│ │ │ │ │ │ https://github.com/juliangruber/isarray
│ │ │ │ │ ├── process-nextick-args@2.0.0
│ │ │ │ │ │ process.nextTick but always with args
│ │ │ │ │ │ git+https://github.com/calvinmetcalf/process-nextick-args.git
│ │ │ │ │ │ https://github.com/calvinmetcalf/process-nextick-args
│ │ │ │ │ ├── safe-buffer@5.1.2 deduped
│ │ │ │ │ │ Safer Node.js Buffer API
│ │ │ │ │ │ git://github.com/feross/safe-buffer.git
│ │ │ │ │ │ https://github.com/feross/safe-buffer
│ │ │ │ │ ├─┬ string_decoder@1.1.1
│ │ │ │ │ │ │ The string_decoder module from Node core
│ │ │ │ │ │ │ git://github.com/nodejs/string_decoder.git
│ │ │ │ │ │ │ https://github.com/nodejs/string_decoder
│ │ │ │ │ │ └── safe-buffer@5.1.2 deduped
│ │ │ │ │ │ Safer Node.js Buffer API
│ │ │ │ │ │ git://github.com/feross/safe-buffer.git
│ │ │ │ │ │ https://github.com/feross/safe-buffer
│ │ │ │ │ └── util-deprecate@1.0.2
│ │ │ │ │ The Node.js `util.deprecate()` function with browser support
│ │ │ │ │ git://github.com/TooTallNate/util-deprecate.git
│ │ │ │ │ https://github.com/TooTallNate/util-deprecate
│ │ │ │ ├── console-control-strings@1.1.0
│ │ │ │ │ A library of cross-platform tested terminal/console command strings for doing things like color and cursor positioning. This is a subset of both ansi and vt100. All control codes included work on both Windows & Unix-like OSes, except where noted.
│ │ │ │ │ git+https://github.com/iarna/console-control-strings.git
│ │ │ │ │ https://github.com/iarna/console-control-strings#readme
│ │ │ │ ├─┬ gauge@2.7.4
│ │ │ │ │ │ A terminal based horizontal guage
│ │ │ │ │ │ git+https://github.com/iarna/gauge.git
│ │ │ │ │ │ https://github.com/iarna/gauge
│ │ │ │ │ ├── aproba@1.2.0
│ │ │ │ │ │ A ridiculously light-weight argument validator (now browser friendly)
│ │ │ │ │ │ git+https://github.com/iarna/aproba.git
│ │ │ │ │ │ https://github.com/iarna/aproba
│ │ │ │ │ ├── console-control-strings@1.1.0 deduped
│ │ │ │ │ │ A library of cross-platform tested terminal/console command strings for doing things like color and cursor positioning. This is a subset of both ansi and vt100. All control codes included work on both Windows & Unix-like OSes, except where noted.
│ │ │ │ │ │ git+https://github.com/iarna/console-control-strings.git
│ │ │ │ │ │ https://github.com/iarna/console-control-strings#readme
│ │ │ │ │ ├── has-unicode@2.0.1
│ │ │ │ │ │ Try to guess if your terminal supports unicode
│ │ │ │ │ │ git+https://github.com/iarna/has-unicode.git
│ │ │ │ │ │ https://github.com/iarna/has-unicode
│ │ │ │ │ ├── object-assign@4.1.1
│ │ │ │ │ │ ES2015 `Object.assign()` ponyfill
│ │ │ │ │ │ git+https://github.com/sindresorhus/object-assign.git
│ │ │ │ │ │ https://github.com/sindresorhus/object-assign#readme
│ │ │ │ │ ├── signal-exit@3.0.2
│ │ │ │ │ │ when you want to fire an event no matter how a process exits.
│ │ │ │ │ │ git+https://github.com/tapjs/signal-exit.git
│ │ │ │ │ │ https://github.com/tapjs/signal-exit
│ │ │ │ │ ├─┬ string-width@1.0.2
│ │ │ │ │ │ │ Get the visual width of a string - the number of columns required to display it
│ │ │ │ │ │ │ git+https://github.com/sindresorhus/string-width.git
│ │ │ │ │ │ │ https://github.com/sindresorhus/string-width#readme
│ │ │ │ │ │ ├── code-point-at@1.1.0
│ │ │ │ │ │ │ ES2015 `String#codePointAt()` ponyfill
│ │ │ │ │ │ │ git+https://github.com/sindresorhus/code-point-at.git
│ │ │ │ │ │ │ https://github.com/sindresorhus/code-point-at#readme
│ │ │ │ │ │ ├─┬ is-fullwidth-code-point@1.0.0
│ │ │ │ │ │ │ │ Check if the character represented by a given Unicode code point is fullwidth
│ │ │ │ │ │ │ │ git+https://github.com/sindresorhus/is-fullwidth-code-point.git
│ │ │ │ │ │ │ │ https://github.com/sindresorhus/is-fullwidth-code-point#readme
│ │ │ │ │ │ │ └── number-is-nan@1.0.1
│ │ │ │ │ │ │ ES2015 Number.isNaN() ponyfill
│ │ │ │ │ │ │ git+https://github.com/sindresorhus/number-is-nan.git
│ │ │ │ │ │ │ https://github.com/sindresorhus/number-is-nan#readme
│ │ │ │ │ │ └── strip-ansi@3.0.1 deduped
│ │ │ │ │ │ Strip ANSI escape codes
│ │ │ │ │ │ git+https://github.com/chalk/strip-ansi.git
│ │ │ │ │ │ https://github.com/chalk/strip-ansi#readme
│ │ │ │ │ ├─┬ strip-ansi@3.0.1
│ │ │ │ │ │ │ Strip ANSI escape codes
│ │ │ │ │ │ │ git+https://github.com/chalk/strip-ansi.git
│ │ │ │ │ │ │ https://github.com/chalk/strip-ansi#readme
│ │ │ │ │ │ └── ansi-regex@2.1.1
│ │ │ │ │ │ Regular expression for matching ANSI escape codes
│ │ │ │ │ │ git+https://github.com/chalk/ansi-regex.git
│ │ │ │ │ │ https://github.com/chalk/ansi-regex#readme
│ │ │ │ │ └─┬ wide-align@1.1.3
│ │ │ │ │ │ A wide-character aware text alignment function for use on the console or with fixed width fonts.
│ │ │ │ │ │ git+https://github.com/iarna/wide-align.git
│ │ │ │ │ │ https://github.com/iarna/wide-align#readme
│ │ │ │ │ └── string-width@1.0.2 deduped
│ │ │ │ │ Get the visual width of a string - the number of columns required to display it
│ │ │ │ │ git+https://github.com/sindresorhus/string-width.git
│ │ │ │ │ https://github.com/sindresorhus/string-width#readme
│ │ │ │ └── set-blocking@2.0.0
│ │ │ │ set blocking stdio and stderr ensuring that terminal output does not truncate
│ │ │ │ git+https://github.com/yargs/set-blocking.git
│ │ │ │ https://github.com/yargs/set-blocking#readme
│ │ │ ├─┬ rc@1.2.8
│ │ │ │ │ hardwired configuration loader
│ │ │ │ │ git+https://github.com/dominictarr/rc.git
│ │ │ │ │ https://github.com/dominictarr/rc#readme
│ │ │ │ ├── deep-extend@0.6.0
│ │ │ │ │ Recursive object extending
│ │ │ │ │ git://github.com/unclechu/node-deep-extend.git
│ │ │ │ │ https://github.com/unclechu/node-deep-extend
│ │ │ │ ├── ini@1.3.5
│ │ │ │ │ An ini encoder/decoder for node
│ │ │ │ │ git://github.com/isaacs/ini.git
│ │ │ │ │ https://github.com/isaacs/ini#readme
│ │ │ │ ├── minimist@1.2.0
│ │ │ │ │ parse argument options
│ │ │ │ │ git://github.com/substack/minimist.git
│ │ │ │ │ https://github.com/substack/minimist
│ │ │ │ └── strip-json-comments@2.0.1
│ │ │ │ Strip comments from JSON. Lets you use comments in your JSON files!
│ │ │ │ git+https://github.com/sindresorhus/strip-json-comments.git
│ │ │ │ https://github.com/sindresorhus/strip-json-comments#readme
│ │ │ ├─┬ rimraf@2.6.3
│ │ │ │ │ A deep deletion module for node (like `rm -rf`)
│ │ │ │ │ git://github.com/isaacs/rimraf.git
│ │ │ │ │ https://github.com/isaacs/rimraf#readme
│ │ │ │ └─┬ glob@7.1.3
│ │ │ │ │ a little globber
│ │ │ │ │ git://github.com/isaacs/node-glob.git
│ │ │ │ │ https://github.com/isaacs/node-glob#readme
│ │ │ │ ├── fs.realpath@1.0.0
│ │ │ │ │ Use node's fs.realpath, but fall back to the JS implementation if the native one fails
│ │ │ │ │ git+https://github.com/isaacs/fs.realpath.git
│ │ │ │ │ https://github.com/isaacs/fs.realpath#readme
│ │ │ │ ├─┬ inflight@1.0.6
│ │ │ │ │ │ Add callbacks to requests in flight to avoid async duplication
│ │ │ │ │ │ git+https://github.com/npm/inflight.git
│ │ │ │ │ │ https://github.com/isaacs/inflight
│ │ │ │ │ ├── once@1.4.0 deduped
│ │ │ │ │ │ Run a function exactly one time
│ │ │ │ │ │ git://github.com/isaacs/once.git
│ │ │ │ │ │ https://github.com/isaacs/once#readme
│ │ │ │ │ └── wrappy@1.0.2
│ │ │ │ │ Callback wrapping utility
│ │ │ │ │ git+https://github.com/npm/wrappy.git
│ │ │ │ │ https://github.com/npm/wrappy
│ │ │ │ ├── inherits@2.0.3
│ │ │ │ │ Browser-friendly inheritance fully compatible with standard node.js inherits()
│ │ │ │ │ git://github.com/isaacs/inherits.git
│ │ │ │ │ https://github.com/isaacs/inherits#readme
│ │ │ │ ├── minimatch@3.0.4 deduped
│ │ │ │ │ a glob matcher in javascript
│ │ │ │ │ git://github.com/isaacs/minimatch.git
│ │ │ │ │ https://github.com/isaacs/minimatch#readme
│ │ │ │ ├─┬ once@1.4.0
│ │ │ │ │ │ Run a function exactly one time
│ │ │ │ │ │ git://github.com/isaacs/once.git
│ │ │ │ │ │ https://github.com/isaacs/once#readme
│ │ │ │ │ └── wrappy@1.0.2 deduped
│ │ │ │ │ Callback wrapping utility
│ │ │ │ │ git+https://github.com/npm/wrappy.git
│ │ │ │ │ https://github.com/npm/wrappy
│ │ │ │ └── path-is-absolute@1.0.1
│ │ │ │ Node.js 0.12 path.isAbsolute() ponyfill
│ │ │ │ git+https://github.com/sindresorhus/path-is-absolute.git
│ │ │ │ https://github.com/sindresorhus/path-is-absolute#readme
│ │ │ ├── semver@5.6.0
│ │ │ │ The semantic version parser used by npm.
│ │ │ │ git+https://github.com/npm/node-semver.git
│ │ │ │ https://github.com/npm/node-semver#readme
│ │ │ └─┬ tar@4.4.8
│ │ │ │ tar for node
│ │ │ │ git+https://github.com/npm/node-tar.git
│ │ │ │ https://github.com/npm/node-tar#readme
│ │ │ ├── chownr@1.1.1
│ │ │ │ like `chown -R`
│ │ │ │ git://github.com/isaacs/chownr.git
│ │ │ │ https://github.com/isaacs/chownr#readme
│ │ │ ├─┬ fs-minipass@1.2.5
│ │ │ │ │ fs read and write streams based on minipass
│ │ │ │ │ git+https://github.com/npm/fs-minipass.git
│ │ │ │ │ https://github.com/npm/fs-minipass#readme
│ │ │ │ └── minipass@2.3.5 deduped
│ │ │ │ minimal implementation of a PassThrough stream
│ │ │ │ git+https://github.com/isaacs/minipass.git
│ │ │ │ https://github.com/isaacs/minipass#readme
│ │ │ ├─┬ minipass@2.3.5
│ │ │ │ │ minimal implementation of a PassThrough stream
│ │ │ │ │ git+https://github.com/isaacs/minipass.git
│ │ │ │ │ https://github.com/isaacs/minipass#readme
│ │ │ │ ├── safe-buffer@5.1.2 deduped
│ │ │ │ │ Safer Node.js Buffer API
│ │ │ │ │ git://github.com/feross/safe-buffer.git
│ │ │ │ │ https://github.com/feross/safe-buffer
│ │ │ │ └── yallist@3.0.3 deduped
│ │ │ │ Yet Another Linked List
│ │ │ │ git+https://github.com/isaacs/yallist.git
│ │ │ │ https://github.com/isaacs/yallist#readme
│ │ │ ├─┬ minizlib@1.2.1
│ │ │ │ │ A small fast zlib stream built on [minipass](http://npm.im/minipass) and Node.js's zlib binding.
│ │ │ │ │ git+https://github.com/isaacs/minizlib.git
│ │ │ │ │ https://github.com/isaacs/minizlib#readme
│ │ │ │ └── minipass@2.3.5 deduped
│ │ │ │ minimal implementation of a PassThrough stream
│ │ │ │ git+https://github.com/isaacs/minipass.git
│ │ │ │ https://github.com/isaacs/minipass#readme
│ │ │ ├── mkdirp@0.5.1 deduped
│ │ │ │ Recursively mkdir, like `mkdir -p`
│ │ │ │ git+https://github.com/substack/node-mkdirp.git
│ │ │ │ https://github.com/substack/node-mkdirp#readme
│ │ │ ├── safe-buffer@5.1.2
│ │ │ │ Safer Node.js Buffer API
│ │ │ │ git://github.com/feross/safe-buffer.git
│ │ │ │ https://github.com/feross/safe-buffer
│ │ │ └── yallist@3.0.3
│ │ │ Yet Another Linked List
│ │ │ git+https://github.com/isaacs/yallist.git
│ │ │ https://github.com/isaacs/yallist#readme
│ │ ├─┬ glob-parent@2.0.0
│ │ │ │ Strips glob magic from a string to provide the parent path
│ │ │ │ git+https://github.com/es128/glob-parent.git
│ │ │ │ https://github.com/es128/glob-parent
│ │ │ └── is-glob@2.0.1 deduped
│ │ │ Returns `true` if the given string looks like a glob pattern or an extglob pattern. This makes it easy to create code that only uses external modules like node-glob when necessary, resulting in much faster code execution and initialization time, and a better user experience.
│ │ │ git+https://github.com/jonschlinkert/is-glob.git
│ │ │ https://github.com/jonschlinkert/is-glob
│ │ ├── inherits@2.0.3
│ │ │ Browser-friendly inheritance fully compatible with standard node.js inherits()
│ │ │ git://github.com/isaacs/inherits.git
│ │ │ https://github.com/isaacs/inherits#readme
│ │ ├─┬ is-binary-path@1.0.1
│ │ │ │ Check if a filepath is a binary file
│ │ │ │ git+https://github.com/sindresorhus/is-binary-path.git
│ │ │ │ https://github.com/sindresorhus/is-binary-path#readme
│ │ │ └── binary-extensions@1.13.0
│ │ │ List of binary file extensions
│ │ │ git+https://github.com/sindresorhus/binary-extensions.git
│ │ │ https://github.com/sindresorhus/binary-extensions#readme
│ │ ├─┬ is-glob@2.0.1
│ │ │ │ Returns `true` if the given string looks like a glob pattern or an extglob pattern. This makes it easy to create code that only uses external modules like node-glob when necessary, resulting in much faster code execution and initialization time, and a better user experience.
│ │ │ │ git+https://github.com/jonschlinkert/is-glob.git
│ │ │ │ https://github.com/jonschlinkert/is-glob
│ │ │ └── is-extglob@1.0.0
│ │ │ Returns true if a string has an extglob.
│ │ │ git+https://github.com/jonschlinkert/is-extglob.git
│ │ │ https://github.com/jonschlinkert/is-extglob
│ │ ├── path-is-absolute@1.0.1 deduped
│ │ │ Node.js 0.12 path.isAbsolute() ponyfill
│ │ │ git+https://github.com/sindresorhus/path-is-absolute.git
│ │ │ https://github.com/sindresorhus/path-is-absolute#readme
│ │ └─┬ readdirp@2.2.1
│ │ │ Recursive version of fs.readdir with streaming api.
│ │ │ git://github.com/paulmillr/readdirp.git
│ │ │ https://github.com/paulmillr/readdirp
│ │ ├── graceful-fs@4.1.15 deduped
│ │ │ A drop-in replacement for fs, making various improvements.
│ │ │ git+https://github.com/isaacs/node-graceful-fs.git
│ │ │ https://github.com/isaacs/node-graceful-fs#readme
│ │ ├─┬ micromatch@3.1.10
│ │ │ │ Glob matching for javascript/node.js. A drop-in replacement and faster alternative to minimatch and multimatch.
│ │ │ │ git+https://github.com/micromatch/micromatch.git
│ │ │ │ https://github.com/micromatch/micromatch
│ │ │ ├── arr-diff@4.0.0
│ │ │ │ Returns an array with only the unique values from the first array, by excluding all values from additional arrays using strict equality for comparisons.
│ │ │ │ git+https://github.com/jonschlinkert/arr-diff.git
│ │ │ │ https://github.com/jonschlinkert/arr-diff
│ │ │ ├── array-unique@0.3.2
│ │ │ │ Remove duplicate values from an array. Fastest ES5 implementation.
│ │ │ │ git+https://github.com/jonschlinkert/array-unique.git
│ │ │ │ https://github.com/jonschlinkert/array-unique
│ │ │ ├─┬ braces@2.3.2
│ │ │ │ │ Bash-like brace expansion, implemented in JavaScript. Safer than other brace expansion libs, with complete support for the Bash 4.3 braces specification, without sacrificing speed.
│ │ │ │ │ git+https://github.com/micromatch/braces.git
│ │ │ │ │ https://github.com/micromatch/braces
│ │ │ │ ├── arr-flatten@1.1.0 deduped
│ │ │ │ │ Recursively flatten an array or arrays.
│ │ │ │ │ git+https://github.com/jonschlinkert/arr-flatten.git
│ │ │ │ │ https://github.com/jonschlinkert/arr-flatten
│ │ │ │ ├── array-unique@0.3.2 deduped
│ │ │ │ │ Remove duplicate values from an array. Fastest ES5 implementation.
│ │ │ │ │ git+https://github.com/jonschlinkert/array-unique.git
│ │ │ │ │ https://github.com/jonschlinkert/array-unique
│ │ │ │ ├─┬ extend-shallow@2.0.1
│ │ │ │ │ │ Extend an object with the properties of additional objects. node.js/javascript util.
│ │ │ │ │ │ git+https://github.com/jonschlinkert/extend-shallow.git
│ │ │ │ │ │ https://github.com/jonschlinkert/extend-shallow
│ │ │ │ │ └── is-extendable@0.1.1 deduped
│ │ │ │ │ Returns true if a value is any of the object types: array, regexp, plain object, function or date. This is useful for determining if a value can be extended, e.g. "can the value have keys?"
│ │ │ │ │ git+https://github.com/jonschlinkert/is-extendable.git
│ │ │ │ │ https://github.com/jonschlinkert/is-extendable
│ │ │ │ ├─┬ fill-range@4.0.0
│ │ │ │ │ │ Fill in a range of numbers or letters, optionally passing an increment or `step` to use, or create a regex-compatible range with `options.toRegex`
│ │ │ │ │ │ git+https://github.com/jonschlinkert/fill-range.git
│ │ │ │ │ │ https://github.com/jonschlinkert/fill-range
│ │ │ │ │ ├─┬ extend-shallow@2.0.1
│ │ │ │ │ │ │ Extend an object with the properties of additional objects. node.js/javascript util.
│ │ │ │ │ │ │ git+https://github.com/jonschlinkert/extend-shallow.git
│ │ │ │ │ │ │ https://github.com/jonschlinkert/extend-shallow
│ │ │ │ │ │ └── is-extendable@0.1.1 deduped
│ │ │ │ │ │ Returns true if a value is any of the object types: array, regexp, plain object, function or date. This is useful for determining if a value can be extended, e.g. "can the value have keys?"
│ │ │ │ │ │ git+https://github.com/jonschlinkert/is-extendable.git
│ │ │ │ │ │ https://github.com/jonschlinkert/is-extendable
│ │ │ │ │ ├─┬ is-number@3.0.0
│ │ │ │ │ │ │ Returns true if the value is a number. comprehensive tests.
│ │ │ │ │ │ │ git+https://github.com/jonschlinkert/is-number.git
│ │ │ │ │ │ │ https://github.com/jonschlinkert/is-number
│ │ │ │ │ │ └─┬ kind-of@3.2.2
│ │ │ │ │ │ │ Get the native type of a value.
│ │ │ │ │ │ │ git+https://github.com/jonschlinkert/kind-of.git
│ │ │ │ │ │ │ https://github.com/jonschlinkert/kind-of
│ │ │ │ │ │ └── is-buffer@1.1.6 deduped
│ │ │ │ │ │ Determine if an object is a Buffer
│ │ │ │ │ │ git://github.com/feross/is-buffer.git
│ │ │ │ │ │ https://github.com/feross/is-buffer#readme
│ │ │ │ │ ├── repeat-string@1.6.1 deduped
│ │ │ │ │ │ Repeat the given string n times. Fastest implementation for repeating a string.
│ │ │ │ │ │ git+https://github.com/jonschlinkert/repeat-string.git
│ │ │ │ │ │ https://github.com/jonschlinkert/repeat-string
│ │ │ │ │ └── to-regex-range@2.1.1 deduped
│ │ │ │ │ Pass two numbers, get a regex-compatible source string for matching ranges. Validated against more than 2.78 million test assertions.
│ │ │ │ │ git+https://github.com/micromatch/to-regex-range.git
│ │ │ │ │ https://github.com/micromatch/to-regex-range
│ │ │ │ ├── isobject@3.0.1
│ │ │ │ │ Returns true if the value is an object and not an array or null.
│ │ │ │ │ git+https://github.com/jonschlinkert/isobject.git
│ │ │ │ │ https://github.com/jonschlinkert/isobject
│ │ │ │ ├── repeat-element@1.1.3 deduped
│ │ │ │ │ Create an array by repeating the given value n times.
│ │ │ │ │ git+https://github.com/jonschlinkert/repeat-element.git
│ │ │ │ │ https://github.com/jonschlinkert/repeat-element
│ │ │ │ ├── snapdragon@0.8.2 deduped
│ │ │ │ │ Fast, pluggable and easy-to-use parser-renderer factory.
│ │ │ │ │ git+https://github.com/jonschlinkert/snapdragon.git
│ │ │ │ │ https://github.com/jonschlinkert/snapdragon
│ │ │ │ ├── snapdragon-node@2.1.1 deduped
│ │ │ │ │ Snapdragon utility for creating a new AST node in custom code, such as plugins.
│ │ │ │ │ git+https://github.com/jonschlinkert/snapdragon-node.git
│ │ │ │ │ https://github.com/jonschlinkert/snapdragon-node
│ │ │ │ ├── split-string@3.1.0 deduped
│ │ │ │ │ Split a string on a character except when the character is escaped.
│ │ │ │ │ git+https://github.com/jonschlinkert/split-string.git
│ │ │ │ │ https://github.com/jonschlinkert/split-string
│ │ │ │ └── to-regex@3.0.2 deduped
│ │ │ │ Generate a regex from a string or array of strings.
│ │ │ │ git+https://github.com/jonschlinkert/to-regex.git
│ │ │ │ https://github.com/jonschlinkert/to-regex
│ │ │ ├─┬ define-property@2.0.2
│ │ │ │ │ Define a non-enumerable property on an object. Uses Reflect.defineProperty when available, otherwise Object.defineProperty.
│ │ │ │ │ git+https://github.com/jonschlinkert/define-property.git
│ │ │ │ │ https://github.com/jonschlinkert/define-property
│ │ │ │ ├─┬ is-descriptor@1.0.2
│ │ │ │ │ │ Returns true if a value has the characteristics of a valid JavaScript descriptor. Works for data descriptors and accessor descriptors.
│ │ │ │ │ │ git+https://github.com/jonschlinkert/is-descriptor.git
│ │ │ │ │ │ https://github.com/jonschlinkert/is-descriptor
│ │ │ │ │ ├─┬ is-accessor-descriptor@1.0.0
│ │ │ │ │ │ │ Returns true if a value has the characteristics of a valid JavaScript accessor descriptor.
│ │ │ │ │ │ │ git+https://github.com/jonschlinkert/is-accessor-descriptor.git
│ │ │ │ │ │ │ https://github.com/jonschlinkert/is-accessor-descriptor
│ │ │ │ │ │ └── kind-of@6.0.2 deduped
│ │ │ │ │ │ Get the native type of a value.
│ │ │ │ │ │ git+https://github.com/jonschlinkert/kind-of.git
│ │ │ │ │ │ https://github.com/jonschlinkert/kind-of
│ │ │ │ │ ├─┬ is-data-descriptor@1.0.0
│ │ │ │ │ │ │ Returns true if a value has the characteristics of a valid JavaScript data descriptor.
│ │ │ │ │ │ │ git+https://github.com/jonschlinkert/is-data-descriptor.git
│ │ │ │ │ │ │ https://github.com/jonschlinkert/is-data-descriptor
│ │ │ │ │ │ └── kind-of@6.0.2 deduped
│ │ │ │ │ │ Get the native type of a value.
│ │ │ │ │ │ git+https://github.com/jonschlinkert/kind-of.git
│ │ │ │ │ │ https://github.com/jonschlinkert/kind-of
│ │ │ │ │ └── kind-of@6.0.2
│ │ │ │ │ Get the native type of a value.
│ │ │ │ │ git+https://github.com/jonschlinkert/kind-of.git
│ │ │ │ │ https://github.com/jonschlinkert/kind-of
│ │ │ │ └── isobject@3.0.1
│ │ │ │ Returns true if the value is an object and not an array or null.
│ │ │ │ git+https://github.com/jonschlinkert/isobject.git
│ │ │ │ https://github.com/jonschlinkert/isobject
│ │ │ ├─┬ extend-shallow@3.0.2
│ │ │ │ │ Extend an object with the properties of additional objects. node.js/javascript util.
│ │ │ │ │ git+https://github.com/jonschlinkert/extend-shallow.git
│ │ │ │ │ https://github.com/jonschlinkert/extend-shallow
│ │ │ │ ├── assign-symbols@1.0.0
│ │ │ │ │ Assign the enumerable es6 Symbol properties from an object (or objects) to the first object passed on the arguments. Can be used as a supplement to other extend, assign or merge methods as a polyfill for the Symbols part of the es6 Object.assign method.
│ │ │ │ │ git+https://github.com/jonschlinkert/assign-symbols.git
│ │ │ │ │ https://github.com/jonschlinkert/assign-symbols
│ │ │ │ └─┬ is-extendable@1.0.1
│ │ │ │ │ Returns true if a value is a plain object, array or function.
│ │ │ │ │ git+https://github.com/jonschlinkert/is-extendable.git
│ │ │ │ │ https://github.com/jonschlinkert/is-extendable
│ │ │ │ └─┬ is-plain-object@2.0.4
│ │ │ │ │ Returns true if an object was created by the `Object` constructor.
│ │ │ │ │ git+https://github.com/jonschlinkert/is-plain-object.git
│ │ │ │ │ https://github.com/jonschlinkert/is-plain-object
│ │ │ │ └── isobject@3.0.1
│ │ │ │ Returns true if the value is an object and not an array or null.
│ │ │ │ git+https://github.com/jonschlinkert/isobject.git
│ │ │ │ https://github.com/jonschlinkert/isobject
│ │ │ ├─┬ extglob@2.0.4
│ │ │ │ │ Extended glob support for JavaScript. Adds (almost) the expressive power of regular expressions to glob patterns.
│ │ │ │ │ git+https://github.com/micromatch/extglob.git
│ │ │ │ │ https://github.com/micromatch/extglob
│ │ │ │ ├── array-unique@0.3.2 deduped
│ │ │ │ │ Remove duplicate values from an array. Fastest ES5 implementation.
│ │ │ │ │ git+https://github.com/jonschlinkert/array-unique.git
│ │ │ │ │ https://github.com/jonschlinkert/array-unique
│ │ │ │ ├─┬ define-property@1.0.0
│ │ │ │ │ │ Define a non-enumerable property on an object.
│ │ │ │ │ │ git+https://github.com/jonschlinkert/define-property.git
│ │ │ │ │ │ https://github.com/jonschlinkert/define-property
│ │ │ │ │ └─┬ is-descriptor@1.0.2
│ │ │ │ │ │ Returns true if a value has the characteristics of a valid JavaScript descriptor. Works for data descriptors and accessor descriptors.
│ │ │ │ │ │ git+https://github.com/jonschlinkert/is-descriptor.git
│ │ │ │ │ │ https://github.com/jonschlinkert/is-descriptor
│ │ │ │ │ ├─┬ is-accessor-descriptor@1.0.0
│ │ │ │ │ │ │ Returns true if a value has the characteristics of a valid JavaScript accessor descriptor.
│ │ │ │ │ │ │ git+https://github.com/jonschlinkert/is-accessor-descriptor.git
│ │ │ │ │ │ │ https://github.com/jonschlinkert/is-accessor-descriptor
│ │ │ │ │ │ └── kind-of@6.0.2 deduped
│ │ │ │ │ │ Get the native type of a value.
│ │ │ │ │ │ git+https://github.com/jonschlinkert/kind-of.git
│ │ │ │ │ │ https://github.com/jonschlinkert/kind-of
│ │ │ │ │ ├─┬ is-data-descriptor@1.0.0
│ │ │ │ │ │ │ Returns true if a value has the characteristics of a valid JavaScript data descriptor.
│ │ │ │ │ │ │ git+https://github.com/jonschlinkert/is-data-descriptor.git
│ │ │ │ │ │ │ https://github.com/jonschlinkert/is-data-descriptor
│ │ │ │ │ │ └── kind-of@6.0.2 deduped
│ │ │ │ │ │ Get the native type of a value.
│ │ │ │ │ │ git+https://github.com/jonschlinkert/kind-of.git
│ │ │ │ │ │ https://github.com/jonschlinkert/kind-of
│ │ │ │ │ └── kind-of@6.0.2 deduped
│ │ │ │ │ Get the native type of a value.
│ │ │ │ │ git+https://github.com/jonschlinkert/kind-of.git
│ │ │ │ │ https://github.com/jonschlinkert/kind-of
│ │ │ │ ├─┬ expand-brackets@2.1.4
│ │ │ │ │ │ Expand POSIX bracket expressions (character classes) in glob patterns.
│ │ │ │ │ │ git+https://github.com/jonschlinkert/expand-brackets.git
│ │ │ │ │ │ https://github.com/jonschlinkert/expand-brackets
│ │ │ │ │ ├── debug@2.6.9 deduped
│ │ │ │ │ │ small debugging utility
│ │ │ │ │ │ git://github.com/visionmedia/debug.git
│ │ │ │ │ │ https://github.com/visionmedia/debug#readme
│ │ │ │ │ ├─┬ define-property@0.2.5
│ │ │ │ │ │ │ Define a non-enumerable property on an object.
│ │ │ │ │ │ │ git+https://github.com/jonschlinkert/define-property.git
│ │ │ │ │ │ │ https://github.com/jonschlinkert/define-property
│ │ │ │ │ │ └─┬ is-descriptor@0.1.6
│ │ │ │ │ │ │ Returns true if a value has the characteristics of a valid JavaScript descriptor. Works for data descriptors and accessor descriptors.
│ │ │ │ │ │ │ git+https://github.com/jonschlinkert/is-descriptor.git
│ │ │ │ │ │ │ https://github.com/jonschlinkert/is-descriptor
│ │ │ │ │ │ ├─┬ is-accessor-descriptor@0.1.6
│ │ │ │ │ │ │ │ Returns true if a value has the characteristics of a valid JavaScript accessor descriptor.
│ │ │ │ │ │ │ │ git+https://github.com/jonschlinkert/is-accessor-descriptor.git
│ │ │ │ │ │ │ │ https://github.com/jonschlinkert/is-accessor-descriptor
│ │ │ │ │ │ │ └─┬ kind-of@3.2.2
│ │ │ │ │ │ │ │ Get the native type of a value.
│ │ │ │ │ │ │ │ git+https://github.com/jonschlinkert/kind-of.git
│ │ │ │ │ │ │ │ https://github.com/jonschlinkert/kind-of
│ │ │ │ │ │ │ └── is-buffer@1.1.6 deduped
│ │ │ │ │ │ │ Determine if an object is a Buffer
│ │ │ │ │ │ │ git://github.com/feross/is-buffer.git
│ │ │ │ │ │ │ https://github.com/feross/is-buffer#readme
│ │ │ │ │ │ ├─┬ is-data-descriptor@0.1.4
│ │ │ │ │ │ │ │ Returns true if a value has the characteristics of a valid JavaScript data descriptor.
│ │ │ │ │ │ │ │ git+https://github.com/jonschlinkert/is-data-descriptor.git
│ │ │ │ │ │ │ │ https://github.com/jonschlinkert/is-data-descriptor
│ │ │ │ │ │ │ └─┬ kind-of@3.2.2
│ │ │ │ │ │ │ │ Get the native type of a value.
│ │ │ │ │ │ │ │ git+https://github.com/jonschlinkert/kind-of.git
│ │ │ │ │ │ │ │ https://github.com/jonschlinkert/kind-of
│ │ │ │ │ │ │ └── is-buffer@1.1.6 deduped
│ │ │ │ │ │ │ Determine if an object is a Buffer
│ │ │ │ │ │ │ git://github.com/feross/is-buffer.git
│ │ │ │ │ │ │ https://github.com/feross/is-buffer#readme
│ │ │ │ │ │ └── kind-of@5.1.0
│ │ │ │ │ │ Get the native type of a value.
│ │ │ │ │ │ git+https://github.com/jonschlinkert/kind-of.git
│ │ │ │ │ │ https://github.com/jonschlinkert/kind-of
│ │ │ │ │ ├─┬ extend-shallow@2.0.1
│ │ │ │ │ │ │ Extend an object with the properties of additional objects. node.js/javascript util.
│ │ │ │ │ │ │ git+https://github.com/jonschlinkert/extend-shallow.git
│ │ │ │ │ │ │ https://github.com/jonschlinkert/extend-shallow
│ │ │ │ │ │ └── is-extendable@0.1.1 deduped
│ │ │ │ │ │ Returns true if a value is any of the object types: array, regexp, plain object, function or date. This is useful for determining if a value can be extended, e.g. "can the value have keys?"
│ │ │ │ │ │ git+https://github.com/jonschlinkert/is-extendable.git
│ │ │ │ │ │ https://github.com/jonschlinkert/is-extendable
│ │ │ │ │ ├── posix-character-classes@0.1.1
│ │ │ │ │ │ POSIX character classes for creating regular expressions.
│ │ │ │ │ │ git+https://github.com/jonschlinkert/posix-character-classes.git
│ │ │ │ │ │ https://github.com/jonschlinkert/posix-character-classes
│ │ │ │ │ ├── regex-not@1.0.2 deduped
│ │ │ │ │ │ Create a javascript regular expression for matching everything except for the given string.
│ │ │ │ │ │ git+https://github.com/jonschlinkert/regex-not.git
│ │ │ │ │ │ https://github.com/jonschlinkert/regex-not
│ │ │ │ │ ├── snapdragon@0.8.2 deduped
│ │ │ │ │ │ Fast, pluggable and easy-to-use parser-renderer factory.
│ │ │ │ │ │ git+https://github.com/jonschlinkert/snapdragon.git
│ │ │ │ │ │ https://github.com/jonschlinkert/snapdragon
│ │ │ │ │ └── to-regex@3.0.2 deduped
│ │ │ │ │ Generate a regex from a string or array of strings.
│ │ │ │ │ git+https://github.com/jonschlinkert/to-regex.git
│ │ │ │ │ https://github.com/jonschlinkert/to-regex
│ │ │ │ ├─┬ extend-shallow@2.0.1
│ │ │ │ │ │ Extend an object with the properties of additional objects. node.js/javascript util.
│ │ │ │ │ │ git+https://github.com/jonschlinkert/extend-shallow.git
│ │ │ │ │ │ https://github.com/jonschlinkert/extend-shallow
│ │ │ │ │ └── is-extendable@0.1.1 deduped
│ │ │ │ │ Returns true if a value is any of the object types: array, regexp, plain object, function or date. This is useful for determining if a value can be extended, e.g. "can the value have keys?"
│ │ │ │ │ git+https://github.com/jonschlinkert/is-extendable.git
│ │ │ │ │ https://github.com/jonschlinkert/is-extendable
│ │ │ │ ├── fragment-cache@0.2.1 deduped
│ │ │ │ │ A cache for managing namespaced sub-caches
│ │ │ │ │ git+https://github.com/jonschlinkert/fragment-cache.git
│ │ │ │ │ https://github.com/jonschlinkert/fragment-cache
│ │ │ │ ├── regex-not@1.0.2 deduped
│ │ │ │ │ Create a javascript regular expression for matching everything except for the given string.
│ │ │ │ │ git+https://github.com/jonschlinkert/regex-not.git
│ │ │ │ │ https://github.com/jonschlinkert/regex-not
│ │ │ │ ├── snapdragon@0.8.2 deduped
│ │ │ │ │ Fast, pluggable and easy-to-use parser-renderer factory.
│ │ │ │ │ git+https://github.com/jonschlinkert/snapdragon.git
│ │ │ │ │ https://github.com/jonschlinkert/snapdragon
│ │ │ │ └── to-regex@3.0.2 deduped
│ │ │ │ Generate a regex from a string or array of strings.
│ │ │ │ git+https://github.com/jonschlinkert/to-regex.git
│ │ │ │ https://github.com/jonschlinkert/to-regex
│ │ │ ├─┬ fragment-cache@0.2.1
│ │ │ │ │ A cache for managing namespaced sub-caches
│ │ │ │ │ git+https://github.com/jonschlinkert/fragment-cache.git
│ │ │ │ │ https://github.com/jonschlinkert/fragment-cache
│ │ │ │ └── map-cache@0.2.2 deduped
│ │ │ │ Basic cache object for storing key-value pairs.
│ │ │ │ git+https://github.com/jonschlinkert/map-cache.git
│ │ │ │ https://github.com/jonschlinkert/map-cache
│ │ │ ├── kind-of@6.0.2
│ │ │ │ Get the native type of a value.
│ │ │ │ git+https://github.com/jonschlinkert/kind-of.git
│ │ │ │ https://github.com/jonschlinkert/kind-of
│ │ │ ├─┬ nanomatch@1.2.13
│ │ │ │ │ Fast, minimal glob matcher for node.js. Similar to micromatch, minimatch and multimatch, but complete Bash 4.3 wildcard support only (no support for exglobs, posix brackets or braces)
│ │ │ │ │ git+https://github.com/micromatch/nanomatch.git
│ │ │ │ │ https://github.com/micromatch/nanomatch
│ │ │ │ ├── arr-diff@4.0.0
│ │ │ │ │ Returns an array with only the unique values from the first array, by excluding all values from additional arrays using strict equality for comparisons.
│ │ │ │ │ git+https://github.com/jonschlinkert/arr-diff.git
│ │ │ │ │ https://github.com/jonschlinkert/arr-diff
│ │ │ │ ├── array-unique@0.3.2
│ │ │ │ │ Remove duplicate values from an array. Fastest ES5 implementation.
│ │ │ │ │ git+https://github.com/jonschlinkert/array-unique.git
│ │ │ │ │ https://github.com/jonschlinkert/array-unique
│ │ │ │ ├── define-property@2.0.2 deduped
│ │ │ │ │ Define a non-enumerable property on an object. Uses Reflect.defineProperty when available, otherwise Object.defineProperty.
│ │ │ │ │ git+https://github.com/jonschlinkert/define-property.git
│ │ │ │ │ https://github.com/jonschlinkert/define-property
│ │ │ │ ├── extend-shallow@3.0.2 deduped
│ │ │ │ │ Extend an object with the properties of additional objects. node.js/javascript util.
│ │ │ │ │ git+https://github.com/jonschlinkert/extend-shallow.git
│ │ │ │ │ https://github.com/jonschlinkert/extend-shallow
│ │ │ │ ├── fragment-cache@0.2.1 deduped
│ │ │ │ │ A cache for managing namespaced sub-caches
│ │ │ │ │ git+https://github.com/jonschlinkert/fragment-cache.git
│ │ │ │ │ https://github.com/jonschlinkert/fragment-cache
│ │ │ │ ├── is-windows@1.0.2
│ │ │ │ │ Returns true if the platform is windows. UMD module, works with node.js, commonjs, browser, AMD, electron, etc.
│ │ │ │ │ git+https://github.com/jonschlinkert/is-windows.git
│ │ │ │ │ https://github.com/jonschlinkert/is-windows
│ │ │ │ ├── kind-of@6.0.2
│ │ │ │ │ Get the native type of a value.
│ │ │ │ │ git+https://github.com/jonschlinkert/kind-of.git
│ │ │ │ │ https://github.com/jonschlinkert/kind-of
│ │ │ │ ├── object.pick@1.3.0 deduped
│ │ │ │ │ Returns a filtered copy of an object with only the specified keys, similar to `_.pick` from lodash / underscore.
│ │ │ │ │ git+https://github.com/jonschlinkert/object.pick.git
│ │ │ │ │ https://github.com/jonschlinkert/object.pick
│ │ │ │ ├── regex-not@1.0.2 deduped
│ │ │ │ │ Create a javascript regular expression for matching everything except for the given string.
│ │ │ │ │ git+https://github.com/jonschlinkert/regex-not.git
│ │ │ │ │ https://github.com/jonschlinkert/regex-not
│ │ │ │ ├── snapdragon@0.8.2 deduped
│ │ │ │ │ Fast, pluggable and easy-to-use parser-renderer factory.
│ │ │ │ │ git+https://github.com/jonschlinkert/snapdragon.git
│ │ │ │ │ https://github.com/jonschlinkert/snapdragon
│ │ │ │ └── to-regex@3.0.2 deduped
│ │ │ │ Generate a regex from a string or array of strings.
│ │ │ │ git+https://github.com/jonschlinkert/to-regex.git
│ │ │ │ https://github.com/jonschlinkert/to-regex
│ │ │ ├─┬ object.pick@1.3.0