forked from DefinitelyTyped/DefinitelyTyped
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCODEOWNERS
5946 lines (5945 loc) · 415 KB
/
CODEOWNERS
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
# This file is generated.
# Add yourself to the "Definitions by:" list instead.
# See https://github.com/DefinitelyTyped/DefinitelyTyped#edit-an-existing-package
/types/a-big-triangle/ @MathiasPaumgarten
/types/a11y-dialog/ @Goyatuzo
/types/abbrev/ @BendingBender
/types/abs/ @AyaMorisawa
/types/absolute/ @AyaMorisawa
/types/abstract-leveldown/ @MeirionHughes @danwbyrne
/types/acc-wizard/ @cyrilschumacher
/types/accept/ @feinoujc
/types/accept-language-parser/ @kampfgnom @chatoo2412
/types/accepts/ @bomret @brikou
/types/accounting/ @gerich-home @chrisleck
/types/ace/ @Diullei
/types/ace-diff/ @innovation-team
/types/acl/ @tkQubo
/types/acorn/ @RReverser @e-cloud
/types/actioncable/ @zhu1230 @szechyjs
/types/actions-on-google/ @joelhegg
/types/active-win/ @BendingBender
/types/activedirectory2/ @pasthelod
/types/activestorage/ @cbothner
/types/activex-access/ @zspitz
/types/activex-adodb/ @zspitz
/types/activex-adox/ @zspitz
/types/activex-dao/ @zspitz
/types/activex-diskquota/ @zspitz
/types/activex-excel/ @zspitz
/types/activex-faxcomexlib/ @zspitz
/types/activex-infopath/ @zspitz
/types/activex-interop/ @zspitz
/types/activex-iwshruntimelibrary/ @zspitz
/types/activex-libreoffice/ @zspitz
/types/activex-msforms/ @zspitz
/types/activex-mshtml/ @zspitz
/types/activex-msxml2/ @zspitz
/types/activex-office/ @zspitz
/types/activex-outlook/ @zspitz
/types/activex-powerpoint/ @zspitz
/types/activex-scripting/ @zspitz
/types/activex-shdocvw/ @zspitz
/types/activex-shell/ @zspitz
/types/activex-stdole/ @zspitz
/types/activex-vbide/ @zspitz
/types/activex-wia/ @zspitz
/types/activex-word/ @zspitz
/types/adal-angular/ @unindented @aciccarello
/types/add-zero/ @Roaders
/types/adlib/ @Esri @MikeTschudi
/types/adm-zip/ @jvilk @abner @BendingBender
/types/adone/ @s0m3on3 @maxveres
/types/aes-js/ @federicobond
/types/aframe/ @devpaul @bertoritger @twastvedt
/types/agenda/ @meirgottlieb @princjef
/types/agent-base/ @Shinigami92
/types/agora-rtc-sdk/ @menthays
/types/airbnb-prop-types/ @milesj
/types/airtable/ @bvalosek
/types/ajv-errors/ @afshawnlotfi
/types/ajv-merge-patch/ @littlepiggy03
/types/ale-url-parser/ @msn0
/types/alertify/ @jjeffery
/types/alexa-sdk/ @petebeegle @hoo29 @pascalwhoop @blforce @rk-7 @alexmalcoci
/types/alexa-voice-service/ @dolanmiu
/types/algebra.js/ @CaselIT
/types/algoliasearch/ @cbaptiste @haroenv @samouss @keichinger @neryortez @antoinerousseau @lucapasquale @adeve
/types/algoliasearch-helper/ @gburgett @haroenv @samouss
/types/ali-app/ @taoqf
/types/ali-oss/ @ptrdu
/types/align-text/ @claasahl
/types/allure-js-commons/ @zaqqaz
/types/almost-equal/ @cmaddalozzo
/types/alt/ @Shearerbeard
/types/amap-js-api/ @breeze9527
/types/amap-js-api-arrival-range/ @breeze9527
/types/amap-js-api-autocomplete/ @breeze9527
/types/amap-js-api-city-search/ @breeze9527
/types/amap-js-api-district-search/ @breeze9527
/types/amap-js-api-geocoder/ @breeze9527
/types/amap-js-api-geolocation/ @breeze9527
/types/amap-js-api-indoor-map/ @breeze9527
/types/amap-js-api-line-search/ @breeze9527
/types/amap-js-api-map3d/ @breeze9527
/types/amap-js-api-place-search/ @breeze9527
/types/amap-js-sdk/ @agasbzj
/types/amazon-cognito-auth-js/ @scottescue
/types/amazon-product-api/ @MattiLehtinen @alien35
/types/amcharts/ @ldrick @grothem
/types/amp/ @jewbre
/types/amp-message/ @jewbre
/types/amphtml-validator/ @kevincharm
/types/amplifier/ @joeriks @superheri
/types/amplify/ @joeriks
/types/amplify-deferred/ @joeriks @laurentiustamate94
/types/amplitude-js/ @Asido @danmana
/types/amqp/ @seikho @jonnysparkplugs
/types/amqp-connection-manager/ @rogierschouten
/types/amqp-rpc/ @wokim
/types/amqplib/ @mnahkies @abreits @nfantone @zelein
/types/analytics-node/ @fongandrew @thomasthiebaud
/types/anchor-js/ @xt0rted
/types/angular/ @diegovilar @thorn0 @calebstdenis @leonard-thieu @scipper
/types/angular-agility/ @rolandzwaga
/types/angular-animate/ @michelsalib @adidahiya @rasch @codyschaaf
/types/angular-block-ui/ @lassebn @sclassen @renjfk
/types/angular-bootstrap-calendar/ @Odrin
/types/angular-bootstrap-lightbox/ @rolandzwaga
/types/angular-breadcrumb/ @marctalary
/types/angular-clipboard/ @bradfordwagner
/types/angular-cookie/ @borislavjivkov
/types/angular-cookies/ @diegovilar @aciccarello
/types/angular-deferred-bootstrap/ @Ritzlgrmft
/types/angular-desktop-notification/ @Dona278
/types/angular-dialog-service/ @wcomartin
/types/angular-dynamic-locale/ @stephenlautier
/types/angular-environment/ @terrawheat
/types/angular-es/ @mbutsykin
/types/angular-feature-flags/ @borislavjivkov
/types/angular-file-saver/ @deenairn
/types/angular-file-upload/ @cyrilgandon
/types/angular-formly/ @scatcher
/types/angular-fullscreen/ @julienpa
/types/angular-gettext/ @AkosLukacs
/types/angular-google-analytics/ @cyrilschumacher @Toxantron
/types/angular-gridster/ @jpmnteiro
/types/angular-growl-v2/ @mkp05
/types/angular-hotkeys/ @jlz27 @reppners @cyrilgandon
/types/angular-http-auth/ @vvakame
/types/angular-httpi/ @Kukks
/types/angular-idle/ @mthamil
/types/angular-jwt/ @rerezz
/types/angular-load/ @david-gang
/types/angular-loading-bar/ @stephenlautier @tyronedougherty
/types/angular-local-storage/ @kenfdev @dona278
/types/angular-localforage/ @reppners
/types/angular-locker/ @nkovacic
/types/angular-material/ @blbigelow @PeterHajdu @Dona278 @geertjansen @eknowles
/types/angular-media-queries/ @jpmnteiro
/types/angular-meteor/ @pgrm
/types/angular-mocks/ @diegovilar @daltin @thorn0
/types/angular-modal/ @paullessing
/types/angular-oauth2/ @anteriovieira
/types/angular-pdfjs-viewer/ @bastienmoulia
/types/angular-permission/ @vmishevski
/types/angular-promise-tracker/ @rufusl
/types/angular-q-extras/ @mistic100
/types/angular-q-spread/ @rafw87
/types/angular-resource/ @diegovilar @miffels
/types/angular-route/ @park9140 @gkalpak
/types/angular-sanitize/ @diegovilar
/types/angular-scenario/ @RomanoLindano
/types/angular-scroll/ @samherrmann
/types/angular-signalr-hub/ @AdamSantaniello
/types/angular-spinner/ @Biegal
/types/angular-storage/ @mdekrey
/types/angular-strap/ @samherrmann @mkannwischer
/types/angular-toastr/ @nkovacic @trodi
/types/angular-toasty/ @muenchdo
/types/angular-tooltips/ @leonard-thieu
/types/angular-translate/ @michelsalib @GabrielGil
/types/angular-ui-bootstrap/ @xt0rted @ry8806 @alfiej
/types/angular-ui-router/ @michelsalib @matiishyn @mikehaas763
/types/angular-ui-scroll/ @marknadig
/types/angular-ui-sortable/ @thgreasi
/types/angular-ui-tree/ @CalvinFernandez
/types/angular-websocket/ @nickveys
/types/angular-wizard/ @mjurisic @rwwilden
/types/angular-xeditable/ @jpmnteiro
/types/angular.throttle/ @reppners
/types/angularfire/ @thSoft
/types/angularlocalstorage/ @horiuchi
/types/angulartics/ @bateast2
/types/animation-frame/ @qinfchen
/types/animejs/ @A-Babin @supaiku0
/types/annyang/ @hisham @theluk
/types/ansi/ @Gustavo6046
/types/ansi-colors/ @rogierschouten @BendingBender
/types/ansi-colors/v1/ @rogierschouten
/types/ansi-escape-sequences/ @aomarks
/types/ansi-regex/ @mvachhar @ffflorian
/types/ansi-styles/ @brynbellomy @plylrnsdy
/types/ansicolors/ @balupton
/types/antlr4/ @mcchatman8009
/types/antlr4-autosuggest/ @jonfreedman
/types/any-db/ @rogierschouten
/types/any-db-transaction/ @rogierschouten
/types/anymatch/ @BendingBender
/types/aos/ @shermendev
/types/apex.js/ @y13i
/types/aphrodite/ @asvetliakov
/types/api-error-handler/ @tkrotoff
/types/apicache/ @danielsogl
/types/apigee-access/ @CasperSkydt
/types/apollo-codegen/ @bradleyayers @kostspielig
/types/apollo-upload-client/ @Slessi
/types/apostrophe/ @afholderman
/types/app-module-path/ @darkwebdev
/types/app-root-dir/ @chenyang-biu
/types/app-root-path/ @shantmarouti
/types/appdmg/ @unindented
/types/appframework/ @kyo-ago
/types/apple-mapkit-js/ @kilghaz
/types/applepayjs/ @martincostello
/types/appletvjs/ @brainded
/types/applicationinsights-js/ @markwolff @jpiyali @barustum
/types/aqb/ @Athenkosi-Mase
/types/arangodb/ @pluma
/types/arbiter/ @arash16
/types/arcgis-js-api/ @Esri @bsvensson
/types/arcgis-js-api/v3/ @Esri @bsvensson
/types/arcgis-rest-api/ @JeffJacobson
/types/arcgis-to-geojson-utils/ @JeffJacobson
/types/architect/ @greuze
/types/archiver/ @dolanmiu @crevil
/types/archy/ @vvakame
/types/are-we-there-yet/ @brianloveswords
/types/argon2-browser/ @ivangabriele
/types/argparse/ @arcticwaters @tlaziuk @eps1lon @cakoose
/types/args/ @Slessi
/types/argv/ @hookclaw
/types/arr-diff/ @BendingBender
/types/arr-union/ @mrmlnc
/types/array-binarysearch.closest/ @hvoecking
/types/array-find-index/ @samverschueren
/types/array-foreach/ @skysteve
/types/array-sort/ @DanielMSchmidt
/types/array-unique/ @CSLTech
/types/array.prototype.flatmap/ @hallettj
/types/artillery/ @kmccoan-allocadia
/types/asana/ @tkqubo
/types/asap/ @fpascutti
/types/ascii-art/ @lukaselmer
/types/ascii2mathml/ @RagibHasin
/types/asenv/ @remisery
/types/asn1/ @jgeurts
/types/asn1js/ @microshine
/types/aspnet-identity-pw/ @jt000
/types/assert/ @nicoabie @LinusU
/types/assert-equal-jsx/ @seryl
/types/assert-plus/ @KostyaTretyak
/types/assertsharp/ @brunolm
/types/assets-webpack-plugin/ @kryops
/types/astring/ @nkappler
/types/async/ @borisyankov @kern0 @Penryn @fenying @pascalmartin @Dmitri1337
/types/async-busboy/ @hirochachacha
/types/async-cache/ @BendingBender
/types/async-lock/ @elisee @afharo @rhymmor
/types/async-polling/ @Goldsmith42
/types/async-retry/ @albertywu @MeLlamoPablo @rafsawicki
/types/async.nexttick/ @pyrho
/types/asynciterator/ @rubensworks
/types/athenajs/ @warpdesign
/types/atlaskit__button/ @dijimsta
/types/atlaskit__calendar/ @lstanden
/types/atlaskit__inline-edit/ @lstanden
/types/atlaskit__layer/ @lstanden
/types/atlaskit__single-select/ @lstanden
/types/atlaskit__tree/ @benhjames
/types/atlassian-crowd-client/ @mtgto
/types/atmosphere.js/ @toedter @Mory1879 @Scipion
/types/atob/ @johngeorgewright
/types/atom/ @GlenCFL @smhxx @lierdakil
/types/atom-keymap/ @GlenCFL
/types/atom-mocha-test-runner/ @GlenCFL
/types/atpl/ @soywiz
/types/audiosprite/ @Perlmint
/types/auth-header/ @ForbesLindesay
/types/auth0/ @westy92 @ianhowe76 @dauledk @dancrumb
/types/auth0-angular/ @homesar
/types/auth0-js/ @adrianchia @mdurrant @peterblazejewicz @bkotrys @marknelissen
/types/auth0-js/v7/ @advancedrei
/types/auth0-lock/ @carusology @goldcaddy77 @lfaudreejr @willcaul
/types/auth0.widget/ @advancedrei
/types/auto-launch/ @rhysd @unindented
/types/auto-sni/ @janwo
/types/autobahn/ @darkl @a904guy @valepu @glenroy37 @spcfran
/types/autolinker/ @leonyu
/types/autoprefixer/ @odnamrataizem @murt
/types/autosize/ @kingdango @keika299 @NeekSandhu
/types/autosuggest-highlight/ @senukartur
/types/await-timeout/ @szhu
/types/awesomplete/ @webbiesdk @bmdixon @tbekolay @chrislopresto
/types/aws-iot-device-sdk/ @niik @mlamp
/types/aws-lambda/ @skarum @tobyhede @buggy @y13i @wwwy3y3 @OrthoDex @MichaelMarner @daniel-cottone @kostya-misura @coderbyheart @palmithor @daniloraisi @simonbuchan @Haydabase @repl-chris @aneilbaboo @jeznag @louislarry @dpapukchiev @ohookins @trevor-leach @jagregory @dalen @loikg @skyzenr @redlickigrzegorz
/types/aws-param-store/ @jasonthomasgray
/types/aws-serverless-express/ @threesquared @jcaffey @mattmeye @albertovasquez
/types/aws4/ @ajcrites
/types/axe-webdriverjs/ @JoshuaKGoldberg @tylerkrupicka
/types/axel/ @ruslan-molodyko
/types/axios-cancel/ @TheDSCPL
/types/axios-case-converter/ @dkniffin
/types/axios-token-interceptor/ @innovation-team
/types/axon/ @jewbre
/types/azure/ @AndrewGaspar @antiveeranna @SomaticIT
/types/azure-mobile-services-client/ @dmorosinotto
/types/azure-sb/ @Azure
/types/b2a/ @PatPL
/types/b64-lite/ @JasonHK
/types/b_/ @outring
/types/babel-code-frame/ @mohsen1
/types/babel-core/ @yortus @marvinhagemeister
/types/babel-generator/ @yortus @johnnyestilles
/types/babel-plugin-react-pug/ @jpap
/types/babel-plugin-syntax-jsx/ @marvinhagemeister
/types/babel-template/ @yortus @marvinhagemeister
/types/babel-traverse/ @yortus @marvinhagemeister @rpetrich
/types/babel-types/ @yortus @baxtersa @marvinhagemeister @bcherny
/types/babel-webpack-plugin/ @j-f1
/types/babel__code-frame/ @mohsen1 @ForbesLindesay
/types/babel__core/ @yortus @marvinhagemeister @mgroenhoff @Jessidhia
/types/babel__generator/ @yortus @johnnyestilles @mgroenhoff
/types/babel__template/ @yortus @marvinhagemeister @mgroenhoff
/types/babel__traverse/ @yortus @marvinhagemeister @rpetrich @mgroenhoff
/types/babelify/ @TeamworkGuy2 @marvinhagemeister
/types/babylon/ @yortus @marvinhagemeister
/types/babylon-walk/ @czbuchi
/types/babyparse/ @cdiddy77
/types/backbone/ @borisyankov @nvivo @kenjiru @jjoekoullas @jgonggrijp @zieka
/types/backbone-associations/ @craigbrett17
/types/backbone-fetch-cache/ @delphinus35
/types/backbone-relational/ @eirikhm @jgonggrijp
/types/backbone.layoutmanager/ @hejiang2000
/types/backbone.localstorage/ @lgrignon
/types/backbone.marionette/ @zhamid @nvivo @sventschui @razorness @confususs @jjoekoullas @jgonggrijp
/types/backbone.paginator/ @Nyamazing
/types/backbone.radio/ @alphaleonis @jgonggrijp
/types/backgrid/ @jlujan
/types/backlog-js/ @vvatanabe
/types/backo2/ @Retsam
/types/backoff/ @BendingBender
/types/baconjs/ @alexander-matsievsky @gekkio
/types/badgen/ @m5d215
/types/bagpipes/ @micmro
/types/baidu-app/ @taoqf
/types/balanced-match/ @adamzerella
/types/bandagedbd__bdapi/ @Acidic9
/types/barbellweights/ @evelijn
/types/barcode/ @pvomhoff
/types/bardjs/ @TepigMC
/types/base-64/ @dolanmiu
/types/base-x/ @chrootsu @BendingBender
/types/base-x/v1/ @chrootsu
/types/base16/ @alechill
/types/base64-arraybuffer/ @jbencook
/types/base64-async/ @BendingBender
/types/base64-js/ @pe8ter
/types/base64-url/ @urish
/types/base64topdf/ @lucasriondel
/types/bases/ @harikv
/types/bash-glob/ @mrmlnc
/types/basic-auth/ @moonpyk @vesse
/types/basicauth-middleware/ @nchaulet
/types/batch-stream/ @drudge
/types/battery-level/ @BendingBender
/types/bazinga-translator/ @alexndlm
/types/bcrypt/ @codeanimal @IOAyman @dstapleton92
/types/bcryptjs/ @RafaelKr @branoholy
/types/bdfjs/ @jeremejevs
/types/beats/ @urish
/types/bech32/ @micksatana
/types/behavior3/ @carrrywu
/types/bell/ @SimonSchick
/types/bem-cn/ @selkinvitaly
/types/bencode/ @tobenna
/types/better-curry/ @pocesar
/types/better-queue/ @maozedong
/types/better-scroll/ @stoneChen @cnjack
/types/better-sqlite3/ @Morfent @matrumz @sant123 @loghorn @andykais @mrkstwrt
/types/bezier-easing/ @ptlis
/types/bezier-js/ @danmarshall @Epskampie
/types/bgiframe/ @sumegizoltan
/types/bidirectional-map/ @helenanderson
/types/big.js/ @nycdotnet @googol
/types/bigi/ @mhegazy
/types/bigint/ @Evgenus
/types/bignum/ @Patman64
/types/bigscreen/ @dduugg
/types/bin-pack/ @orentrutner
/types/binary-parser/ @riggs @dolanmiu @yuhr
/types/binaryextensions/ @BendingBender
/types/bind-ponyfill/ @skysteve
/types/bindings/ @unindented
/types/bintrees/ @CjS77
/types/bip21/ @stefanhuber
/types/bip32/ @eduhenke
/types/bip38/ @micksatana
/types/bip39/ @micksatana
/types/bit-array/ @mudkipme
/types/bit-twiddle/ @adamzerella
/types/bitcoinjs-lib/ @mhegazy @dlebrecht @rbuckton @micksatana @youssefgh @kento1218
/types/bitcore-lib/ @lautarodragan
/types/bittorrent-protocol/ @feross @tlaziuk
/types/bitwise-xor/ @rogierschouten @BendingBender
/types/bl/ @Bartvds @reconbot
/types/blacklist/ @mhegazy
/types/blazy/ @julienpa
/types/blessed/ @brynbellomy @skellock @mamachanko
/types/blissfuljs/ @fskorzec
/types/blob-stream/ @erichillah
/types/blob-to-buffer/ @nrlquaker
/types/blob-util/ @WorldMaker
/types/blocked/ @l-jonas
/types/blockies/ @LogvinovLeon
/types/blocks/ @ksmigiel
/types/bloem/ @danwbyrne
/types/bloom-filter/ @danwbyrne
/types/bloomfilter/ @slawiko
/types/blue-tape/ @sodatea
/types/bluebird/ @lhecker
/types/bluebird/v2/ @Bartvds @falsandtru
/types/bluebird/v1/ @Bartvds
/types/bluebird-global/ @d-ph
/types/bluebird-retry/ @pvomhoff
/types/blueimp-md5/ @rmartone @mkohlmyr
/types/bn.js/ @LogvinovLeon @HenryNguyen5 @Gilthoniel
/types/body-parser/ @santialbo @vilic @dreampulse @blendsdk @tlaziuk @jwalton
/types/body-parser-xml/ @tbounsiar
/types/body-scroll-lock/ @kimcoder
/types/bonjour/ @quentin-ol @octo-sniffle
/types/bookshelf/ @arcticwaters @vesse
/types/boom/ @rogatty @AJamesPhillips @jineshshah36 @TimonVS @danielmachado
/types/boom/v4/ @rogatty @AJamesPhillips @jineshshah36 @danielmachado
/types/boom/v3/ @rogatty
/types/bootbox/ @vbortone @konpikwastaken @kanup @icereed @trodi @stannynuytkens @renjfk
/types/bootpag/ @rdeneau
/types/bootstrap/ @denisname
/types/bootstrap/v3/ @borisyankov @denisname
/types/bootstrap-3-typeahead/ @AndersonFriaca
/types/bootstrap-colorpicker/ @aleksandar-manukov
/types/bootstrap-datepicker/ @borisyankov
/types/bootstrap-fileinput/ @CheCoxshall
/types/bootstrap-growl-ifightcrime/ @AndersonFriaca
/types/bootstrap-maxlength/ @danmana
/types/bootstrap-menu/ @superheri
/types/bootstrap-notify/ @niemyjski @mouse0270 @robert-voica
/types/bootstrap-select/ @LKay
/types/bootstrap-slider/ @dbeckwith @leonard-thieu
/types/bootstrap-switch/ @johnmbaughman
/types/bootstrap-table/ @talatbaig
/types/bootstrap-toggle/ @gricey432
/types/bootstrap-touchspin/ @albinsunnanbo
/types/bootstrap-treeview/ @jbtronics
/types/bootstrap-validator/ @BradyLiles
/types/bootstrap.paginator/ @derikwhittaker
/types/bootstrap.timepicker/ @derikwhittaker @heatherbooker
/types/bootstrap.v3.datetimepicker/ @katonap
/types/bootstrap.v3.datetimepicker/v3/ @bayitajesi
/types/bootstrap3-dialog/ @nakupanda @cnboland
/types/bounce.js/ @cherrry
/types/box2d/ @jbaldwin
/types/bpmn-moddle/ @haydos89
/types/brace-expansion/ @BendingBender
/types/braces/ @vemoo @mrmlnc
/types/braft-editor/ @petitspois
/types/braintree/ @smrubin
/types/braintree-web/ @chlela
/types/breeze/ @borisyankov
/types/bricks.js/ @kondi
/types/bro-fs/ @ffflorian
/types/broccoli-plugin/ @dfreeman
/types/brorand/ @chrootsu
/types/browser-bunyan/ @PaulLockwood @kryops
/types/browser-fingerprint/ @LKay
/types/browser-harness/ @scriby
/types/browser-pack/ @TeamworkGuy2
/types/browser-report/ @JTOne123
/types/browser-resolve/ @marionebl
/types/browser-sync/ @joeskeen @aznnomness @yuma84
/types/browserify/ @AndrewGaspar @jvilk @leonard-thieu @LinusU
/types/browserslist/ @davecardwell @AndrewLeedham
/types/browserslist-useragent/ @nju33
/types/bs58/ @chrootsu @BendingBender
/types/bs58/v3/ @chrootsu
/types/bser/ @claasahl
/types/bson/ @horiuchi @CaselIT @justingrant
/types/btoa/ @johngeorgewright @bricka
/types/buble/ @Kocal
/types/bucks/ @zaneli
/types/buffer-compare/ @chrootsu
/types/buffer-crc32/ @BendingBender
/types/buffer-equal/ @Bartvds
/types/buffer-from/ @burnnat
/types/buffer-reader/ @nrlquaker
/types/buffer-xor/ @danwbyrne
/types/buffers/ @rhencke
/types/bufferstream/ @Bartvds
/types/build-output-script/ @BendingBender
/types/bull/ @bgrieder @JProgrammer @marshall007 @weeco @blaugold @iamolegga @koblas @bondz @wuha-team @aleccool213 @danmana @kjellmorten @pc-jedi @lenovouser
/types/bull/v2/ @bgrieder @JProgrammer
/types/bump-regex/ @silkentrance
/types/bunnymq/ @cyrilschumacher
/types/bunyan/ @amikhalev
/types/bunyan-blackhole/ @olivr70
/types/bunyan-bugsnag/ @pasieronen
/types/bunyan-config/ @cyrilschumacher
/types/bunyan-format/ @dex4er
/types/bunyan-prettystream/ @jasonswearingen @enlight
/types/bunyan-seq/ @raybooysen
/types/bunyan-winston-adapter/ @stevehipwell
/types/burns/ @timolinn
/types/busboy/ @jacobbaskin
/types/business-rules-engine/ @rsamec
/types/bwip-js/ @MugeSo
/types/byline/ @reppners
/types/byte-range/ @BendingBender
/types/bytebuffer/ @cappellin
/types/bytes/ @danny8002 @believer
/types/bytewise/ @danwbyrne
/types/c3/ @mcliment @gerinjacob @denyo @dmitryshindin @timn @natemara
/types/cache-manager/ @GausSim
/types/cacheable-request/ @BendingBender @paulmelnikow
/types/cached-path-relative/ @TeamworkGuy2
/types/cadesplugin/ @Delagen @kmvi
/types/cal-heatmap/ @RetroChrisB
/types/caller/ @ignocide
/types/callsite/ @newclear
/types/calq/ @eirikhm
/types/camaro/ @tuananh
/types/camelcase-keys-deep/ @englund0110
/types/camljs/ @andrei-markeev
/types/camo/ @lucasmciruzzi
/types/cancan/ @Vincent-Pang
/types/caniuse-api/ @davecardwell
/types/caniuse-lite/ @mutech
/types/cannon/ @clark-stevenson @Gelio
/types/canvas-confetti/ @matracey
/types/canvas-gauges/ @Mikhus
/types/canvasjs/ @brutalimp
/types/capitalize/ @frederickfogerty
/types/capture-console/ @AustonZ
/types/carbon__colors/ @vpicone
/types/carbon__layout/ @vpicone
/types/carbon__motion/ @vpicone
/types/carbon__themes/ @vpicone
/types/carbon__type/ @vpicone
/types/card-validator/ @ChanceM
/types/carlo/ @adierkens
/types/case-sensitive-paths-webpack-plugin/ @r3nya
/types/caseless/ @downace @mastermatt @forivall
/types/cash/ @akvlko
/types/casperjs/ @jedmao @urielch
/types/cassandra-driver/ @Svjard @pc-jedi @michal-b-kaminski
/types/cassanknex/ @bioball
/types/catbox/ @jasonswearingen @AJamesPhillips @saboya
/types/catbox/v7/ @jasonswearingen @AJamesPhillips
/types/catbox-memory/ @SimonSchick
/types/catbox-redis/ @SimonSchick
/types/cavy/ @tyler-hoffman @AbigailMcP
/types/cbor/ @pushplay
/types/ccap/ @taoqf
/types/center-align/ @claasahl
/types/centra/ @twooster
/types/cesium/ @Zuzon @hnipps @szechyjs @golyalpha
/types/cfn-response/ @ivoisbelongtous
/types/chai/ @jedmao @Bartvds @AGBrown @olivr70 @mwistrand @joshuakgoldberg @shaunluttin @Naktibalda @micksatana @ErikSchierboom
/types/chai/v2/ @Bartvds @AGBrown
/types/chai-almost/ @kclnn
/types/chai-arrays/ @clementprevot
/types/chai-as-promised/ @jt000 @Kuniwak @leonard-thieu @lazerwalker @mattbishop
/types/chai-datetime/ @cliffburger @mattbishop
/types/chai-dom/ @mattlewis92
/types/chai-enzyme/ @asvetliakov
/types/chai-fs/ @dimitardanailov
/types/chai-fuzzy/ @Bartvds
/types/chai-jest-snapshot/ @mattvperry
/types/chai-jquery/ @kazimanzurrashid
/types/chai-json-schema/ @ulrichheiniger
/types/chai-moment/ @chrisgodsey
/types/chai-oequal/ @mizunashi-mana
/types/chai-roughly/ @swist
/types/chai-spies/ @kuzn-ilya @harm-less @jounisuo
/types/chai-string/ @nmalaguti
/types/chai-subset/ @delta62 @AGBrown
/types/chai-uuid/ @harm-less
/types/chai-webdriverio/ @sherlock1982
/types/chai-xml/ @jedigo
/types/chalk-animation/ @BendingBender
/types/chalk-pipe/ @jedmao
/types/chance/ @cbowdon @brikou @cafesanu @colbywhite
/types/change-emitter/ @iskandersierra
/types/changelog-parser/ @adamzerella
/types/chardet/ @Gebatzens
/types/charm/ @Xananax
/types/charset/ @cspotcode
/types/chart.js/ @anuti @FabienLavocat @KentarouTakeda @larrybahr @mernen @josefpaij @danmana @guillaume-ro-fr @archy-bold @braincore @frabnt @alexdor @mahnuh @Conrad777 @adripanico
/types/chartist/ @mtgibbs @psimonski @affilnost @sunnyrjuneja
/types/chartmogul-node/ @chartmogul
/types/chayns/ @HenningKuehl
/types/check-sum/ @BendingBender
/types/check-types/ @idchlife
/types/checkstyle-formatter/ @mhegazy
/types/checksum/ @rogierschouten
/types/cheerio/ @blittle @wmaurer @umarniz @LiJinyao @chennakrishna8 @AzSiAz @nwtgck
/types/chess.js/ @JacobFischer
/types/chessboardjs/ @sliverb @davidmpaz
/types/child-process-promise/ @TheDSCPL
/types/chmodr/ @BendingBender
/types/chordsheetjs/ @adamsbloom
/types/chosen-js/ @borisyankov @denisname
/types/chownr/ @BendingBender
/types/chroma-js/ @invliD @mpacholec
/types/chroma-js/v0/ @invliD
/types/chrome/ @matthewkimber @otiai10 @couven92 @rreverser @sreimer15 @MatCarlson @ekinsol
/types/chrome-apps/ @niikoo @AdamLay @pine613 @mzsm @RReverser @pyle @matthewkimber @otiai10 @couven92 @rreverser @sreimer15
/types/chromecast-caf-receiver/ @craigrbruce
/types/chromecast-caf-sender/ @samuelmaddock
/types/chromedriver/ @pe8ter
/types/chunk/ @ffflorian
/types/cipher-base/ @adamzerella
/types/circuit-breaker-js/ @DeTeam
/types/circular-dependency-plugin/ @jeremejevs
/types/circular-json/ @jpevarnek
/types/ckeditor/ @wittwert @stuartlong @viktorpegy
/types/ckeditor/v2/ @wittwert
/types/ckeditor__ckeditor5-core/ @denisname
/types/ckeditor__ckeditor5-engine/ @denisname
/types/ckeditor__ckeditor5-utils/ @denisname
/types/clamp-js/ @Hikariii
/types/clamp-js-main/ @sinziananicolae
/types/classnames/ @adidahiya @JKillian @seansfkelley @mradamczyk @marvinhagemeister
/types/cldrjs/ @RamanBut-Husaim @gcastre
/types/clean-css/ @tkrotoff @GolaWaya
/types/clean-css/v3/ @tkrotoff
/types/clean-regexp/ @BendingBender
/types/clearbladejs-client/ @ClearBlade
/types/clearbladejs-node/ @ClearBlade
/types/clearbladejs-server/ @ClearBlade
/types/cleave.js/ @clentfort @jasongi-at-sportsbet @sashashakun
/types/cli/ @kayahr
/types/cli-box/ @athasach
/types/cli-color/ @ChaosinaCan
/types/cli-interact/ @ffflorian
/types/cli-progress/ @mhegazy
/types/cli-spinner/ @janslow
/types/cli-spinners/ @BendingBender
/types/cli-table/ @arylo
/types/cli-table2/ @mgroenhoff
/types/cli-truncate/ @danwbyrne
/types/client-sessions/ @netroy
/types/clientjs/ @icopp
/types/cliff/ @brynbellomy
/types/clipboard/ @impworks
/types/clipboard-js/ @markwongsk
/types/clmtrackr/ @hellochar
/types/clndr/ @jasperjn
/types/clockpicker/ @jfcere
/types/clone-deep/ @tanfonto
/types/cloneable-readable/ @qlonik @vaskevich
/types/cloner/ @matrumz
/types/closure-compiler/ @mprobst
/types/cloud-env/ @Morfent
/types/cloudflare-apps/ @MartynasZilinskas
/types/clovelced-plugin-audiomanagement/ @marckassay
/types/cls-hooked/ @aleung
/types/clui/ @farzadmf
/types/clusterize.js/ @Pr1st0n
/types/cmd-shim/ @cspotcode
/types/co/ @doniyor2109
/types/co-body/ @geoffreak
/types/co-views/ @devlee @geoffreak
/types/code/ @prashaantt
/types/codemirror/ @mihailik @nrbernard @Pr1st0n @rileymiller @toddself
/types/codependency/ @morphatic
/types/coffeeify/ @tkQubo
/types/coinbase/ @rogierschouten
/types/coinbase-commerce-node/ @JorgenVatle
/types/coinlist/ @BendingBender
/types/coinstring/ @mhegazy
/types/collections/ @scarabedore
/types/collectionsjs/ @jaymeh
/types/color/ @Airlun @jameswlane
/types/color/v2/ @Airlun
/types/color/v1/ @LKay
/types/color/v0/ @LKay
/types/color-check/ @ecraig12345
/types/color-convert/ @Airlun
/types/color-diff/ @katsanva
/types/color-name/ @Ailrun
/types/color-namer/ @in19farkt
/types/color-string/ @BendingBender @danmarshall
/types/color-support/ @Yavanosta
/types/colorbrewer/ @mtraynham
/types/colornames/ @manuth @blturner
/types/colresizable/ @gilleswaeber
/types/com.darktalker.cordova.screenshot/ @akarienta
/types/com.wikitude.phonegap.wikitudeplugin/ @zbarbuto
/types/combine-source-map/ @TeamworkGuy2
/types/combined-stream/ @felixge @tlaziuk @konpikwastaken
/types/combokeys/ @iclanton
/types/cometd/ @derekcicerone @unindented @alxHenry @hagl
/types/command-exists/ @BendingBender
/types/command-line-args/ @75lb
/types/command-line-args/v4/ @CzBuCHi @75lb
/types/command-line-commands/ @CzBuCHi
/types/command-line-usage/ @matrumz @Dvorsky
/types/commangular/ @hiraash
/types/comment-json/ @Jason3S
/types/commercetools__enzyme-extensions/ @screendriver
/types/common-errors/ @icopp
/types/common-prefix/ @seangenabe
/types/common-tags/ @zuzusik @tzupengwang @BendingBender
/types/commondir/ @leonard-thieu
/types/commonmark/ @nicojs @leonard-thieu
/types/compare-func/ @fennibay
/types/compare-function/ @wolfgang42
/types/compare-version/ @jpevarnek
/types/compare-versions/ @LogvinovLeon
/types/complex/ @AyaMorisawa @pavasich
/types/complex.js/ @adamzerella
/types/component-emitter/ @psnider
/types/compose-function/ @denis-sokolov
/types/compressible/ @BendingBender
/types/compression/ @santialbo @rburgt
/types/compression-webpack-plugin/ @dublicator @rhys-vdw
/types/compute-quantile/ @mrmlnc
/types/compute-stdev/ @mrmlnc
/types/concat-map/ @claasahl
/types/concat-stream/ @jmarianer
/types/concaveman/ @DenisCarriere
/types/confidence/ @jppellerin
/types/config/ @RWander @forrestbice @jndonald3 @albertovasquez
/types/config-yaml/ @Arylo
/types/configstore/ @ArcticLight
/types/configurable/ @jewbre
/types/confit/ @ethanresnick
/types/connect/ @SomaticIT @EvanHahn
/types/connect-busboy/ @pinguet62 @chrisgedrim
/types/connect-datadog/ @moshegood @xzyfer
/types/connect-ensure-login/ @0x6368656174
/types/connect-flash/ @AndreasGassmann
/types/connect-history-api-fallback/ @douglasduteil
/types/connect-history-api-fallback-exclusions/ @tonystonee
/types/connect-livereload/ @SomaticIT
/types/connect-modrewrite/ @tinganho
/types/connect-mongo/ @Syati
/types/connect-mongodb-session/ @NattapongSiri
/types/connect-pg-simple/ @pasieronen
/types/connect-redis/ @xstoudi @sbutler2901
/types/connect-slashes/ @samherrmann
/types/connect-timeout/ @cyrilschumacher
/types/consola/ @Jungwoo-An
/types/console-log-level/ @ofrobots
/types/console-stamp/ @ericbyers @guusdegraeve
/types/console-ui/ @dfreeman
/types/consolidate/ @soywiz @theosherry @nicolashenry
/types/consul/ @chrootsu
/types/contains-path/ @BendingBender
/types/content-disposition/ @bomret
/types/content-range/ @bricka
/types/content-type/ @horiuchi @BendingBender
/types/contentful-resolve-response/ @antonkarsten
/types/contextjs/ @kernhanda
/types/continuation-local-storage/ @rath @heycalmdown @aboveyou00
/types/convert-layout/ @xeningem
/types/convert-source-map/ @AndrewGaspar @mgroenhoff @TeamworkGuy2
/types/convert-string/ @hmajid2301
/types/convict/ @Nemo157 @vesse @elyscape @vanthiyathevan
/types/cookie/ @pine
/types/cookie-parser/ @santialbo @BendingBender
/types/cookie-session/ @borislavjivkov @btomw
/types/cookie-signature/ @lith-light-g
/types/cookie_js/ @slawiko
/types/cookiejar/ @paroxp
/types/cookies/ @WangZishi @jkeylu @BendingBender
/types/copy/ @ffflorian
/types/copy-paste/ @SrTobi
/types/copy-webpack-plugin/ @flying-sheep @avin-kavish
/types/copyfiles/ @ffflorian
/types/cordova-ionic/ @hendrikmaus
/types/cordova-plugin-app-version/ @Ritzlgrmft
/types/cordova-plugin-background-mode/ @Lordnoname
/types/cordova-plugin-badge/ @timbru31
/types/cordova-plugin-ble-central/ @gjunge @peitschie
/types/cordova-plugin-bluetoothclassic-serial/ @tuvokki
/types/cordova-plugin-canvascamera/ @lordazzi
/types/cordova-plugin-device-name/ @larrybahr
/types/cordova-plugin-file-opener2/ @cyrilgandon
/types/cordova-plugin-ibeacon/ @Ritzlgrmft
/types/cordova-plugin-insomnia/ @Ritzlgrmft
/types/cordova-plugin-keyboard/ @danmana @jkfb
/types/cordova-plugin-mapsforge/ @rafw87
/types/cordova-plugin-ms-adal/ @KaiWalter
/types/cordova-plugin-native-keyboard/ @lobo87
/types/cordova-plugin-ouralabs/ @Justin-Credible
/types/cordova-plugin-qrscanner/ @bitjson @jab
/types/cordova-plugin-spinner/ @Justin-Credible
/types/cordova-plugin-x-socialsharing/ @Ritzlgrmft @larrybahr
/types/cordova-sqlite-storage/ @rafw87
/types/cordova-universal-links-plugin/ @broder
/types/cordova_app_version_plugin/ @larrybahr
/types/cordovarduino/ @hendrikmaus
/types/core-js/ @rbuckton @mfdeveloper
/types/core-object/ @dfreeman
/types/correlation-id/ @natemara
/types/cors/ @pluma
/types/cosmiconfig/ @ozum @szeck87 @saadq @jinwoo
/types/cosmiconfig/v4/ @ozum
/types/cote/ @makepost @roblabat
/types/couchbase/ @maouida @fluggo
/types/countdown/ @gjuchault @Ionaru
/types/counterpart/ @santiagodoldan
/types/countries-and-timezones/ @zero51
/types/country-data/ @biltongza
/types/country-list/ @iRoachie @Kimahriman
/types/country-list/v1/ @iRoachie
/types/country-select-js/ @humrochagf
/types/countup.js/ @shermendev
/types/coverup/ @bevalorous
/types/cpx/ @alan-agius4
/types/cqrs-domain/ @blissi
/types/cradle/ @panuhorsmalahti
/types/crc/ @YuJianrong
/types/create-error/ @tkrotoff
/types/create-hash/ @BendingBender
/types/create-hmac/ @BendingBender
/types/create-react-class/ @jgoz
/types/create-subscription/ @Asana @vsiao
/types/create-xpub/ @BendingBender
/types/createjs/ @evilangelist @gyohk
/types/createjs-lib/ @evilangelist @gyohk
/types/credential/ @phuvo
/types/credit-card-type/ @LKay
/types/critters-webpack-plugin/ @JuanJoseGonGi
/types/cron/ @horiuchi @winup
/types/cropperjs/ @stepancar
/types/croppie/ @connor4312 @dklmuc @sarunint @knuthelgesen
/types/cross-spawn/ @Alorel
/types/crossfilter/ @schmuli @iebaker @nordfjord
/types/crossroads/ @diullei
/types/crpc/ @0xdeafcafe
/types/crumb/ @lenovouser @SimonSchick
/types/cryptex/ @brownstein
/types/cryptiles/ @awendland
/types/crypto-js/ @misak113
/types/cryptojs/ @giabao
/types/cryptr/ @rrogowski
/types/cson/ @stpettersens
/types/cson-parser/ @lenovouser
/types/csprng/ @winksaville
/types/csrf/ @markis
/types/css/ @ilich
/types/css-font-loading-module/ @slikts
/types/css-modules/ @NeekSandhu
/types/css-modules-loader-core/ @skovy
/types/css-to-style/ @bengry
/types/css-tree/ @erik-kallen
/types/cssbeautify/ @rictic
/types/cssesc/ @djcsdy
/types/cssnano/ @odnamrataizem
/types/csso/ @screendriver @erik-kallen
/types/csurf/ @horiuchi
/types/csv-stringify/ @rogierschouten @arjenvanderende
/types/csv2json/ @dex4er
/types/csvrow/ @codeanimal
/types/csvtojson/ @EricByers @wcarson
/types/cucumber/ @abraaoalves @jan-molak @isoung @BendingBender @ErikSchierboom
/types/cucumber/v3/ @abraaoalves @jan-molak @isoung @BendingBender @ErikSchierboom
/types/cucumber/v1/ @abraaoalves @jan-molak @isoung @BendingBender
/types/cuint/ @ltetzlaff
/types/currency-formatter/ @mhegazy @davidmpaz
/types/custom-error-generator/ @thmiceli
/types/custom-functions-runtime/ @OfficeDev @akrantz @Zlatkovsky @mscharlock
/types/cwd/ @BendingBender
/types/cwise/ @taoqf
/types/cwise-compiler/ @taoqf
/types/cwise-parser/ @taoqf
/types/cybozulabs-md5/ @pine613
/types/cypress-axe/ @wKovacs64
/types/cytoscape/ @phreed @wy193777 @ypconstante @janniclas @cerberuser
/types/d/ @BendingBender
/types/d3/ @tomwanzek @gustavderdrache @borisyankov @denisname
/types/d3/v4/ @tomwanzek @gustavderdrache @borisyankov @denisname
/types/d3/v3/ @gustavderdrache @borisyankov @MatthiasJobst
/types/d3-array/ @gustavderdrache @borisyankov @tomwanzek @denisname @ledragon
/types/d3-array/v1/ @gustavderdrache @borisyankov @tomwanzek @denisname @ledragon
/types/d3-axis/ @tomwanzek @gustavderdrache @borisyankov @denisname
/types/d3-box/ @lk-chen
/types/d3-brush/ @tomwanzek @gustavderdrache @borisyankov
/types/d3-chord/ @tomwanzek @gustavderdrache @borisyankov
/types/d3-cloud/ @hansrwindhoff @locknono
/types/d3-collection/ @tomwanzek @gustavderdrache @borisyankov
/types/d3-color/ @tomwanzek @gustavderdrache @borisyankov @denisname @ledragon
/types/d3-contour/ @tomwanzek @Ledragon
/types/d3-delaunay/ @BTOdell
/types/d3-dispatch/ @tomwanzek @gustavderdrache @borisyankov @denisname
/types/d3-drag/ @tomwanzek @gustavderdrache @borisyankov
/types/d3-dsv/ @tomwanzek @gustavderdrache @borisyankov @denisname
/types/d3-ease/ @tomwanzek @gustavderdrache @borisyankov
/types/d3-fetch/ @ledragon @denisname
/types/d3-force/ @tomwanzek @gustavderdrache @borisyankov @denisname
/types/d3-format/ @tomwanzek @gustavderdrache @borisyankov @denisname
/types/d3-geo/ @ledragon @tomwanzek @gustavderdrache @borisyankov
/types/d3-graphviz/ @DomParfitt
/types/d3-hexbin/ @uncovertruth @tomwanzek @denisname
/types/d3-hierarchy/ @tomwanzek @gustavderdrache @borisyankov @denisname
/types/d3-hsv/ @arrayjam @denisname
/types/d3-interpolate/ @tomwanzek @gustavderdrache @borisyankov @denisname
/types/d3-path/ @tomwanzek @gustavderdrache @borisyankov
/types/d3-polygon/ @tomwanzek @gustavderdrache @borisyankov
/types/d3-quadtree/ @tomwanzek @gustavderdrache @borisyankov @denisname
/types/d3-queue/ @tomwanzek @gustavderdrache @borisyankov @denisname
/types/d3-random/ @tomwanzek @gustavderdrache @borisyankov
/types/d3-request/ @Ledragon @gustavderdrache @borisyankov @tomwanzek @denisname
/types/d3-sankey/ @tomwanzek @gustavderdrache
/types/d3-scale/ @tomwanzek @gustavderdrache @borisyankov @denisname
/types/d3-scale/v1/ @tomwanzek @gustavderdrache @borisyankov
/types/d3-scale-chromatic/ @Ledragon @gustavderdrache @borisyankov @henriquefm
/types/d3-selection/ @tomwanzek @gustavderdrache @borisyankov @denisname
/types/d3-selection-multi/ @gustavderdrache @borisyankov
/types/d3-shape/ @tomwanzek @gustavderdrache @borisyankov @denisname
/types/d3-time/ @tomwanzek @gustavderdrache @borisyankov @denisname
/types/d3-time-format/ @tomwanzek @gustavderdrache @borisyankov
/types/d3-timer/ @tomwanzek @gustavderdrache @borisyankov @denisname
/types/d3-tip/ @brspnnggrt
/types/d3-transition/ @tomwanzek @gustavderdrache @borisyankov
/types/d3-voronoi/ @tomwanzek @gustavderdrache @borisyankov @denisname
/types/d3-zoom/ @tomwanzek @gustavderdrache @borisyankov @denisname
/types/d3.slider/ @lk-chen
/types/d3kit/ @morphatic
/types/d3pie/ @mc-petry
/types/dagre/ @qinfchen @Frankrike @vilterp @rustedgrail
/types/dagre-d3/ @markwongsk
/types/dagre-layout/ @qinfchen @Frankrike @vilterp
/types/dashify/ @rokt33r
/types/dat.gui/ @gyohk @sonic3d @rroylance @singuerinc
/types/data-driven/ @mrhen
/types/datadog-metrics/ @pushplay
/types/datadog-statsd-metrics-collector/ @xzyfer
/types/datadog-tracer/ @dineshsaravanan
/types/datatables.net/ @Silver-Connection @omidkrad @pragmatrix @CNBoland
/types/datatables.net-autofill/ @andy-maca
/types/datatables.net-buttons/ @Silver-Connection @SammyG4Free @jimhartford
/types/datatables.net-colreorder/ @andy-maca
/types/datatables.net-fixedheader/ @szechyjs @Silver-Connection
/types/datatables.net-rowgroup/ @maixiu
/types/datatables.net-rowreorder/ @baywet
/types/datatables.net-scroller/ @RohdeK
/types/datatables.net-select/ @szechyjs
/types/date-and-time/ @danplisetsky
/types/date-arithmetic/ @HeeL
/types/date-now/ @adamzerella
/types/date-utils/ @adamzerella
/types/date.format.js/ @balrob
/types/dateformat/ @aicest @BendingBender
/types/dateformat/v1/ @aicest
/types/datejs/ @rupertavery
/types/daterangepicker/ @SirMartin @smasala @nertzy
/types/dav/ @ToastHawaii
/types/dayzed/ @samhh
/types/db-migrate-base/ @nickiannone
/types/db-migrate-pg/ @nickiannone
/types/db.js/ @cgwrench
/types/dbus/ @lal12
/types/dc/ @hansrwindhoff @mtraynham @MatthiasJobst
/types/deasync/ @Sicilica
/types/debessmann/ @vkorehov
/types/debounce/ @denis-sokolov @joshuakgoldberg @wcarson
/types/debounce-promise/ @whtsky
/types/debug/ @swook @galtalmor @zamb3zi @brasten @npenin @kristianmitk
/types/decay/ @enaeseth
/types/decode-entities/ @waspothegreat
/types/decode-uri-component/ @BendingBender
/types/decompress/ @plantain-00 @jbethke
/types/decorum/ @dflor003
/types/dedent/ @douglasduteil
/types/deep-assign/ @souldreamer
/types/deep-diff/ @ZauberNerd
/types/deep-equal/ @remojansen @janslow
/types/deep-equal-in-any-order/ @bcaudan
/types/deep-extend/ @rhysd
/types/deep-freeze/ @Bartvds @aluanhaddad
/types/deep-freeze-es6/ @mattbishop
/types/deep-freeze-strict/ @mhegazy
/types/deezer-sdk/ @marco-eckstein
/types/default-gateway/ @BendingBender
/types/defaults/ @IbtihelCHNAB
/types/defaults-deep/ @Kocal
/types/defer-promise/ @niklasf
/types/defined/ @BendingBender
/types/deglob/ @saadq
/types/deku/ @pocka
/types/delaunator/ @DenisCarriere @BTOdell @tobiaskraus
/types/delegated-events/ @cwparsons
/types/delete-empty/ @Alorel
/types/deline/ @iarroyo5
/types/deluge/ @Diasiare
/types/denodeify/ @joaomoreno
/types/deoxxa-content-type/ @pine613
/types/depcheck/ @ark120202
/types/depd/ @danny8002 @BendingBender
/types/dependency-tree/ @joscha
/types/deployjava/ @cyrilschumacher
/types/deprecate/ @Toilal
/types/deps-sort/ @TeamworkGuy2
/types/derhuerst__cli-on-key/ @jacobbubu
/types/destroy/ @BendingBender
/types/destroy-on-hwm/ @BendingBender
/types/detect-character-encoding/ @BendingBender