-
Notifications
You must be signed in to change notification settings - Fork 47
/
Copy pathdependencies
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
│ /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
│ Higher-order functions and common patterns for asynchronous code
│ git+https://github.com/caolan/async.git
│ https://github.com/caolan/async#readme
│ │ Babel command line.
│ │ https://github.com/babel/babel/tree/master/packages/babel-cli
│ │ https://babeljs.io/
│ ├─┬ [email protected]
│ │ │ Babel compiler core.
│ │ │ https://github.com/babel/babel/tree/master/packages/babel-core
│ │ │ https://babeljs.io/
│ │ ├── [email protected] 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/
│ │ ├─┬ [email protected]
│ │ │ │ Turns an AST into code.
│ │ │ │ https://github.com/babel/babel/tree/master/packages/babel-generator
│ │ │ │ https://babeljs.io/
│ │ │ ├── [email protected] deduped
│ │ │ │ Collection of debug messages used by Babel.
│ │ │ │ https://github.com/babel/babel/tree/master/packages/babel-messages
│ │ │ │ https://babeljs.io/
│ │ │ ├── [email protected] deduped
│ │ │ │ babel selfContained runtime
│ │ │ │ https://github.com/babel/babel/tree/master/packages/babel-runtime
│ │ │ ├── [email protected] 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/
│ │ │ ├─┬ [email protected]
│ │ │ │ │ Detect the indentation of code
│ │ │ │ │ git+https://github.com/sindresorhus/detect-indent.git
│ │ │ │ │ https://github.com/sindresorhus/detect-indent#readme
│ │ │ │ └─┬ [email protected]
│ │ │ │ │ Repeat a string - fast
│ │ │ │ │ git+https://github.com/sindresorhus/repeating.git
│ │ │ │ │ https://github.com/sindresorhus/repeating#readme
│ │ │ │ └─┬ [email protected]
│ │ │ │ │ ES2015 Number.isFinite() ponyfill
│ │ │ │ │ git+https://github.com/sindresorhus/is-finite.git
│ │ │ │ │ https://github.com/sindresorhus/is-finite#readme
│ │ │ │ └── [email protected]
│ │ │ │ ES2015 Number.isNaN() ponyfill
│ │ │ │ git+https://github.com/sindresorhus/number-is-nan.git
│ │ │ │ https://github.com/sindresorhus/number-is-nan#readme
│ │ │ ├── [email protected]
│ │ │ │ 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
│ │ │ ├── [email protected] deduped
│ │ │ │ Lodash modular utilities.
│ │ │ │ git+https://github.com/lodash/lodash.git
│ │ │ │ https://lodash.com/
│ │ │ ├── [email protected] deduped
│ │ │ │ Generates and consumes source maps
│ │ │ │ git+ssh://[email protected]/mozilla/source-map.git
│ │ │ │ https://github.com/mozilla/source-map
│ │ │ └── [email protected]
│ │ │ 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
│ │ ├─┬ [email protected]
│ │ │ │ Collection of helper functions used by Babel transforms.
│ │ │ │ https://github.com/babel/babel/tree/master/packages/babel-helpers
│ │ │ │ https://babeljs.io/
│ │ │ ├── [email protected] deduped
│ │ │ │ babel selfContained runtime
│ │ │ │ https://github.com/babel/babel/tree/master/packages/babel-runtime
│ │ │ └── [email protected] deduped
│ │ │ Generate an AST from a string template.
│ │ │ https://github.com/babel/babel/tree/master/packages/babel-template
│ │ │ https://babeljs.io/
│ │ ├─┬ [email protected]
│ │ │ │ Collection of debug messages used by Babel.
│ │ │ │ https://github.com/babel/babel/tree/master/packages/babel-messages
│ │ │ │ https://babeljs.io/
│ │ │ └── [email protected] deduped
│ │ │ babel selfContained runtime
│ │ │ https://github.com/babel/babel/tree/master/packages/babel-runtime
│ │ ├── [email protected] deduped
│ │ │ babel require hook
│ │ │ https://github.com/babel/babel/tree/master/packages/babel-register
│ │ ├── [email protected] deduped
│ │ │ babel selfContained runtime
│ │ │ https://github.com/babel/babel/tree/master/packages/babel-runtime
│ │ ├─┬ [email protected]
│ │ │ │ Generate an AST from a string template.
│ │ │ │ https://github.com/babel/babel/tree/master/packages/babel-template
│ │ │ │ https://babeljs.io/
│ │ │ ├── [email protected] deduped
│ │ │ │ babel selfContained runtime
│ │ │ │ https://github.com/babel/babel/tree/master/packages/babel-runtime
│ │ │ ├── [email protected] 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/
│ │ │ ├── [email protected] 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/
│ │ │ ├── [email protected] deduped
│ │ │ │ A JavaScript parser
│ │ │ │ git+https://github.com/babel/babylon.git
│ │ │ │ https://babeljs.io/
│ │ │ └── [email protected] deduped
│ │ │ Lodash modular utilities.
│ │ │ git+https://github.com/lodash/lodash.git
│ │ │ https://lodash.com/
│ │ ├─┬ [email protected]
│ │ │ │ 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/
│ │ │ ├── [email protected] 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/
│ │ │ ├── [email protected] deduped
│ │ │ │ Collection of debug messages used by Babel.
│ │ │ │ https://github.com/babel/babel/tree/master/packages/babel-messages
│ │ │ │ https://babeljs.io/
│ │ │ ├── [email protected] deduped
│ │ │ │ babel selfContained runtime
│ │ │ │ https://github.com/babel/babel/tree/master/packages/babel-runtime
│ │ │ ├── [email protected] 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/
│ │ │ ├── [email protected] deduped
│ │ │ │ A JavaScript parser
│ │ │ │ git+https://github.com/babel/babylon.git
│ │ │ │ https://babeljs.io/
│ │ │ ├── [email protected] deduped
│ │ │ │ small debugging utility
│ │ │ │ git://github.com/visionmedia/debug.git
│ │ │ │ https://github.com/visionmedia/debug#readme
│ │ │ ├── [email protected]
│ │ │ │ Global identifiers from different JavaScript environments
│ │ │ │ git+https://github.com/sindresorhus/globals.git
│ │ │ │ https://github.com/sindresorhus/globals#readme
│ │ │ ├── [email protected] deduped
│ │ │ │ invariant
│ │ │ │ git+https://github.com/zertosh/invariant.git
│ │ │ │ https://github.com/zertosh/invariant#readme
│ │ │ └── [email protected] deduped
│ │ │ Lodash modular utilities.
│ │ │ git+https://github.com/lodash/lodash.git
│ │ │ https://lodash.com/
│ │ ├─┬ [email protected]
│ │ │ │ Babel Types is a Lodash-esque utility library for AST nodes
│ │ │ │ https://github.com/babel/babel/tree/master/packages/babel-types
│ │ │ │ https://babeljs.io/
│ │ │ ├── [email protected] deduped
│ │ │ │ babel selfContained runtime
│ │ │ │ https://github.com/babel/babel/tree/master/packages/babel-runtime
│ │ │ ├── [email protected] deduped
│ │ │ │ utility box for ECMAScript language tools
│ │ │ │ git+ssh://[email protected]/estools/esutils.git
│ │ │ │ https://github.com/estools/esutils
│ │ │ ├── [email protected] deduped
│ │ │ │ Lodash modular utilities.
│ │ │ │ git+https://github.com/lodash/lodash.git
│ │ │ │ https://lodash.com/
│ │ │ └── [email protected]
│ │ │ 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
│ │ ├── [email protected]
│ │ │ A JavaScript parser
│ │ │ git+https://github.com/babel/babylon.git
│ │ │ https://babeljs.io/
│ │ ├── [email protected] 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
│ │ ├── [email protected] deduped
│ │ │ small debugging utility
│ │ │ git://github.com/visionmedia/debug.git
│ │ │ https://github.com/visionmedia/debug#readme
│ │ ├── [email protected]
│ │ │ JSON for the ES5 era.
│ │ │ git+https://github.com/aseemk/json5.git
│ │ │ http://json5.org/
│ │ ├── [email protected] deduped
│ │ │ Lodash modular utilities.
│ │ │ git+https://github.com/lodash/lodash.git
│ │ │ https://lodash.com/
│ │ ├── [email protected] deduped
│ │ │ a glob matcher in javascript
│ │ │ git://github.com/isaacs/minimatch.git
│ │ │ https://github.com/isaacs/minimatch#readme
│ │ ├── [email protected] 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
│ │ ├── [email protected]
│ │ │ Utility for associating truly private state with any JavaScript object
│ │ │ git://github.com/benjamn/private.git
│ │ │ http://github.com/benjamn/private
│ │ ├── [email protected] deduped
│ │ │ Convert Windows backslash paths to slash paths
│ │ │ git+https://github.com/sindresorhus/slash.git
│ │ │ https://github.com/sindresorhus/slash#readme
│ │ └── [email protected] deduped
│ │ Generates and consumes source maps
│ │ git+ssh://[email protected]/mozilla/source-map.git
│ │ https://github.com/mozilla/source-map
│ ├─┬ [email protected]
│ │ │ Provides polyfills necessary for a full ES2015+ environment
│ │ │ https://github.com/babel/babel/tree/master/packages/babel-polyfill
│ │ │ https://babeljs.io/
│ │ ├── [email protected] deduped
│ │ │ babel selfContained runtime
│ │ │ https://github.com/babel/babel/tree/master/packages/babel-runtime
│ │ ├── [email protected]
│ │ │ Standard library
│ │ │ git+https://github.com/zloirock/core-js.git
│ │ │ https://github.com/zloirock/core-js#readme
│ │ └── [email protected]
│ │ Runtime for Regenerator-compiled generator and async functions.
│ │ https://github.com/facebook/regenerator/tree/master/packages/regenerator-runtime
│ ├─┬ [email protected]
│ │ │ babel require hook
│ │ │ https://github.com/babel/babel/tree/master/packages/babel-register
│ │ ├── [email protected] deduped
│ │ │ Babel compiler core.
│ │ │ https://github.com/babel/babel/tree/master/packages/babel-core
│ │ │ https://babeljs.io/
│ │ ├── [email protected] deduped
│ │ │ babel selfContained runtime
│ │ │ https://github.com/babel/babel/tree/master/packages/babel-runtime
│ │ ├── [email protected]
│ │ │ Standard library
│ │ │ git+https://github.com/zloirock/core-js.git
│ │ │ https://github.com/zloirock/core-js#readme
│ │ ├─┬ [email protected]
│ │ │ │ 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
│ │ │ ├── [email protected]
│ │ │ │ Node.js 4 `os.homedir()` ponyfill
│ │ │ │ git+https://github.com/sindresorhus/os-homedir.git
│ │ │ │ https://github.com/sindresorhus/os-homedir#readme
│ │ │ └── [email protected]
│ │ │ Node.js os.tmpdir() ponyfill
│ │ │ git+https://github.com/sindresorhus/os-tmpdir.git
│ │ │ https://github.com/sindresorhus/os-tmpdir#readme
│ │ ├── [email protected] deduped
│ │ │ Lodash modular utilities.
│ │ │ git+https://github.com/lodash/lodash.git
│ │ │ https://lodash.com/
│ │ ├── [email protected] deduped
│ │ │ Recursively mkdir, like `mkdir -p`
│ │ │ git+https://github.com/substack/node-mkdirp.git
│ │ │ https://github.com/substack/node-mkdirp#readme
│ │ └─┬ [email protected]
│ │ │ 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
│ │ └── [email protected] deduped
│ │ Generates and consumes source maps
│ │ git+ssh://[email protected]/mozilla/source-map.git
│ │ https://github.com/mozilla/source-map
│ ├─┬ [email protected]
│ │ │ babel selfContained runtime
│ │ │ https://github.com/babel/babel/tree/master/packages/babel-runtime
│ │ ├── [email protected]
│ │ │ Standard library
│ │ │ git+https://github.com/zloirock/core-js.git
│ │ │ https://github.com/zloirock/core-js#readme
│ │ └── [email protected]
│ │ Runtime for Regenerator-compiled generator and async functions.
│ │ https://github.com/facebook/regenerator/tree/master/packages/regenerator-runtime
│ ├─┬ [email protected]
│ │ │ A neat wrapper around node.js fs.watch / fs.watchFile / fsevents.
│ │ │ git+https://github.com/paulmillr/chokidar.git
│ │ │ https://github.com/paulmillr/chokidar
│ │ ├─┬ [email protected]
│ │ │ │ Matches strings against configurable strings, globs, regular expressions, and/or functions
│ │ │ │ git+https://github.com/es128/anymatch.git
│ │ │ │ https://github.com/es128/anymatch
│ │ │ ├── [email protected] 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
│ │ │ └─┬ [email protected]
│ │ │ │ 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
│ │ │ └── [email protected]
│ │ │ 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
│ │ ├── [email protected]
│ │ │ 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/
│ │ ├─┬ [email protected]
│ │ │ │ Native Access to Mac OS-X FSEvents
│ │ │ │ git+https://github.com/strongloop/fsevents.git
│ │ │ │ https://github.com/strongloop/fsevents
│ │ │ ├── [email protected]
│ │ │ │ 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
│ │ │ └─┬ [email protected]
│ │ │ │ Node.js native addon binary install tool
│ │ │ │ git://github.com/mapbox/node-pre-gyp.git
│ │ │ │ https://github.com/mapbox/node-pre-gyp#readme
│ │ │ ├── [email protected]
│ │ │ │ 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
│ │ │ ├─┬ [email protected]
│ │ │ │ │ Recursively mkdir, like `mkdir -p`
│ │ │ │ │ git+https://github.com/substack/node-mkdirp.git
│ │ │ │ │ https://github.com/substack/node-mkdirp#readme
│ │ │ │ └── [email protected]
│ │ │ │ parse argument options
│ │ │ │ git://github.com/substack/minimist.git
│ │ │ │ https://github.com/substack/minimist
│ │ │ ├─┬ [email protected]
│ │ │ │ │ The leanest and most handsome HTTP client in the Nodelands.
│ │ │ │ │ git+https://github.com/tomas/needle.git
│ │ │ │ │ https://github.com/tomas/needle#readme
│ │ │ │ ├─┬ [email protected]
│ │ │ │ │ │ small debugging utility
│ │ │ │ │ │ git://github.com/visionmedia/debug.git
│ │ │ │ │ │ https://github.com/visionmedia/debug#readme
│ │ │ │ │ └── [email protected]
│ │ │ │ │ Tiny milisecond conversion utility
│ │ │ │ │ git+https://github.com/zeit/ms.git
│ │ │ │ │ https://github.com/zeit/ms#readme
│ │ │ │ ├─┬ [email protected]
│ │ │ │ │ │ Convert character encodings in pure javascript.
│ │ │ │ │ │ git://github.com/ashtuchkin/iconv-lite.git
│ │ │ │ │ │ https://github.com/ashtuchkin/iconv-lite
│ │ │ │ │ └── [email protected]
│ │ │ │ │ Modern Buffer API polyfill without footguns
│ │ │ │ │ git+https://github.com/ChALkeR/safer-buffer.git
│ │ │ │ │ https://github.com/ChALkeR/safer-buffer#readme
│ │ │ │ └── [email protected]
│ │ │ │ An evented streaming XML parser in JavaScript
│ │ │ │ git://github.com/isaacs/sax-js.git
│ │ │ │ https://github.com/isaacs/sax-js#readme
│ │ │ ├─┬ [email protected]
│ │ │ │ │ Option parsing for Node, supporting types, shorthands, etc. Used by npm.
│ │ │ │ │ git+https://github.com/npm/nopt.git
│ │ │ │ │ https://github.com/npm/nopt#readme
│ │ │ │ ├── [email protected]
│ │ │ │ │ Like ruby's abbrev module, but in js
│ │ │ │ │ git+ssh://[email protected]/isaacs/abbrev-js.git
│ │ │ │ │ https://github.com/isaacs/abbrev-js#readme
│ │ │ │ └─┬ [email protected]
│ │ │ │ │ Look up environment settings specific to different operating systems
│ │ │ │ │ git+https://github.com/npm/osenv.git
│ │ │ │ │ https://github.com/npm/osenv#readme
│ │ │ │ ├── [email protected]
│ │ │ │ │ Node.js 4 `os.homedir()` ponyfill
│ │ │ │ │ git+https://github.com/sindresorhus/os-homedir.git
│ │ │ │ │ https://github.com/sindresorhus/os-homedir#readme
│ │ │ │ └── [email protected]
│ │ │ │ Node.js os.tmpdir() ponyfill
│ │ │ │ git+https://github.com/sindresorhus/os-tmpdir.git
│ │ │ │ https://github.com/sindresorhus/os-tmpdir#readme
│ │ │ ├─┬ [email protected]
│ │ │ │ │ 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
│ │ │ │ ├─┬ [email protected]
│ │ │ │ │ │ Nested/recursive `.gitignore`/`.npmignore` parsing and filtering.
│ │ │ │ │ │ git+https://github.com/isaacs/ignore-walk.git
│ │ │ │ │ │ https://github.com/isaacs/ignore-walk#readme
│ │ │ │ │ └─┬ [email protected]
│ │ │ │ │ │ a glob matcher in javascript
│ │ │ │ │ │ git://github.com/isaacs/minimatch.git
│ │ │ │ │ │ https://github.com/isaacs/minimatch#readme
│ │ │ │ │ └─┬ [email protected]
│ │ │ │ │ │ Brace expansion as known from sh/bash
│ │ │ │ │ │ git://github.com/juliangruber/brace-expansion.git
│ │ │ │ │ │ https://github.com/juliangruber/brace-expansion
│ │ │ │ │ ├── [email protected]
│ │ │ │ │ │ Match balanced character pairs, like "{" and "}"
│ │ │ │ │ │ git://github.com/juliangruber/balanced-match.git
│ │ │ │ │ │ https://github.com/juliangruber/balanced-match
│ │ │ │ │ └── [email protected]
│ │ │ │ │ concatenative mapdashery
│ │ │ │ │ git://github.com/substack/node-concat-map.git
│ │ │ │ │ https://github.com/substack/node-concat-map#readme
│ │ │ │ └── [email protected]
│ │ │ │ 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
│ │ │ ├─┬ [email protected]
│ │ │ │ │ logger for npm
│ │ │ │ │ git+https://github.com/npm/npmlog.git
│ │ │ │ │ https://github.com/npm/npmlog#readme
│ │ │ │ ├─┬ [email protected]
│ │ │ │ │ │ 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
│ │ │ │ │ ├── [email protected]
│ │ │ │ │ │ delegate methods and accessors to another property
│ │ │ │ │ │ git+https://github.com/visionmedia/node-delegates.git
│ │ │ │ │ │ https://github.com/visionmedia/node-delegates#readme
│ │ │ │ │ └─┬ [email protected]
│ │ │ │ │ │ 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
│ │ │ │ │ ├── [email protected]
│ │ │ │ │ │ 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
│ │ │ │ │ ├── [email protected] deduped
│ │ │ │ │ │ Browser-friendly inheritance fully compatible with standard node.js inherits()
│ │ │ │ │ │ git://github.com/isaacs/inherits.git
│ │ │ │ │ │ https://github.com/isaacs/inherits#readme
│ │ │ │ │ ├── [email protected]
│ │ │ │ │ │ Array#isArray for older browsers
│ │ │ │ │ │ git://github.com/juliangruber/isarray.git
│ │ │ │ │ │ https://github.com/juliangruber/isarray
│ │ │ │ │ ├── [email protected]
│ │ │ │ │ │ process.nextTick but always with args
│ │ │ │ │ │ git+https://github.com/calvinmetcalf/process-nextick-args.git
│ │ │ │ │ │ https://github.com/calvinmetcalf/process-nextick-args
│ │ │ │ │ ├── [email protected] deduped
│ │ │ │ │ │ Safer Node.js Buffer API
│ │ │ │ │ │ git://github.com/feross/safe-buffer.git
│ │ │ │ │ │ https://github.com/feross/safe-buffer
│ │ │ │ │ ├─┬ [email protected]
│ │ │ │ │ │ │ The string_decoder module from Node core
│ │ │ │ │ │ │ git://github.com/nodejs/string_decoder.git
│ │ │ │ │ │ │ https://github.com/nodejs/string_decoder
│ │ │ │ │ │ └── [email protected] deduped
│ │ │ │ │ │ Safer Node.js Buffer API
│ │ │ │ │ │ git://github.com/feross/safe-buffer.git
│ │ │ │ │ │ https://github.com/feross/safe-buffer
│ │ │ │ │ └── [email protected]
│ │ │ │ │ The Node.js `util.deprecate()` function with browser support
│ │ │ │ │ git://github.com/TooTallNate/util-deprecate.git
│ │ │ │ │ https://github.com/TooTallNate/util-deprecate
│ │ │ │ ├── [email protected]
│ │ │ │ │ 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
│ │ │ │ ├─┬ [email protected]
│ │ │ │ │ │ A terminal based horizontal guage
│ │ │ │ │ │ git+https://github.com/iarna/gauge.git
│ │ │ │ │ │ https://github.com/iarna/gauge
│ │ │ │ │ ├── [email protected]
│ │ │ │ │ │ A ridiculously light-weight argument validator (now browser friendly)
│ │ │ │ │ │ git+https://github.com/iarna/aproba.git
│ │ │ │ │ │ https://github.com/iarna/aproba
│ │ │ │ │ ├── [email protected] 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
│ │ │ │ │ ├── [email protected]
│ │ │ │ │ │ Try to guess if your terminal supports unicode
│ │ │ │ │ │ git+https://github.com/iarna/has-unicode.git
│ │ │ │ │ │ https://github.com/iarna/has-unicode
│ │ │ │ │ ├── [email protected]
│ │ │ │ │ │ ES2015 `Object.assign()` ponyfill
│ │ │ │ │ │ git+https://github.com/sindresorhus/object-assign.git
│ │ │ │ │ │ https://github.com/sindresorhus/object-assign#readme
│ │ │ │ │ ├── [email protected]
│ │ │ │ │ │ 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
│ │ │ │ │ ├─┬ [email protected]
│ │ │ │ │ │ │ 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
│ │ │ │ │ │ ├── [email protected]
│ │ │ │ │ │ │ ES2015 `String#codePointAt()` ponyfill
│ │ │ │ │ │ │ git+https://github.com/sindresorhus/code-point-at.git
│ │ │ │ │ │ │ https://github.com/sindresorhus/code-point-at#readme
│ │ │ │ │ │ ├─┬ [email protected]
│ │ │ │ │ │ │ │ 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
│ │ │ │ │ │ │ └── [email protected]
│ │ │ │ │ │ │ ES2015 Number.isNaN() ponyfill
│ │ │ │ │ │ │ git+https://github.com/sindresorhus/number-is-nan.git
│ │ │ │ │ │ │ https://github.com/sindresorhus/number-is-nan#readme
│ │ │ │ │ │ └── [email protected] deduped
│ │ │ │ │ │ Strip ANSI escape codes
│ │ │ │ │ │ git+https://github.com/chalk/strip-ansi.git
│ │ │ │ │ │ https://github.com/chalk/strip-ansi#readme
│ │ │ │ │ ├─┬ [email protected]
│ │ │ │ │ │ │ Strip ANSI escape codes
│ │ │ │ │ │ │ git+https://github.com/chalk/strip-ansi.git
│ │ │ │ │ │ │ https://github.com/chalk/strip-ansi#readme
│ │ │ │ │ │ └── [email protected]
│ │ │ │ │ │ Regular expression for matching ANSI escape codes
│ │ │ │ │ │ git+https://github.com/chalk/ansi-regex.git
│ │ │ │ │ │ https://github.com/chalk/ansi-regex#readme
│ │ │ │ │ └─┬ [email protected]
│ │ │ │ │ │ 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
│ │ │ │ │ └── [email protected] 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
│ │ │ │ └── [email protected]
│ │ │ │ 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
│ │ │ ├─┬ [email protected]
│ │ │ │ │ hardwired configuration loader
│ │ │ │ │ git+https://github.com/dominictarr/rc.git
│ │ │ │ │ https://github.com/dominictarr/rc#readme
│ │ │ │ ├── [email protected]
│ │ │ │ │ Recursive object extending
│ │ │ │ │ git://github.com/unclechu/node-deep-extend.git
│ │ │ │ │ https://github.com/unclechu/node-deep-extend
│ │ │ │ ├── [email protected]
│ │ │ │ │ An ini encoder/decoder for node
│ │ │ │ │ git://github.com/isaacs/ini.git
│ │ │ │ │ https://github.com/isaacs/ini#readme
│ │ │ │ ├── [email protected]
│ │ │ │ │ parse argument options
│ │ │ │ │ git://github.com/substack/minimist.git
│ │ │ │ │ https://github.com/substack/minimist
│ │ │ │ └── [email protected]
│ │ │ │ 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
│ │ │ ├─┬ [email protected]
│ │ │ │ │ A deep deletion module for node (like `rm -rf`)
│ │ │ │ │ git://github.com/isaacs/rimraf.git
│ │ │ │ │ https://github.com/isaacs/rimraf#readme
│ │ │ │ └─┬ [email protected]
│ │ │ │ │ a little globber
│ │ │ │ │ git://github.com/isaacs/node-glob.git
│ │ │ │ │ https://github.com/isaacs/node-glob#readme
│ │ │ │ ├── [email protected]
│ │ │ │ │ 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
│ │ │ │ ├─┬ [email protected]
│ │ │ │ │ │ Add callbacks to requests in flight to avoid async duplication
│ │ │ │ │ │ git+https://github.com/npm/inflight.git
│ │ │ │ │ │ https://github.com/isaacs/inflight
│ │ │ │ │ ├── [email protected] deduped
│ │ │ │ │ │ Run a function exactly one time
│ │ │ │ │ │ git://github.com/isaacs/once.git
│ │ │ │ │ │ https://github.com/isaacs/once#readme
│ │ │ │ │ └── [email protected]
│ │ │ │ │ Callback wrapping utility
│ │ │ │ │ git+https://github.com/npm/wrappy.git
│ │ │ │ │ https://github.com/npm/wrappy
│ │ │ │ ├── [email protected]
│ │ │ │ │ Browser-friendly inheritance fully compatible with standard node.js inherits()
│ │ │ │ │ git://github.com/isaacs/inherits.git
│ │ │ │ │ https://github.com/isaacs/inherits#readme
│ │ │ │ ├── [email protected] deduped
│ │ │ │ │ a glob matcher in javascript
│ │ │ │ │ git://github.com/isaacs/minimatch.git
│ │ │ │ │ https://github.com/isaacs/minimatch#readme
│ │ │ │ ├─┬ [email protected]
│ │ │ │ │ │ Run a function exactly one time
│ │ │ │ │ │ git://github.com/isaacs/once.git
│ │ │ │ │ │ https://github.com/isaacs/once#readme
│ │ │ │ │ └── [email protected] deduped
│ │ │ │ │ Callback wrapping utility
│ │ │ │ │ git+https://github.com/npm/wrappy.git
│ │ │ │ │ https://github.com/npm/wrappy
│ │ │ │ └── [email protected]
│ │ │ │ Node.js 0.12 path.isAbsolute() ponyfill
│ │ │ │ git+https://github.com/sindresorhus/path-is-absolute.git
│ │ │ │ https://github.com/sindresorhus/path-is-absolute#readme
│ │ │ ├── [email protected]
│ │ │ │ The semantic version parser used by npm.
│ │ │ │ git+https://github.com/npm/node-semver.git
│ │ │ │ https://github.com/npm/node-semver#readme
│ │ │ └─┬ [email protected]
│ │ │ │ tar for node
│ │ │ │ git+https://github.com/npm/node-tar.git
│ │ │ │ https://github.com/npm/node-tar#readme
│ │ │ ├── [email protected]
│ │ │ │ like `chown -R`
│ │ │ │ git://github.com/isaacs/chownr.git
│ │ │ │ https://github.com/isaacs/chownr#readme
│ │ │ ├─┬ [email protected]
│ │ │ │ │ fs read and write streams based on minipass
│ │ │ │ │ git+https://github.com/npm/fs-minipass.git
│ │ │ │ │ https://github.com/npm/fs-minipass#readme
│ │ │ │ └── [email protected] deduped
│ │ │ │ minimal implementation of a PassThrough stream
│ │ │ │ git+https://github.com/isaacs/minipass.git
│ │ │ │ https://github.com/isaacs/minipass#readme
│ │ │ ├─┬ [email protected]
│ │ │ │ │ minimal implementation of a PassThrough stream
│ │ │ │ │ git+https://github.com/isaacs/minipass.git
│ │ │ │ │ https://github.com/isaacs/minipass#readme
│ │ │ │ ├── [email protected] deduped
│ │ │ │ │ Safer Node.js Buffer API
│ │ │ │ │ git://github.com/feross/safe-buffer.git
│ │ │ │ │ https://github.com/feross/safe-buffer
│ │ │ │ └── [email protected] deduped
│ │ │ │ Yet Another Linked List
│ │ │ │ git+https://github.com/isaacs/yallist.git
│ │ │ │ https://github.com/isaacs/yallist#readme
│ │ │ ├─┬ [email protected]
│ │ │ │ │ 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
│ │ │ │ └── [email protected] deduped
│ │ │ │ minimal implementation of a PassThrough stream
│ │ │ │ git+https://github.com/isaacs/minipass.git
│ │ │ │ https://github.com/isaacs/minipass#readme
│ │ │ ├── [email protected] deduped
│ │ │ │ Recursively mkdir, like `mkdir -p`
│ │ │ │ git+https://github.com/substack/node-mkdirp.git
│ │ │ │ https://github.com/substack/node-mkdirp#readme
│ │ │ ├── [email protected]
│ │ │ │ Safer Node.js Buffer API
│ │ │ │ git://github.com/feross/safe-buffer.git
│ │ │ │ https://github.com/feross/safe-buffer
│ │ │ └── [email protected]
│ │ │ Yet Another Linked List
│ │ │ git+https://github.com/isaacs/yallist.git
│ │ │ https://github.com/isaacs/yallist#readme
│ │ ├─┬ [email protected]
│ │ │ │ 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
│ │ │ └── [email protected] 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
│ │ ├── [email protected]
│ │ │ Browser-friendly inheritance fully compatible with standard node.js inherits()
│ │ │ git://github.com/isaacs/inherits.git
│ │ │ https://github.com/isaacs/inherits#readme
│ │ ├─┬ [email protected]
│ │ │ │ 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
│ │ │ └── [email protected]
│ │ │ List of binary file extensions
│ │ │ git+https://github.com/sindresorhus/binary-extensions.git
│ │ │ https://github.com/sindresorhus/binary-extensions#readme
│ │ ├─┬ [email protected]
│ │ │ │ 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
│ │ │ └── [email protected]
│ │ │ Returns true if a string has an extglob.
│ │ │ git+https://github.com/jonschlinkert/is-extglob.git
│ │ │ https://github.com/jonschlinkert/is-extglob
│ │ ├── [email protected] 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
│ │ └─┬ [email protected]
│ │ │ Recursive version of fs.readdir with streaming api.
│ │ │ git://github.com/paulmillr/readdirp.git
│ │ │ https://github.com/paulmillr/readdirp
│ │ ├── [email protected] 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
│ │ ├─┬ [email protected]
│ │ │ │ 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
│ │ │ ├── [email protected]
│ │ │ │ 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
│ │ │ ├── [email protected]
│ │ │ │ Remove duplicate values from an array. Fastest ES5 implementation.
│ │ │ │ git+https://github.com/jonschlinkert/array-unique.git
│ │ │ │ https://github.com/jonschlinkert/array-unique
│ │ │ ├─┬ [email protected]
│ │ │ │ │ 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
│ │ │ │ ├── [email protected] deduped
│ │ │ │ │ Recursively flatten an array or arrays.
│ │ │ │ │ git+https://github.com/jonschlinkert/arr-flatten.git
│ │ │ │ │ https://github.com/jonschlinkert/arr-flatten
│ │ │ │ ├── [email protected] deduped
│ │ │ │ │ Remove duplicate values from an array. Fastest ES5 implementation.
│ │ │ │ │ git+https://github.com/jonschlinkert/array-unique.git
│ │ │ │ │ https://github.com/jonschlinkert/array-unique
│ │ │ │ ├─┬ [email protected]
│ │ │ │ │ │ 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
│ │ │ │ │ └── [email protected] 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
│ │ │ │ ├─┬ [email protected]
│ │ │ │ │ │ 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
│ │ │ │ │ ├─┬ [email protected]
│ │ │ │ │ │ │ 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
│ │ │ │ │ │ └── [email protected] 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
│ │ │ │ │ ├─┬ [email protected]
│ │ │ │ │ │ │ Returns true if the value is a number. comprehensive tests.
│ │ │ │ │ │ │ git+https://github.com/jonschlinkert/is-number.git
│ │ │ │ │ │ │ https://github.com/jonschlinkert/is-number
│ │ │ │ │ │ └─┬ [email protected]
│ │ │ │ │ │ │ Get the native type of a value.
│ │ │ │ │ │ │ git+https://github.com/jonschlinkert/kind-of.git
│ │ │ │ │ │ │ https://github.com/jonschlinkert/kind-of
│ │ │ │ │ │ └── [email protected] deduped
│ │ │ │ │ │ Determine if an object is a Buffer
│ │ │ │ │ │ git://github.com/feross/is-buffer.git
│ │ │ │ │ │ https://github.com/feross/is-buffer#readme
│ │ │ │ │ ├── [email protected] 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
│ │ │ │ │ └── [email protected] 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
│ │ │ │ ├── [email protected]
│ │ │ │ │ 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
│ │ │ │ ├── [email protected] 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
│ │ │ │ ├── [email protected] deduped
│ │ │ │ │ Fast, pluggable and easy-to-use parser-renderer factory.
│ │ │ │ │ git+https://github.com/jonschlinkert/snapdragon.git
│ │ │ │ │ https://github.com/jonschlinkert/snapdragon
│ │ │ │ ├── [email protected] 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
│ │ │ │ ├── [email protected] 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
│ │ │ │ └── [email protected] 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
│ │ │ ├─┬ [email protected]
│ │ │ │ │ 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
│ │ │ │ ├─┬ [email protected]
│ │ │ │ │ │ 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
│ │ │ │ │ ├─┬ [email protected]
│ │ │ │ │ │ │ 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
│ │ │ │ │ │ └── [email protected] deduped
│ │ │ │ │ │ Get the native type of a value.
│ │ │ │ │ │ git+https://github.com/jonschlinkert/kind-of.git
│ │ │ │ │ │ https://github.com/jonschlinkert/kind-of
│ │ │ │ │ ├─┬ [email protected]
│ │ │ │ │ │ │ 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
│ │ │ │ │ │ └── [email protected] deduped
│ │ │ │ │ │ Get the native type of a value.
│ │ │ │ │ │ git+https://github.com/jonschlinkert/kind-of.git
│ │ │ │ │ │ https://github.com/jonschlinkert/kind-of
│ │ │ │ │ └── [email protected]
│ │ │ │ │ Get the native type of a value.
│ │ │ │ │ git+https://github.com/jonschlinkert/kind-of.git
│ │ │ │ │ https://github.com/jonschlinkert/kind-of
│ │ │ │ └── [email protected]
│ │ │ │ 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
│ │ │ ├─┬ [email protected]
│ │ │ │ │ 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
│ │ │ │ ├── [email protected]
│ │ │ │ │ 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
│ │ │ │ └─┬ [email protected]
│ │ │ │ │ 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
│ │ │ │ └─┬ [email protected]
│ │ │ │ │ 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
│ │ │ │ └── [email protected]
│ │ │ │ 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
│ │ │ ├─┬ [email protected]
│ │ │ │ │ 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
│ │ │ │ ├── [email protected] deduped
│ │ │ │ │ Remove duplicate values from an array. Fastest ES5 implementation.
│ │ │ │ │ git+https://github.com/jonschlinkert/array-unique.git
│ │ │ │ │ https://github.com/jonschlinkert/array-unique
│ │ │ │ ├─┬ [email protected]
│ │ │ │ │ │ Define a non-enumerable property on an object.
│ │ │ │ │ │ git+https://github.com/jonschlinkert/define-property.git
│ │ │ │ │ │ https://github.com/jonschlinkert/define-property
│ │ │ │ │ └─┬ [email protected]
│ │ │ │ │ │ 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
│ │ │ │ │ ├─┬ [email protected]
│ │ │ │ │ │ │ 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
│ │ │ │ │ │ └── [email protected] deduped
│ │ │ │ │ │ Get the native type of a value.
│ │ │ │ │ │ git+https://github.com/jonschlinkert/kind-of.git
│ │ │ │ │ │ https://github.com/jonschlinkert/kind-of
│ │ │ │ │ ├─┬ [email protected]
│ │ │ │ │ │ │ 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
│ │ │ │ │ │ └── [email protected] deduped
│ │ │ │ │ │ Get the native type of a value.
│ │ │ │ │ │ git+https://github.com/jonschlinkert/kind-of.git
│ │ │ │ │ │ https://github.com/jonschlinkert/kind-of
│ │ │ │ │ └── [email protected] deduped
│ │ │ │ │ Get the native type of a value.
│ │ │ │ │ git+https://github.com/jonschlinkert/kind-of.git
│ │ │ │ │ https://github.com/jonschlinkert/kind-of
│ │ │ │ ├─┬ [email protected]
│ │ │ │ │ │ Expand POSIX bracket expressions (character classes) in glob patterns.
│ │ │ │ │ │ git+https://github.com/jonschlinkert/expand-brackets.git
│ │ │ │ │ │ https://github.com/jonschlinkert/expand-brackets
│ │ │ │ │ ├── [email protected] deduped
│ │ │ │ │ │ small debugging utility
│ │ │ │ │ │ git://github.com/visionmedia/debug.git
│ │ │ │ │ │ https://github.com/visionmedia/debug#readme
│ │ │ │ │ ├─┬ [email protected]
│ │ │ │ │ │ │ Define a non-enumerable property on an object.
│ │ │ │ │ │ │ git+https://github.com/jonschlinkert/define-property.git
│ │ │ │ │ │ │ https://github.com/jonschlinkert/define-property
│ │ │ │ │ │ └─┬ [email protected]
│ │ │ │ │ │ │ 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
│ │ │ │ │ │ ├─┬ [email protected]
│ │ │ │ │ │ │ │ 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
│ │ │ │ │ │ │ └─┬ [email protected]
│ │ │ │ │ │ │ │ Get the native type of a value.
│ │ │ │ │ │ │ │ git+https://github.com/jonschlinkert/kind-of.git
│ │ │ │ │ │ │ │ https://github.com/jonschlinkert/kind-of
│ │ │ │ │ │ │ └── [email protected] deduped
│ │ │ │ │ │ │ Determine if an object is a Buffer
│ │ │ │ │ │ │ git://github.com/feross/is-buffer.git
│ │ │ │ │ │ │ https://github.com/feross/is-buffer#readme
│ │ │ │ │ │ ├─┬ [email protected]
│ │ │ │ │ │ │ │ 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
│ │ │ │ │ │ │ └─┬ [email protected]
│ │ │ │ │ │ │ │ Get the native type of a value.
│ │ │ │ │ │ │ │ git+https://github.com/jonschlinkert/kind-of.git
│ │ │ │ │ │ │ │ https://github.com/jonschlinkert/kind-of
│ │ │ │ │ │ │ └── [email protected] deduped
│ │ │ │ │ │ │ Determine if an object is a Buffer
│ │ │ │ │ │ │ git://github.com/feross/is-buffer.git
│ │ │ │ │ │ │ https://github.com/feross/is-buffer#readme
│ │ │ │ │ │ └── [email protected]
│ │ │ │ │ │ Get the native type of a value.
│ │ │ │ │ │ git+https://github.com/jonschlinkert/kind-of.git
│ │ │ │ │ │ https://github.com/jonschlinkert/kind-of
│ │ │ │ │ ├─┬ [email protected]
│ │ │ │ │ │ │ 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
│ │ │ │ │ │ └── [email protected] 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
│ │ │ │ │ ├── [email protected]
│ │ │ │ │ │ POSIX character classes for creating regular expressions.
│ │ │ │ │ │ git+https://github.com/jonschlinkert/posix-character-classes.git
│ │ │ │ │ │ https://github.com/jonschlinkert/posix-character-classes
│ │ │ │ │ ├── [email protected] 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
│ │ │ │ │ ├── [email protected] deduped
│ │ │ │ │ │ Fast, pluggable and easy-to-use parser-renderer factory.
│ │ │ │ │ │ git+https://github.com/jonschlinkert/snapdragon.git
│ │ │ │ │ │ https://github.com/jonschlinkert/snapdragon
│ │ │ │ │ └── [email protected] 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
│ │ │ │ ├─┬ [email protected]
│ │ │ │ │ │ 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
│ │ │ │ │ └── [email protected] 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
│ │ │ │ ├── [email protected] deduped
│ │ │ │ │ A cache for managing namespaced sub-caches
│ │ │ │ │ git+https://github.com/jonschlinkert/fragment-cache.git
│ │ │ │ │ https://github.com/jonschlinkert/fragment-cache
│ │ │ │ ├── [email protected] 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
│ │ │ │ ├── [email protected] deduped
│ │ │ │ │ Fast, pluggable and easy-to-use parser-renderer factory.
│ │ │ │ │ git+https://github.com/jonschlinkert/snapdragon.git
│ │ │ │ │ https://github.com/jonschlinkert/snapdragon
│ │ │ │ └── [email protected] 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
│ │ │ ├─┬ [email protected]
│ │ │ │ │ A cache for managing namespaced sub-caches
│ │ │ │ │ git+https://github.com/jonschlinkert/fragment-cache.git
│ │ │ │ │ https://github.com/jonschlinkert/fragment-cache
│ │ │ │ └── [email protected] deduped
│ │ │ │ Basic cache object for storing key-value pairs.
│ │ │ │ git+https://github.com/jonschlinkert/map-cache.git
│ │ │ │ https://github.com/jonschlinkert/map-cache
│ │ │ ├── [email protected]
│ │ │ │ Get the native type of a value.
│ │ │ │ git+https://github.com/jonschlinkert/kind-of.git
│ │ │ │ https://github.com/jonschlinkert/kind-of
│ │ │ ├─┬ [email protected]
│ │ │ │ │ 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
│ │ │ │ ├── [email protected]
│ │ │ │ │ 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
│ │ │ │ ├── [email protected]
│ │ │ │ │ Remove duplicate values from an array. Fastest ES5 implementation.
│ │ │ │ │ git+https://github.com/jonschlinkert/array-unique.git
│ │ │ │ │ https://github.com/jonschlinkert/array-unique
│ │ │ │ ├── [email protected] 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
│ │ │ │ ├── [email protected] 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
│ │ │ │ ├── [email protected] deduped
│ │ │ │ │ A cache for managing namespaced sub-caches
│ │ │ │ │ git+https://github.com/jonschlinkert/fragment-cache.git
│ │ │ │ │ https://github.com/jonschlinkert/fragment-cache
│ │ │ │ ├── [email protected]
│ │ │ │ │ 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
│ │ │ │ ├── [email protected]
│ │ │ │ │ Get the native type of a value.
│ │ │ │ │ git+https://github.com/jonschlinkert/kind-of.git
│ │ │ │ │ https://github.com/jonschlinkert/kind-of
│ │ │ │ ├── [email protected] 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
│ │ │ │ ├── [email protected] 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
│ │ │ │ ├── [email protected] deduped
│ │ │ │ │ Fast, pluggable and easy-to-use parser-renderer factory.
│ │ │ │ │ git+https://github.com/jonschlinkert/snapdragon.git
│ │ │ │ │ https://github.com/jonschlinkert/snapdragon
│ │ │ │ └── [email protected] 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
│ │ │ ├─┬ [email protected]