forked from effector/effector
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.flowconfig
1015 lines (1009 loc) · 43.1 KB
/
.flowconfig
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
[lints]
all=warn
# Disable until https://github.com/facebook/flow/issues/7473 resolved
dynamic-export=off
untyped-type-import=error
[libs]
./node_modules/@babel/types/lib/index.js.flow
[version]
>=0.87.0
[include]
[options]
all=false
server.max_workers=1
include_warnings=false
max_header_tokens=5
esproposal.class_instance_fields=enable
esproposal.class_static_fields=enable
esproposal.optional_chaining=enable
esproposal.nullish_coalescing=enable
suppress_comment=\\(.\\|\n\\)*\\$FlowIssue
suppress_comment=\\(.\\|\n\\)*\\$off
suppress_comment=\\(.\\|\n\\)*\\$todo
suppress_type=$FlowIssue
suppress_type=$off
suppress_type=$todo
emoji=true
esproposal.decorators=ignore
module.use_strict=true
esproposal.export_star_as=enable
module.name_mapper='^most$' -> '<PROJECT_ROOT>/flow/most'
module.name_mapper='^chalk$' -> '<PROJECT_ROOT>/flow/chalk'
module.name_mapper='^redux$' -> '<PROJECT_ROOT>/flow/redux'
module.name_mapper='^shelljs$' -> '<PROJECT_ROOT>/flow/shelljs'
module.name_mapper='^effector/\(.+\)$' -> '<PROJECT_ROOT>/src/\1'
module.name_mapper='^effector/flags$' -> '<PROJECT_ROOT>/src/flags.dev'
module.name_mapper='^effector$' -> '<PROJECT_ROOT>/packages/effector'
module.name_mapper='^effector-react$' -> '<PROJECT_ROOT>/packages/effector-react'
module.name_mapper='^effector-vue$' -> '<PROJECT_ROOT>/packages/effector-vue'
[strict]
nonstrict-import
unsafe-getters-setters
untyped-import
untyped-type-import
[ignore]
.*/.history/.*
.*/node_modules/.*
<PROJECT_ROOT>/src/graphite/tarjan/*
<PROJECT_ROOT>/src/web/*
<PROJECT_ROOT>/\.vscode/*
<PROJECT_ROOT>/\.cache/*
<PROJECT_ROOT>/src/DataStructures/*
<PROJECT_ROOT>/bench/*
<PROJECT_ROOT>/coverage/*
<PROJECT_ROOT>/dist/*
<PROJECT_ROOT>/docs/*
<PROJECT_ROOT>/examples/*
<PROJECT_ROOT>/tools/builder\.js
<PROJECT_ROOT>/npm/*
<PROJECT_ROOT>/scripts/*
💩 🙈
💩 ignored total:
💩
💩 ignored typings:
💩 enzyme, eventemitter2, fs-extra, immutable, invariant, jest, most, raf, react-test-renderer, redux, shelljs, symbol-observable, warning
💩 active:
💩
💩 run again:
💩 IGNORED="" node scripts/flow-ignore
💩
<PROJECT_ROOT>/node_modules/.bin/*
<PROJECT_ROOT>/node_modules/.yarn-integrity/*
<PROJECT_ROOT>/node_modules/JSONStream/*
<PROJECT_ROOT>/node_modules/abab/*
<PROJECT_ROOT>/node_modules/abbrev/*
<PROJECT_ROOT>/node_modules/acorn/*
<PROJECT_ROOT>/node_modules/acorn-globals/*
<PROJECT_ROOT>/node_modules/acorn-jsx/*
<PROJECT_ROOT>/node_modules/add-stream/*
<PROJECT_ROOT>/node_modules/ajv/*
<PROJECT_ROOT>/node_modules/ajv-keywords/*
<PROJECT_ROOT>/node_modules/align-text/*
<PROJECT_ROOT>/node_modules/amdefine/*
<PROJECT_ROOT>/node_modules/amp/*
<PROJECT_ROOT>/node_modules/amp-message/*
<PROJECT_ROOT>/node_modules/ansi-escapes/*
<PROJECT_ROOT>/node_modules/ansi-regex/*
<PROJECT_ROOT>/node_modules/ansi-styles/*
<PROJECT_ROOT>/node_modules/any-observable/*
<PROJECT_ROOT>/node_modules/anymatch/*
<PROJECT_ROOT>/node_modules/app-root-path/*
<PROJECT_ROOT>/node_modules/append-transform/*
<PROJECT_ROOT>/node_modules/aproba/*
<PROJECT_ROOT>/node_modules/are-we-there-yet/*
<PROJECT_ROOT>/node_modules/argparse/*
<PROJECT_ROOT>/node_modules/arr-diff/*
<PROJECT_ROOT>/node_modules/arr-flatten/*
<PROJECT_ROOT>/node_modules/arr-union/*
<PROJECT_ROOT>/node_modules/array-equal/*
<PROJECT_ROOT>/node_modules/array-find-index/*
<PROJECT_ROOT>/node_modules/array-ify/*
<PROJECT_ROOT>/node_modules/array-includes/*
<PROJECT_ROOT>/node_modules/array-union/*
<PROJECT_ROOT>/node_modules/array-uniq/*
<PROJECT_ROOT>/node_modules/array-unique/*
<PROJECT_ROOT>/node_modules/arrify/*
<PROJECT_ROOT>/node_modules/asap/*
<PROJECT_ROOT>/node_modules/asn1/*
<PROJECT_ROOT>/node_modules/assert-plus/*
<PROJECT_ROOT>/node_modules/assign-symbols/*
<PROJECT_ROOT>/node_modules/astral-regex/*
<PROJECT_ROOT>/node_modules/async/*
<PROJECT_ROOT>/node_modules/async-each/*
<PROJECT_ROOT>/node_modules/async-limiter/*
<PROJECT_ROOT>/node_modules/async-listener/*
<PROJECT_ROOT>/node_modules/asynckit/*
<PROJECT_ROOT>/node_modules/atob/*
<PROJECT_ROOT>/node_modules/aws-sign2/*
<PROJECT_ROOT>/node_modules/aws4/*
<PROJECT_ROOT>/node_modules/babel-code-frame/*
<PROJECT_ROOT>/node_modules/babel-core/*
<PROJECT_ROOT>/node_modules/babel-eslint/*
<PROJECT_ROOT>/node_modules/babel-generator/*
<PROJECT_ROOT>/node_modules/babel-helpers/*
<PROJECT_ROOT>/node_modules/babel-jest/*
<PROJECT_ROOT>/node_modules/babel-messages/*
<PROJECT_ROOT>/node_modules/babel-plugin-console/*
<PROJECT_ROOT>/node_modules/babel-plugin-dev-expression/*
<PROJECT_ROOT>/node_modules/babel-plugin-istanbul/*
<PROJECT_ROOT>/node_modules/babel-plugin-jest-hoist/*
<PROJECT_ROOT>/node_modules/babel-plugin-macros/*
<PROJECT_ROOT>/node_modules/babel-plugin-preval/*
<PROJECT_ROOT>/node_modules/babel-plugin-syntax-object-rest-spread/*
<PROJECT_ROOT>/node_modules/babel-plugin-transform-inline-environment-variables/*
<PROJECT_ROOT>/node_modules/babel-polyfill/*
<PROJECT_ROOT>/node_modules/babel-preset-jest/*
<PROJECT_ROOT>/node_modules/babel-register/*
<PROJECT_ROOT>/node_modules/babel-runtime/*
<PROJECT_ROOT>/node_modules/babel-template/*
<PROJECT_ROOT>/node_modules/babel-traverse/*
<PROJECT_ROOT>/node_modules/babel-types/*
<PROJECT_ROOT>/node_modules/babylon/*
<PROJECT_ROOT>/node_modules/balanced-match/*
<PROJECT_ROOT>/node_modules/base/*
<PROJECT_ROOT>/node_modules/bcrypt-pbkdf/*
<PROJECT_ROOT>/node_modules/big-integer/*
<PROJECT_ROOT>/node_modules/binary/*
<PROJECT_ROOT>/node_modules/binary-extensions/*
<PROJECT_ROOT>/node_modules/blessed/*
<PROJECT_ROOT>/node_modules/bluebird/*
<PROJECT_ROOT>/node_modules/boolbase/*
<PROJECT_ROOT>/node_modules/boolify/*
<PROJECT_ROOT>/node_modules/boom/*
<PROJECT_ROOT>/node_modules/brace-expansion/*
<PROJECT_ROOT>/node_modules/braces/*
<PROJECT_ROOT>/node_modules/browser-process-hrtime/*
<PROJECT_ROOT>/node_modules/browser-resolve/*
<PROJECT_ROOT>/node_modules/browserslist/*
<PROJECT_ROOT>/node_modules/bser/*
<PROJECT_ROOT>/node_modules/buffer-from/*
<PROJECT_ROOT>/node_modules/buffer-indexof-polyfill/*
<PROJECT_ROOT>/node_modules/buffer-shims/*
<PROJECT_ROOT>/node_modules/buffers/*
<PROJECT_ROOT>/node_modules/builtin-modules/*
<PROJECT_ROOT>/node_modules/byline/*
<PROJECT_ROOT>/node_modules/cache-base/*
<PROJECT_ROOT>/node_modules/caller-path/*
<PROJECT_ROOT>/node_modules/callsites/*
<PROJECT_ROOT>/node_modules/camelcase/*
<PROJECT_ROOT>/node_modules/camelcase-keys/*
<PROJECT_ROOT>/node_modules/caniuse-lite/*
<PROJECT_ROOT>/node_modules/capture-stack-trace/*
<PROJECT_ROOT>/node_modules/caseless/*
<PROJECT_ROOT>/node_modules/center-align/*
<PROJECT_ROOT>/node_modules/chainsaw/*
<PROJECT_ROOT>/node_modules/chalk/*
<PROJECT_ROOT>/node_modules/chardet/*
<PROJECT_ROOT>/node_modules/charenc/*
<PROJECT_ROOT>/node_modules/charm/*
<PROJECT_ROOT>/node_modules/cheerio/*
<PROJECT_ROOT>/node_modules/chokidar/*
<PROJECT_ROOT>/node_modules/chownr/*
<PROJECT_ROOT>/node_modules/ci-info/*
<PROJECT_ROOT>/node_modules/circular-json/*
<PROJECT_ROOT>/node_modules/circular-json-es6/*
<PROJECT_ROOT>/node_modules/class-utils/*
<PROJECT_ROOT>/node_modules/cli-cursor/*
<PROJECT_ROOT>/node_modules/cli-spinners/*
<PROJECT_ROOT>/node_modules/cli-table-redemption/*
<PROJECT_ROOT>/node_modules/cli-truncate/*
<PROJECT_ROOT>/node_modules/cli-width/*
<PROJECT_ROOT>/node_modules/cliui/*
<PROJECT_ROOT>/node_modules/clone/*
<PROJECT_ROOT>/node_modules/cmd-shim/*
<PROJECT_ROOT>/node_modules/co/*
<PROJECT_ROOT>/node_modules/code-point-at/*
<PROJECT_ROOT>/node_modules/collection-visit/*
<PROJECT_ROOT>/node_modules/color-convert/*
<PROJECT_ROOT>/node_modules/color-name/*
<PROJECT_ROOT>/node_modules/colors/*
<PROJECT_ROOT>/node_modules/columnify/*
<PROJECT_ROOT>/node_modules/combined-stream/*
<PROJECT_ROOT>/node_modules/command-join/*
<PROJECT_ROOT>/node_modules/commander/*
<PROJECT_ROOT>/node_modules/common-tags/*
<PROJECT_ROOT>/node_modules/commondir/*
<PROJECT_ROOT>/node_modules/compare-func/*
<PROJECT_ROOT>/node_modules/compare-versions/*
<PROJECT_ROOT>/node_modules/component-emitter/*
<PROJECT_ROOT>/node_modules/concat-map/*
<PROJECT_ROOT>/node_modules/concat-stream/*
<PROJECT_ROOT>/node_modules/console-control-strings/*
<PROJECT_ROOT>/node_modules/continuation-local-storage/*
<PROJECT_ROOT>/node_modules/conventional-changelog/*
<PROJECT_ROOT>/node_modules/conventional-changelog-angular/*
<PROJECT_ROOT>/node_modules/conventional-changelog-atom/*
<PROJECT_ROOT>/node_modules/conventional-changelog-cli/*
<PROJECT_ROOT>/node_modules/conventional-changelog-codemirror/*
<PROJECT_ROOT>/node_modules/conventional-changelog-core/*
<PROJECT_ROOT>/node_modules/conventional-changelog-ember/*
<PROJECT_ROOT>/node_modules/conventional-changelog-eslint/*
<PROJECT_ROOT>/node_modules/conventional-changelog-express/*
<PROJECT_ROOT>/node_modules/conventional-changelog-jquery/*
<PROJECT_ROOT>/node_modules/conventional-changelog-jscs/*
<PROJECT_ROOT>/node_modules/conventional-changelog-jshint/*
<PROJECT_ROOT>/node_modules/conventional-changelog-preset-loader/*
<PROJECT_ROOT>/node_modules/conventional-changelog-writer/*
<PROJECT_ROOT>/node_modules/conventional-commits-filter/*
<PROJECT_ROOT>/node_modules/conventional-commits-parser/*
<PROJECT_ROOT>/node_modules/conventional-recommended-bump/*
<PROJECT_ROOT>/node_modules/convert-source-map/*
<PROJECT_ROOT>/node_modules/copy-descriptor/*
<PROJECT_ROOT>/node_modules/core-js/*
<PROJECT_ROOT>/node_modules/core-util-is/*
<PROJECT_ROOT>/node_modules/cosmiconfig/*
<PROJECT_ROOT>/node_modules/create-error-class/*
<PROJECT_ROOT>/node_modules/cron/*
<PROJECT_ROOT>/node_modules/cross-env/*
<PROJECT_ROOT>/node_modules/cross-spawn/*
<PROJECT_ROOT>/node_modules/crypt/*
<PROJECT_ROOT>/node_modules/cryptiles/*
<PROJECT_ROOT>/node_modules/css-select/*
<PROJECT_ROOT>/node_modules/css-what/*
<PROJECT_ROOT>/node_modules/cssom/*
<PROJECT_ROOT>/node_modules/cssstyle/*
<PROJECT_ROOT>/node_modules/currently-unhandled/*
<PROJECT_ROOT>/node_modules/dargs/*
<PROJECT_ROOT>/node_modules/dashdash/*
<PROJECT_ROOT>/node_modules/data-urls/*
<PROJECT_ROOT>/node_modules/date-fns/*
<PROJECT_ROOT>/node_modules/dateformat/*
<PROJECT_ROOT>/node_modules/debug/*
<PROJECT_ROOT>/node_modules/decamelize/*
<PROJECT_ROOT>/node_modules/decamelize-keys/*
<PROJECT_ROOT>/node_modules/decode-uri-component/*
<PROJECT_ROOT>/node_modules/decompress-response/*
<PROJECT_ROOT>/node_modules/dedent/*
<PROJECT_ROOT>/node_modules/deep-equal-ident/*
<PROJECT_ROOT>/node_modules/deep-extend/*
<PROJECT_ROOT>/node_modules/deep-is/*
<PROJECT_ROOT>/node_modules/deep-metrics/*
<PROJECT_ROOT>/node_modules/default-require-extensions/*
<PROJECT_ROOT>/node_modules/defaults/*
<PROJECT_ROOT>/node_modules/define-properties/*
<PROJECT_ROOT>/node_modules/define-property/*
<PROJECT_ROOT>/node_modules/del/*
<PROJECT_ROOT>/node_modules/delayed-stream/*
<PROJECT_ROOT>/node_modules/delegates/*
<PROJECT_ROOT>/node_modules/detect-indent/*
<PROJECT_ROOT>/node_modules/detect-libc/*
<PROJECT_ROOT>/node_modules/detect-newline/*
<PROJECT_ROOT>/node_modules/diff/*
<PROJECT_ROOT>/node_modules/discontinuous-range/*
<PROJECT_ROOT>/node_modules/dlv/*
<PROJECT_ROOT>/node_modules/doctrine/*
<PROJECT_ROOT>/node_modules/dom-serializer/*
<PROJECT_ROOT>/node_modules/domelementtype/*
<PROJECT_ROOT>/node_modules/domexception/*
<PROJECT_ROOT>/node_modules/domhandler/*
<PROJECT_ROOT>/node_modules/domutils/*
<PROJECT_ROOT>/node_modules/dot-prop/*
<PROJECT_ROOT>/node_modules/duplexer/*
<PROJECT_ROOT>/node_modules/duplexer2/*
<PROJECT_ROOT>/node_modules/duplexer3/*
<PROJECT_ROOT>/node_modules/ecc-jsbn/*
<PROJECT_ROOT>/node_modules/electron-to-chromium/*
<PROJECT_ROOT>/node_modules/elegant-spinner/*
<PROJECT_ROOT>/node_modules/emitter-listener/*
<PROJECT_ROOT>/node_modules/encoding/*
<PROJECT_ROOT>/node_modules/entities/*
<PROJECT_ROOT>/node_modules/enzyme/*
<PROJECT_ROOT>/node_modules/enzyme-adapter-react-16/*
<PROJECT_ROOT>/node_modules/enzyme-adapter-utils/*
<PROJECT_ROOT>/node_modules/enzyme-matchers/*
<PROJECT_ROOT>/node_modules/enzyme-to-json/*
<PROJECT_ROOT>/node_modules/error-ex/*
<PROJECT_ROOT>/node_modules/es-abstract/*
<PROJECT_ROOT>/node_modules/es-to-primitive/*
<PROJECT_ROOT>/node_modules/escape-regexp/*
<PROJECT_ROOT>/node_modules/escape-string-regexp/*
<PROJECT_ROOT>/node_modules/escodegen/*
<PROJECT_ROOT>/node_modules/eslint/*
<PROJECT_ROOT>/node_modules/eslint-plugin-babel/*
<PROJECT_ROOT>/node_modules/eslint-plugin-flowtype/*
<PROJECT_ROOT>/node_modules/eslint-plugin-jest/*
<PROJECT_ROOT>/node_modules/eslint-plugin-react/*
<PROJECT_ROOT>/node_modules/eslint-rule-composer/*
<PROJECT_ROOT>/node_modules/eslint-scope/*
<PROJECT_ROOT>/node_modules/eslint-visitor-keys/*
<PROJECT_ROOT>/node_modules/espree/*
<PROJECT_ROOT>/node_modules/esprima/*
<PROJECT_ROOT>/node_modules/esquery/*
<PROJECT_ROOT>/node_modules/esrecurse/*
<PROJECT_ROOT>/node_modules/estraverse/*
<PROJECT_ROOT>/node_modules/estree-walker/*
<PROJECT_ROOT>/node_modules/esutils/*
<PROJECT_ROOT>/node_modules/eventemitter2/*
<PROJECT_ROOT>/node_modules/exec-sh/*
<PROJECT_ROOT>/node_modules/execa/*
<PROJECT_ROOT>/node_modules/exit/*
<PROJECT_ROOT>/node_modules/exit-hook/*
<PROJECT_ROOT>/node_modules/expand-brackets/*
<PROJECT_ROOT>/node_modules/expand-range/*
<PROJECT_ROOT>/node_modules/expect/*
<PROJECT_ROOT>/node_modules/extend/*
<PROJECT_ROOT>/node_modules/extend-shallow/*
<PROJECT_ROOT>/node_modules/external-editor/*
<PROJECT_ROOT>/node_modules/extglob/*
<PROJECT_ROOT>/node_modules/extsprintf/*
<PROJECT_ROOT>/node_modules/fast-deep-equal/*
<PROJECT_ROOT>/node_modules/fast-json-stable-stringify/*
<PROJECT_ROOT>/node_modules/fast-levenshtein/*
<PROJECT_ROOT>/node_modules/fb-watchman/*
<PROJECT_ROOT>/node_modules/fbjs/*
<PROJECT_ROOT>/node_modules/fclone/*
<PROJECT_ROOT>/node_modules/figures/*
<PROJECT_ROOT>/node_modules/file-entry-cache/*
<PROJECT_ROOT>/node_modules/filename-regex/*
<PROJECT_ROOT>/node_modules/fileset/*
<PROJECT_ROOT>/node_modules/fill-range/*
<PROJECT_ROOT>/node_modules/find-cache-dir/*
<PROJECT_ROOT>/node_modules/find-parent-dir/*
<PROJECT_ROOT>/node_modules/find-up/*
<PROJECT_ROOT>/node_modules/flat-cache/*
<PROJECT_ROOT>/node_modules/flow-bin/*
<PROJECT_ROOT>/node_modules/flow-copy-source/*
<PROJECT_ROOT>/node_modules/flow-typed/*
<PROJECT_ROOT>/node_modules/for-in/*
<PROJECT_ROOT>/node_modules/for-own/*
<PROJECT_ROOT>/node_modules/foreach/*
<PROJECT_ROOT>/node_modules/forever-agent/*
<PROJECT_ROOT>/node_modules/form-data/*
<PROJECT_ROOT>/node_modules/fragment-cache/*
<PROJECT_ROOT>/node_modules/fs-extra/*
<PROJECT_ROOT>/node_modules/fs-minipass/*
<PROJECT_ROOT>/node_modules/fs-readdir-recursive/*
<PROJECT_ROOT>/node_modules/fs.realpath/*
<PROJECT_ROOT>/node_modules/fsevents/*
<PROJECT_ROOT>/node_modules/fstream/*
<PROJECT_ROOT>/node_modules/function-bind/*
<PROJECT_ROOT>/node_modules/function.prototype.name/*
<PROJECT_ROOT>/node_modules/functional-red-black-tree/*
<PROJECT_ROOT>/node_modules/gauge/*
<PROJECT_ROOT>/node_modules/get-caller-file/*
<PROJECT_ROOT>/node_modules/get-own-enumerable-property-symbols/*
<PROJECT_ROOT>/node_modules/get-pkg-repo/*
<PROJECT_ROOT>/node_modules/get-port/*
<PROJECT_ROOT>/node_modules/get-stdin/*
<PROJECT_ROOT>/node_modules/get-stream/*
<PROJECT_ROOT>/node_modules/get-value/*
<PROJECT_ROOT>/node_modules/getpass/*
<PROJECT_ROOT>/node_modules/git-raw-commits/*
<PROJECT_ROOT>/node_modules/git-remote-origin-url/*
<PROJECT_ROOT>/node_modules/git-semver-tags/*
<PROJECT_ROOT>/node_modules/gitconfiglocal/*
<PROJECT_ROOT>/node_modules/github/*
<PROJECT_ROOT>/node_modules/gkt/*
<PROJECT_ROOT>/node_modules/glob/*
<PROJECT_ROOT>/node_modules/glob-base/*
<PROJECT_ROOT>/node_modules/glob-parent/*
<PROJECT_ROOT>/node_modules/globals/*
<PROJECT_ROOT>/node_modules/globby/*
<PROJECT_ROOT>/node_modules/got/*
<PROJECT_ROOT>/node_modules/graceful-fs/*
<PROJECT_ROOT>/node_modules/growly/*
<PROJECT_ROOT>/node_modules/handlebars/*
<PROJECT_ROOT>/node_modules/har-schema/*
<PROJECT_ROOT>/node_modules/har-validator/*
<PROJECT_ROOT>/node_modules/has/*
<PROJECT_ROOT>/node_modules/has-ansi/*
<PROJECT_ROOT>/node_modules/has-flag/*
<PROJECT_ROOT>/node_modules/has-symbol-support-x/*
<PROJECT_ROOT>/node_modules/has-symbols/*
<PROJECT_ROOT>/node_modules/has-to-string-tag-x/*
<PROJECT_ROOT>/node_modules/has-unicode/*
<PROJECT_ROOT>/node_modules/has-value/*
<PROJECT_ROOT>/node_modules/has-values/*
<PROJECT_ROOT>/node_modules/hawk/*
<PROJECT_ROOT>/node_modules/hoek/*
<PROJECT_ROOT>/node_modules/home-or-tmp/*
<PROJECT_ROOT>/node_modules/homedir-polyfill/*
<PROJECT_ROOT>/node_modules/hosted-git-info/*
<PROJECT_ROOT>/node_modules/html-encoding-sniffer/*
<PROJECT_ROOT>/node_modules/htmlparser2/*
<PROJECT_ROOT>/node_modules/http-signature/*
<PROJECT_ROOT>/node_modules/husky/*
<PROJECT_ROOT>/node_modules/iconv-lite/*
<PROJECT_ROOT>/node_modules/ignore/*
<PROJECT_ROOT>/node_modules/ignore-walk/*
<PROJECT_ROOT>/node_modules/immutable/*
<PROJECT_ROOT>/node_modules/import-local/*
<PROJECT_ROOT>/node_modules/imurmurhash/*
<PROJECT_ROOT>/node_modules/indent-string/*
<PROJECT_ROOT>/node_modules/inflight/*
<PROJECT_ROOT>/node_modules/inherits/*
<PROJECT_ROOT>/node_modules/ini/*
<PROJECT_ROOT>/node_modules/inquirer/*
<PROJECT_ROOT>/node_modules/interpret/*
<PROJECT_ROOT>/node_modules/invariant/*
<PROJECT_ROOT>/node_modules/invert-kv/*
<PROJECT_ROOT>/node_modules/is/*
<PROJECT_ROOT>/node_modules/is-accessor-descriptor/*
<PROJECT_ROOT>/node_modules/is-arrayish/*
<PROJECT_ROOT>/node_modules/is-binary-path/*
<PROJECT_ROOT>/node_modules/is-boolean-object/*
<PROJECT_ROOT>/node_modules/is-buffer/*
<PROJECT_ROOT>/node_modules/is-builtin-module/*
<PROJECT_ROOT>/node_modules/is-callable/*
<PROJECT_ROOT>/node_modules/is-ci/*
<PROJECT_ROOT>/node_modules/is-data-descriptor/*
<PROJECT_ROOT>/node_modules/is-date-object/*
<PROJECT_ROOT>/node_modules/is-descriptor/*
<PROJECT_ROOT>/node_modules/is-directory/*
<PROJECT_ROOT>/node_modules/is-dotfile/*
<PROJECT_ROOT>/node_modules/is-equal-shallow/*
<PROJECT_ROOT>/node_modules/is-extendable/*
<PROJECT_ROOT>/node_modules/is-extglob/*
<PROJECT_ROOT>/node_modules/is-finite/*
<PROJECT_ROOT>/node_modules/is-fullwidth-code-point/*
<PROJECT_ROOT>/node_modules/is-generator-fn/*
<PROJECT_ROOT>/node_modules/is-glob/*
<PROJECT_ROOT>/node_modules/is-module/*
<PROJECT_ROOT>/node_modules/is-number/*
<PROJECT_ROOT>/node_modules/is-number-object/*
<PROJECT_ROOT>/node_modules/is-obj/*
<PROJECT_ROOT>/node_modules/is-object/*
<PROJECT_ROOT>/node_modules/is-observable/*
<PROJECT_ROOT>/node_modules/is-odd/*
<PROJECT_ROOT>/node_modules/is-path-cwd/*
<PROJECT_ROOT>/node_modules/is-path-in-cwd/*
<PROJECT_ROOT>/node_modules/is-path-inside/*
<PROJECT_ROOT>/node_modules/is-plain-obj/*
<PROJECT_ROOT>/node_modules/is-plain-object/*
<PROJECT_ROOT>/node_modules/is-posix-bracket/*
<PROJECT_ROOT>/node_modules/is-primitive/*
<PROJECT_ROOT>/node_modules/is-promise/*
<PROJECT_ROOT>/node_modules/is-redirect/*
<PROJECT_ROOT>/node_modules/is-regex/*
<PROJECT_ROOT>/node_modules/is-regexp/*
<PROJECT_ROOT>/node_modules/is-resolvable/*
<PROJECT_ROOT>/node_modules/is-retry-allowed/*
<PROJECT_ROOT>/node_modules/is-stream/*
<PROJECT_ROOT>/node_modules/is-string/*
<PROJECT_ROOT>/node_modules/is-subset/*
<PROJECT_ROOT>/node_modules/is-symbol/*
<PROJECT_ROOT>/node_modules/is-text-path/*
<PROJECT_ROOT>/node_modules/is-typedarray/*
<PROJECT_ROOT>/node_modules/is-utf8/*
<PROJECT_ROOT>/node_modules/is-windows/*
<PROJECT_ROOT>/node_modules/isarray/*
<PROJECT_ROOT>/node_modules/isexe/*
<PROJECT_ROOT>/node_modules/isobject/*
<PROJECT_ROOT>/node_modules/isomorphic-fetch/*
<PROJECT_ROOT>/node_modules/isstream/*
<PROJECT_ROOT>/node_modules/istanbul-api/*
<PROJECT_ROOT>/node_modules/istanbul-lib-coverage/*
<PROJECT_ROOT>/node_modules/istanbul-lib-hook/*
<PROJECT_ROOT>/node_modules/istanbul-lib-instrument/*
<PROJECT_ROOT>/node_modules/istanbul-lib-report/*
<PROJECT_ROOT>/node_modules/istanbul-lib-source-maps/*
<PROJECT_ROOT>/node_modules/istanbul-reports/*
<PROJECT_ROOT>/node_modules/isurl/*
<PROJECT_ROOT>/node_modules/jest/*
<PROJECT_ROOT>/node_modules/jest-changed-files/*
<PROJECT_ROOT>/node_modules/jest-cli/*
<PROJECT_ROOT>/node_modules/jest-config/*
<PROJECT_ROOT>/node_modules/jest-diff/*
<PROJECT_ROOT>/node_modules/jest-docblock/*
<PROJECT_ROOT>/node_modules/jest-environment-enzyme/*
<PROJECT_ROOT>/node_modules/jest-environment-jsdom/*
<PROJECT_ROOT>/node_modules/jest-environment-node/*
<PROJECT_ROOT>/node_modules/jest-enzyme/*
<PROJECT_ROOT>/node_modules/jest-get-type/*
<PROJECT_ROOT>/node_modules/jest-haste-map/*
<PROJECT_ROOT>/node_modules/jest-jasmine2/*
<PROJECT_ROOT>/node_modules/jest-leak-detector/*
<PROJECT_ROOT>/node_modules/jest-matcher-utils/*
<PROJECT_ROOT>/node_modules/jest-message-util/*
<PROJECT_ROOT>/node_modules/jest-mock/*
<PROJECT_ROOT>/node_modules/jest-regex-util/*
<PROJECT_ROOT>/node_modules/jest-resolve/*
<PROJECT_ROOT>/node_modules/jest-resolve-dependencies/*
<PROJECT_ROOT>/node_modules/jest-runner/*
<PROJECT_ROOT>/node_modules/jest-runtime/*
<PROJECT_ROOT>/node_modules/jest-serializer/*
<PROJECT_ROOT>/node_modules/jest-snapshot/*
<PROJECT_ROOT>/node_modules/jest-util/*
<PROJECT_ROOT>/node_modules/jest-validate/*
<PROJECT_ROOT>/node_modules/jest-worker/*
<PROJECT_ROOT>/node_modules/js-tokens/*
<PROJECT_ROOT>/node_modules/js-yaml/*
<PROJECT_ROOT>/node_modules/jsbn/*
<PROJECT_ROOT>/node_modules/jsdom/*
<PROJECT_ROOT>/node_modules/jsdom-global/*
<PROJECT_ROOT>/node_modules/jsesc/*
<PROJECT_ROOT>/node_modules/json-parse-better-errors/*
<PROJECT_ROOT>/node_modules/json-schema/*
<PROJECT_ROOT>/node_modules/json-schema-traverse/*
<PROJECT_ROOT>/node_modules/json-stable-stringify/*
<PROJECT_ROOT>/node_modules/json-stable-stringify-without-jsonify/*
<PROJECT_ROOT>/node_modules/json-stringify-safe/*
<PROJECT_ROOT>/node_modules/json5/*
<PROJECT_ROOT>/node_modules/jsonfile/*
<PROJECT_ROOT>/node_modules/jsonify/*
<PROJECT_ROOT>/node_modules/jsonparse/*
<PROJECT_ROOT>/node_modules/jsprim/*
<PROJECT_ROOT>/node_modules/jsx-ast-utils/*
<PROJECT_ROOT>/node_modules/kefir/*
<PROJECT_ROOT>/node_modules/kind-of/*
<PROJECT_ROOT>/node_modules/lazy/*
<PROJECT_ROOT>/node_modules/lazy-cache/*
<PROJECT_ROOT>/node_modules/lcid/*
<PROJECT_ROOT>/node_modules/left-pad/*
<PROJECT_ROOT>/node_modules/lerna/*
<PROJECT_ROOT>/node_modules/leven/*
<PROJECT_ROOT>/node_modules/levn/*
<PROJECT_ROOT>/node_modules/lint-staged/*
<PROJECT_ROOT>/node_modules/listenercount/*
<PROJECT_ROOT>/node_modules/listr/*
<PROJECT_ROOT>/node_modules/listr-silent-renderer/*
<PROJECT_ROOT>/node_modules/listr-update-renderer/*
<PROJECT_ROOT>/node_modules/listr-verbose-renderer/*
<PROJECT_ROOT>/node_modules/load-json-file/*
<PROJECT_ROOT>/node_modules/locate-path/*
<PROJECT_ROOT>/node_modules/lodash/*
<PROJECT_ROOT>/node_modules/lodash._baseisequal/*
<PROJECT_ROOT>/node_modules/lodash._bindcallback/*
<PROJECT_ROOT>/node_modules/lodash._getnative/*
<PROJECT_ROOT>/node_modules/lodash._reinterpolate/*
<PROJECT_ROOT>/node_modules/lodash.assign/*
<PROJECT_ROOT>/node_modules/lodash.findindex/*
<PROJECT_ROOT>/node_modules/lodash.flattendeep/*
<PROJECT_ROOT>/node_modules/lodash.isarguments/*
<PROJECT_ROOT>/node_modules/lodash.isarray/*
<PROJECT_ROOT>/node_modules/lodash.isequal/*
<PROJECT_ROOT>/node_modules/lodash.istypedarray/*
<PROJECT_ROOT>/node_modules/lodash.keys/*
<PROJECT_ROOT>/node_modules/lodash.memoize/*
<PROJECT_ROOT>/node_modules/lodash.merge/*
<PROJECT_ROOT>/node_modules/lodash.sortby/*
<PROJECT_ROOT>/node_modules/lodash.template/*
<PROJECT_ROOT>/node_modules/lodash.templatesettings/*
<PROJECT_ROOT>/node_modules/lodash.unescape/*
<PROJECT_ROOT>/node_modules/log-symbols/*
<PROJECT_ROOT>/node_modules/log-update/*
<PROJECT_ROOT>/node_modules/loglevel/*
<PROJECT_ROOT>/node_modules/loglevel-colored-level-prefix/*
<PROJECT_ROOT>/node_modules/longest/*
<PROJECT_ROOT>/node_modules/loose-envify/*
<PROJECT_ROOT>/node_modules/loud-rejection/*
<PROJECT_ROOT>/node_modules/lowercase-keys/*
<PROJECT_ROOT>/node_modules/lru-cache/*
<PROJECT_ROOT>/node_modules/make-dir/*
<PROJECT_ROOT>/node_modules/make-plural/*
<PROJECT_ROOT>/node_modules/makeerror/*
<PROJECT_ROOT>/node_modules/map-cache/*
<PROJECT_ROOT>/node_modules/map-obj/*
<PROJECT_ROOT>/node_modules/map-visit/*
<PROJECT_ROOT>/node_modules/md5/*
<PROJECT_ROOT>/node_modules/mem/*
<PROJECT_ROOT>/node_modules/meow/*
<PROJECT_ROOT>/node_modules/merge/*
<PROJECT_ROOT>/node_modules/merge-stream/*
<PROJECT_ROOT>/node_modules/messageformat/*
<PROJECT_ROOT>/node_modules/messageformat-parser/*
<PROJECT_ROOT>/node_modules/methods/*
<PROJECT_ROOT>/node_modules/micromatch/*
<PROJECT_ROOT>/node_modules/mime/*
<PROJECT_ROOT>/node_modules/mime-db/*
<PROJECT_ROOT>/node_modules/mime-types/*
<PROJECT_ROOT>/node_modules/mimic-fn/*
<PROJECT_ROOT>/node_modules/mimic-response/*
<PROJECT_ROOT>/node_modules/minimatch/*
<PROJECT_ROOT>/node_modules/minimist/*
<PROJECT_ROOT>/node_modules/minimist-options/*
<PROJECT_ROOT>/node_modules/minipass/*
<PROJECT_ROOT>/node_modules/minizlib/*
<PROJECT_ROOT>/node_modules/mixin-deep/*
<PROJECT_ROOT>/node_modules/mkdirp/*
<PROJECT_ROOT>/node_modules/modify-values/*
<PROJECT_ROOT>/node_modules/moment/*
<PROJECT_ROOT>/node_modules/moment-timezone/*
<PROJECT_ROOT>/node_modules/most/*
<PROJECT_ROOT>/node_modules/ms/*
<PROJECT_ROOT>/node_modules/mute-stream/*
<PROJECT_ROOT>/node_modules/nan/*
<PROJECT_ROOT>/node_modules/nanomatch/*
<PROJECT_ROOT>/node_modules/natural-compare/*
<PROJECT_ROOT>/node_modules/nearley/*
<PROJECT_ROOT>/node_modules/needle/*
<PROJECT_ROOT>/node_modules/node-fetch/*
<PROJECT_ROOT>/node_modules/node-int64/*
<PROJECT_ROOT>/node_modules/node-modules-regexp/*
<PROJECT_ROOT>/node_modules/node-notifier/*
<PROJECT_ROOT>/node_modules/node-pre-gyp/*
<PROJECT_ROOT>/node_modules/nomnom/*
<PROJECT_ROOT>/node_modules/nopt/*
<PROJECT_ROOT>/node_modules/normalize-package-data/*
<PROJECT_ROOT>/node_modules/normalize-path/*
<PROJECT_ROOT>/node_modules/npm-bundled/*
<PROJECT_ROOT>/node_modules/npm-packlist/*
<PROJECT_ROOT>/node_modules/npm-path/*
<PROJECT_ROOT>/node_modules/npm-run-path/*
<PROJECT_ROOT>/node_modules/npm-which/*
<PROJECT_ROOT>/node_modules/npmlog/*
<PROJECT_ROOT>/node_modules/nssocket/*
<PROJECT_ROOT>/node_modules/nth-check/*
<PROJECT_ROOT>/node_modules/number-is-nan/*
<PROJECT_ROOT>/node_modules/nwmatcher/*
<PROJECT_ROOT>/node_modules/oauth-sign/*
<PROJECT_ROOT>/node_modules/object-assign/*
<PROJECT_ROOT>/node_modules/object-copy/*
<PROJECT_ROOT>/node_modules/object-inspect/*
<PROJECT_ROOT>/node_modules/object-is/*
<PROJECT_ROOT>/node_modules/object-keys/*
<PROJECT_ROOT>/node_modules/object-visit/*
<PROJECT_ROOT>/node_modules/object.assign/*
<PROJECT_ROOT>/node_modules/object.entries/*
<PROJECT_ROOT>/node_modules/object.getownpropertydescriptors/*
<PROJECT_ROOT>/node_modules/object.omit/*
<PROJECT_ROOT>/node_modules/object.pick/*
<PROJECT_ROOT>/node_modules/object.values/*
<PROJECT_ROOT>/node_modules/once/*
<PROJECT_ROOT>/node_modules/onetime/*
<PROJECT_ROOT>/node_modules/optimist/*
<PROJECT_ROOT>/node_modules/optionator/*
<PROJECT_ROOT>/node_modules/ora/*
<PROJECT_ROOT>/node_modules/os-homedir/*
<PROJECT_ROOT>/node_modules/os-locale/*
<PROJECT_ROOT>/node_modules/os-tmpdir/*
<PROJECT_ROOT>/node_modules/osenv/*
<PROJECT_ROOT>/node_modules/output-file-sync/*
<PROJECT_ROOT>/node_modules/p-cancelable/*
<PROJECT_ROOT>/node_modules/p-finally/*
<PROJECT_ROOT>/node_modules/p-limit/*
<PROJECT_ROOT>/node_modules/p-locate/*
<PROJECT_ROOT>/node_modules/p-map/*
<PROJECT_ROOT>/node_modules/p-timeout/*
<PROJECT_ROOT>/node_modules/p-try/*
<PROJECT_ROOT>/node_modules/package-json/*
<PROJECT_ROOT>/node_modules/parse-github-repo-url/*
<PROJECT_ROOT>/node_modules/parse-glob/*
<PROJECT_ROOT>/node_modules/parse-json/*
<PROJECT_ROOT>/node_modules/parse-passwd/*
<PROJECT_ROOT>/node_modules/parse5/*
<PROJECT_ROOT>/node_modules/pascalcase/*
<PROJECT_ROOT>/node_modules/path-dirname/*
<PROJECT_ROOT>/node_modules/path-exists/*
<PROJECT_ROOT>/node_modules/path-is-absolute/*
<PROJECT_ROOT>/node_modules/path-is-inside/*
<PROJECT_ROOT>/node_modules/path-key/*
<PROJECT_ROOT>/node_modules/path-parse/*
<PROJECT_ROOT>/node_modules/path-type/*
<PROJECT_ROOT>/node_modules/penv.macro/*
<PROJECT_ROOT>/node_modules/performance-now/*
<PROJECT_ROOT>/node_modules/pidusage/*
<PROJECT_ROOT>/node_modules/pify/*
<PROJECT_ROOT>/node_modules/pinkie/*
<PROJECT_ROOT>/node_modules/pinkie-promise/*
<PROJECT_ROOT>/node_modules/pirates/*
<PROJECT_ROOT>/node_modules/pkg-dir/*
<PROJECT_ROOT>/node_modules/pluralize/*
<PROJECT_ROOT>/node_modules/pm2/*
<PROJECT_ROOT>/node_modules/pm2-axon/*
<PROJECT_ROOT>/node_modules/pm2-axon-rpc/*
<PROJECT_ROOT>/node_modules/pm2-deploy/*
<PROJECT_ROOT>/node_modules/pm2-multimeter/*
<PROJECT_ROOT>/node_modules/pmx/*
<PROJECT_ROOT>/node_modules/pn/*
<PROJECT_ROOT>/node_modules/posix-character-classes/*
<PROJECT_ROOT>/node_modules/prelude-ls/*
<PROJECT_ROOT>/node_modules/prepend-http/*
<PROJECT_ROOT>/node_modules/preserve/*
<PROJECT_ROOT>/node_modules/prettier/*
<PROJECT_ROOT>/node_modules/prettier-eslint/*
<PROJECT_ROOT>/node_modules/prettier-eslint-cli/*
<PROJECT_ROOT>/node_modules/pretty-format/*
<PROJECT_ROOT>/node_modules/preval.macro/*
<PROJECT_ROOT>/node_modules/private/*
<PROJECT_ROOT>/node_modules/process-nextick-args/*
<PROJECT_ROOT>/node_modules/progress/*
<PROJECT_ROOT>/node_modules/promise/*
<PROJECT_ROOT>/node_modules/promptly/*
<PROJECT_ROOT>/node_modules/prop-types/*
<PROJECT_ROOT>/node_modules/pseudomap/*
<PROJECT_ROOT>/node_modules/punycode/*
<PROJECT_ROOT>/node_modules/q/*
<PROJECT_ROOT>/node_modules/qs/*
<PROJECT_ROOT>/node_modules/quick-lru/*
<PROJECT_ROOT>/node_modules/raf/*
<PROJECT_ROOT>/node_modules/railroad-diagrams/*
<PROJECT_ROOT>/node_modules/randexp/*
<PROJECT_ROOT>/node_modules/randomatic/*
<PROJECT_ROOT>/node_modules/raw.macro/*
<PROJECT_ROOT>/node_modules/rc/*
<PROJECT_ROOT>/node_modules/react/*
<PROJECT_ROOT>/node_modules/react-dom/*
<PROJECT_ROOT>/node_modules/react-is/*
<PROJECT_ROOT>/node_modules/react-reconciler/*
<PROJECT_ROOT>/node_modules/react-test-renderer/*
<PROJECT_ROOT>/node_modules/read/*
<PROJECT_ROOT>/node_modules/read-cmd-shim/*
<PROJECT_ROOT>/node_modules/read-pkg/*
<PROJECT_ROOT>/node_modules/read-pkg-up/*
<PROJECT_ROOT>/node_modules/readable-stream/*
<PROJECT_ROOT>/node_modules/readdirp/*
<PROJECT_ROOT>/node_modules/realpath-native/*
<PROJECT_ROOT>/node_modules/rechoir/*
<PROJECT_ROOT>/node_modules/redent/*
<PROJECT_ROOT>/node_modules/redux/*
<PROJECT_ROOT>/node_modules/redux-act/*
<PROJECT_ROOT>/node_modules/regenerate/*
<PROJECT_ROOT>/node_modules/regenerate-unicode-properties/*
<PROJECT_ROOT>/node_modules/regenerator-runtime/*
<PROJECT_ROOT>/node_modules/regenerator-transform/*
<PROJECT_ROOT>/node_modules/regex-cache/*
<PROJECT_ROOT>/node_modules/regex-not/*
<PROJECT_ROOT>/node_modules/regexpp/*
<PROJECT_ROOT>/node_modules/regexpu-core/*
<PROJECT_ROOT>/node_modules/registry-auth-token/*
<PROJECT_ROOT>/node_modules/registry-url/*
<PROJECT_ROOT>/node_modules/regjsgen/*
<PROJECT_ROOT>/node_modules/regjsparser/*
<PROJECT_ROOT>/node_modules/remove-trailing-separator/*
<PROJECT_ROOT>/node_modules/repeat-element/*
<PROJECT_ROOT>/node_modules/repeat-string/*
<PROJECT_ROOT>/node_modules/repeating/*
<PROJECT_ROOT>/node_modules/request/*
<PROJECT_ROOT>/node_modules/request-promise-core/*
<PROJECT_ROOT>/node_modules/request-promise-native/*
<PROJECT_ROOT>/node_modules/require-directory/*
<PROJECT_ROOT>/node_modules/require-from-string/*
<PROJECT_ROOT>/node_modules/require-main-filename/*
<PROJECT_ROOT>/node_modules/require-relative/*
<PROJECT_ROOT>/node_modules/require-uncached/*
<PROJECT_ROOT>/node_modules/reserved-words/*
<PROJECT_ROOT>/node_modules/resolve/*
<PROJECT_ROOT>/node_modules/resolve-cwd/*
<PROJECT_ROOT>/node_modules/resolve-from/*
<PROJECT_ROOT>/node_modules/resolve-url/*
<PROJECT_ROOT>/node_modules/restore-cursor/*
<PROJECT_ROOT>/node_modules/ret/*
<PROJECT_ROOT>/node_modules/right-align/*
<PROJECT_ROOT>/node_modules/rimraf/*
<PROJECT_ROOT>/node_modules/rollup/*
<PROJECT_ROOT>/node_modules/rollup-plugin-babel/*
<PROJECT_ROOT>/node_modules/rollup-plugin-node-resolve/*
<PROJECT_ROOT>/node_modules/rollup-plugin-path-alias/*
<PROJECT_ROOT>/node_modules/rollup-plugin-uglify/*
<PROJECT_ROOT>/node_modules/rollup-pluginutils/*
<PROJECT_ROOT>/node_modules/rst-selector-parser/*
<PROJECT_ROOT>/node_modules/run-async/*
<PROJECT_ROOT>/node_modules/rx-lite/*
<PROJECT_ROOT>/node_modules/rx-lite-aggregates/*
<PROJECT_ROOT>/node_modules/rxjs/*
<PROJECT_ROOT>/node_modules/safe-buffer/*
<PROJECT_ROOT>/node_modules/safe-regex/*
<PROJECT_ROOT>/node_modules/safer-buffer/*
<PROJECT_ROOT>/node_modules/sane/*
<PROJECT_ROOT>/node_modules/sax/*
<PROJECT_ROOT>/node_modules/scope.macro/*
<PROJECT_ROOT>/node_modules/semver/*
<PROJECT_ROOT>/node_modules/set-blocking/*
<PROJECT_ROOT>/node_modules/set-immediate-shim/*
<PROJECT_ROOT>/node_modules/set-value/*
<PROJECT_ROOT>/node_modules/setimmediate/*
<PROJECT_ROOT>/node_modules/shebang-command/*
<PROJECT_ROOT>/node_modules/shebang-regex/*
<PROJECT_ROOT>/node_modules/shelljs/*
<PROJECT_ROOT>/node_modules/shellwords/*
<PROJECT_ROOT>/node_modules/shimmer/*
<PROJECT_ROOT>/node_modules/signal-exit/*
<PROJECT_ROOT>/node_modules/slash/*
<PROJECT_ROOT>/node_modules/slice-ansi/*
<PROJECT_ROOT>/node_modules/snapdragon/*
<PROJECT_ROOT>/node_modules/snapdragon-node/*
<PROJECT_ROOT>/node_modules/snapdragon-util/*
<PROJECT_ROOT>/node_modules/sntp/*
<PROJECT_ROOT>/node_modules/sort-keys/*
<PROJECT_ROOT>/node_modules/source-map/*
<PROJECT_ROOT>/node_modules/source-map-resolve/*
<PROJECT_ROOT>/node_modules/source-map-support/*
<PROJECT_ROOT>/node_modules/source-map-url/*
<PROJECT_ROOT>/node_modules/spdx-correct/*
<PROJECT_ROOT>/node_modules/spdx-exceptions/*
<PROJECT_ROOT>/node_modules/spdx-expression-parse/*
<PROJECT_ROOT>/node_modules/spdx-license-ids/*
<PROJECT_ROOT>/node_modules/split/*
<PROJECT_ROOT>/node_modules/split-string/*
<PROJECT_ROOT>/node_modules/split2/*
<PROJECT_ROOT>/node_modules/sprintf-js/*
<PROJECT_ROOT>/node_modules/sshpk/*
<PROJECT_ROOT>/node_modules/stack-utils/*
<PROJECT_ROOT>/node_modules/staged-git-files/*
<PROJECT_ROOT>/node_modules/static-extend/*
<PROJECT_ROOT>/node_modules/stealthy-require/*
<PROJECT_ROOT>/node_modules/stream-to-observable/*
<PROJECT_ROOT>/node_modules/string-length/*
<PROJECT_ROOT>/node_modules/string-width/*
<PROJECT_ROOT>/node_modules/string_decoder/*
<PROJECT_ROOT>/node_modules/stringify-object/*
<PROJECT_ROOT>/node_modules/stringstream/*
<PROJECT_ROOT>/node_modules/strip-ansi/*
<PROJECT_ROOT>/node_modules/strip-bom/*
<PROJECT_ROOT>/node_modules/strip-eof/*
<PROJECT_ROOT>/node_modules/strip-indent/*
<PROJECT_ROOT>/node_modules/strip-json-comments/*
<PROJECT_ROOT>/node_modules/strong-log-transformer/*
<PROJECT_ROOT>/node_modules/supports-color/*
<PROJECT_ROOT>/node_modules/symbol-observable/*
<PROJECT_ROOT>/node_modules/symbol-tree/*
<PROJECT_ROOT>/node_modules/table/*
<PROJECT_ROOT>/node_modules/tar/*
<PROJECT_ROOT>/node_modules/temp-dir/*
<PROJECT_ROOT>/node_modules/temp-write/*
<PROJECT_ROOT>/node_modules/tempfile/*
<PROJECT_ROOT>/node_modules/test-exclude/*
<PROJECT_ROOT>/node_modules/text-extensions/*
<PROJECT_ROOT>/node_modules/text-table/*
<PROJECT_ROOT>/node_modules/throat/*
<PROJECT_ROOT>/node_modules/through/*
<PROJECT_ROOT>/node_modules/through2/*
<PROJECT_ROOT>/node_modules/timed-out/*
<PROJECT_ROOT>/node_modules/tmp/*
<PROJECT_ROOT>/node_modules/tmpl/*
<PROJECT_ROOT>/node_modules/to-fast-properties/*
<PROJECT_ROOT>/node_modules/to-object-path/*
<PROJECT_ROOT>/node_modules/to-regex/*
<PROJECT_ROOT>/node_modules/to-regex-range/*
<PROJECT_ROOT>/node_modules/tough-cookie/*
<PROJECT_ROOT>/node_modules/tr46/*
<PROJECT_ROOT>/node_modules/traverse/*
<PROJECT_ROOT>/node_modules/trim-newlines/*
<PROJECT_ROOT>/node_modules/trim-off-newlines/*
<PROJECT_ROOT>/node_modules/trim-right/*
<PROJECT_ROOT>/node_modules/tunnel-agent/*
<PROJECT_ROOT>/node_modules/tv4/*
<PROJECT_ROOT>/node_modules/tweetnacl/*
<PROJECT_ROOT>/node_modules/type-check/*
<PROJECT_ROOT>/node_modules/typedarray/*
<PROJECT_ROOT>/node_modules/typescript/*
<PROJECT_ROOT>/node_modules/typescript-eslint-parser/*
<PROJECT_ROOT>/node_modules/ua-parser-js/*
<PROJECT_ROOT>/node_modules/uglify-es/*
<PROJECT_ROOT>/node_modules/uglify-js/*
<PROJECT_ROOT>/node_modules/uglify-to-browserify/*
<PROJECT_ROOT>/node_modules/underscore/*
<PROJECT_ROOT>/node_modules/unicode-canonical-property-names-ecmascript/*
<PROJECT_ROOT>/node_modules/unicode-match-property-ecmascript/*
<PROJECT_ROOT>/node_modules/unicode-match-property-value-ecmascript/*
<PROJECT_ROOT>/node_modules/unicode-property-aliases-ecmascript/*
<PROJECT_ROOT>/node_modules/union-value/*
<PROJECT_ROOT>/node_modules/universalify/*
<PROJECT_ROOT>/node_modules/unset-value/*
<PROJECT_ROOT>/node_modules/unzip-response/*
<PROJECT_ROOT>/node_modules/unzipper/*
<PROJECT_ROOT>/node_modules/upath/*
<PROJECT_ROOT>/node_modules/uri-js/*
<PROJECT_ROOT>/node_modules/urix/*
<PROJECT_ROOT>/node_modules/url-parse-lax/*
<PROJECT_ROOT>/node_modules/url-to-options/*
<PROJECT_ROOT>/node_modules/use/*
<PROJECT_ROOT>/node_modules/util-deprecate/*
<PROJECT_ROOT>/node_modules/util.promisify/*
<PROJECT_ROOT>/node_modules/uuid/*
<PROJECT_ROOT>/node_modules/v8-compile-cache/*
<PROJECT_ROOT>/node_modules/v8flags/*
<PROJECT_ROOT>/node_modules/validate-npm-package-license/*
<PROJECT_ROOT>/node_modules/verror/*
<PROJECT_ROOT>/node_modules/vizion/*
<PROJECT_ROOT>/node_modules/vxx/*
<PROJECT_ROOT>/node_modules/w3c-hr-time/*
<PROJECT_ROOT>/node_modules/walker/*
<PROJECT_ROOT>/node_modules/warning/*
<PROJECT_ROOT>/node_modules/watch/*
<PROJECT_ROOT>/node_modules/wcwidth/*
<PROJECT_ROOT>/node_modules/webidl-conversions/*
<PROJECT_ROOT>/node_modules/whatwg-encoding/*
<PROJECT_ROOT>/node_modules/whatwg-fetch/*
<PROJECT_ROOT>/node_modules/whatwg-mimetype/*
<PROJECT_ROOT>/node_modules/whatwg-url/*
<PROJECT_ROOT>/node_modules/which/*
<PROJECT_ROOT>/node_modules/which-module/*
<PROJECT_ROOT>/node_modules/wide-align/*
<PROJECT_ROOT>/node_modules/window-size/*
<PROJECT_ROOT>/node_modules/wordwrap/*
<PROJECT_ROOT>/node_modules/wrap-ansi/*
<PROJECT_ROOT>/node_modules/wrappy/*
<PROJECT_ROOT>/node_modules/write/*
<PROJECT_ROOT>/node_modules/write-file-atomic/*
<PROJECT_ROOT>/node_modules/write-json-file/*
<PROJECT_ROOT>/node_modules/write-pkg/*
<PROJECT_ROOT>/node_modules/ws/*
<PROJECT_ROOT>/node_modules/xml-name-validator/*
<PROJECT_ROOT>/node_modules/xtend/*
<PROJECT_ROOT>/node_modules/y18n/*
<PROJECT_ROOT>/node_modules/yallist/*
<PROJECT_ROOT>/node_modules/yamljs/*
<PROJECT_ROOT>/node_modules/yargs/*
<PROJECT_ROOT>/node_modules/yargs-parser/*
<PROJECT_ROOT>/node_modules/@babel/cli/*
<PROJECT_ROOT>/node_modules/@babel/code-frame/*
<PROJECT_ROOT>/node_modules/@babel/core/*
<PROJECT_ROOT>/node_modules/@babel/generator/*
<PROJECT_ROOT>/node_modules/@babel/helper-annotate-as-pure/*
<PROJECT_ROOT>/node_modules/@babel/helper-builder-binary-assignment-operator-visitor/*
<PROJECT_ROOT>/node_modules/@babel/helper-builder-react-jsx/*
<PROJECT_ROOT>/node_modules/@babel/helper-call-delegate/*
<PROJECT_ROOT>/node_modules/@babel/helper-define-map/*
<PROJECT_ROOT>/node_modules/@babel/helper-explode-assignable-expression/*
<PROJECT_ROOT>/node_modules/@babel/helper-function-name/*
<PROJECT_ROOT>/node_modules/@babel/helper-get-function-arity/*
<PROJECT_ROOT>/node_modules/@babel/helper-hoist-variables/*
<PROJECT_ROOT>/node_modules/@babel/helper-member-expression-to-functions/*
<PROJECT_ROOT>/node_modules/@babel/helper-module-imports/*
<PROJECT_ROOT>/node_modules/@babel/helper-module-transforms/*
<PROJECT_ROOT>/node_modules/@babel/helper-optimise-call-expression/*
<PROJECT_ROOT>/node_modules/@babel/helper-plugin-utils/*
<PROJECT_ROOT>/node_modules/@babel/helper-regex/*
<PROJECT_ROOT>/node_modules/@babel/helper-remap-async-to-generator/*
<PROJECT_ROOT>/node_modules/@babel/helper-replace-supers/*
<PROJECT_ROOT>/node_modules/@babel/helper-simple-access/*
<PROJECT_ROOT>/node_modules/@babel/helper-split-export-declaration/*
<PROJECT_ROOT>/node_modules/@babel/helper-wrap-function/*
<PROJECT_ROOT>/node_modules/@babel/helpers/*
<PROJECT_ROOT>/node_modules/@babel/highlight/*
<PROJECT_ROOT>/node_modules/@babel/node/*
<PROJECT_ROOT>/node_modules/@babel/plugin-proposal-async-generator-functions/*
<PROJECT_ROOT>/node_modules/@babel/plugin-proposal-class-properties/*
<PROJECT_ROOT>/node_modules/@babel/plugin-proposal-decorators/*
<PROJECT_ROOT>/node_modules/@babel/plugin-proposal-export-namespace-from/*
<PROJECT_ROOT>/node_modules/@babel/plugin-proposal-nullish-coalescing-operator/*
<PROJECT_ROOT>/node_modules/@babel/plugin-proposal-object-rest-spread/*
<PROJECT_ROOT>/node_modules/@babel/plugin-proposal-optional-catch-binding/*
<PROJECT_ROOT>/node_modules/@babel/plugin-proposal-optional-chaining/*
<PROJECT_ROOT>/node_modules/@babel/plugin-proposal-unicode-property-regex/*
<PROJECT_ROOT>/node_modules/@babel/plugin-syntax-async-generators/*
<PROJECT_ROOT>/node_modules/@babel/plugin-syntax-class-properties/*
<PROJECT_ROOT>/node_modules/@babel/plugin-syntax-decorators/*
<PROJECT_ROOT>/node_modules/@babel/plugin-syntax-export-namespace-from/*
<PROJECT_ROOT>/node_modules/@babel/plugin-syntax-flow/*
<PROJECT_ROOT>/node_modules/@babel/plugin-syntax-jsx/*
<PROJECT_ROOT>/node_modules/@babel/plugin-syntax-nullish-coalescing-operator/*
<PROJECT_ROOT>/node_modules/@babel/plugin-syntax-object-rest-spread/*
<PROJECT_ROOT>/node_modules/@babel/plugin-syntax-optional-catch-binding/*
<PROJECT_ROOT>/node_modules/@babel/plugin-syntax-optional-chaining/*
<PROJECT_ROOT>/node_modules/@babel/plugin-transform-arrow-functions/*
<PROJECT_ROOT>/node_modules/@babel/plugin-transform-async-to-generator/*
<PROJECT_ROOT>/node_modules/@babel/plugin-transform-block-scoped-functions/*
<PROJECT_ROOT>/node_modules/@babel/plugin-transform-block-scoping/*
<PROJECT_ROOT>/node_modules/@babel/plugin-transform-classes/*
<PROJECT_ROOT>/node_modules/@babel/plugin-transform-computed-properties/*
<PROJECT_ROOT>/node_modules/@babel/plugin-transform-destructuring/*
<PROJECT_ROOT>/node_modules/@babel/plugin-transform-dotall-regex/*
<PROJECT_ROOT>/node_modules/@babel/plugin-transform-duplicate-keys/*
<PROJECT_ROOT>/node_modules/@babel/plugin-transform-exponentiation-operator/*
<PROJECT_ROOT>/node_modules/@babel/plugin-transform-flow-strip-types/*
<PROJECT_ROOT>/node_modules/@babel/plugin-transform-for-of/*
<PROJECT_ROOT>/node_modules/@babel/plugin-transform-function-name/*
<PROJECT_ROOT>/node_modules/@babel/plugin-transform-literals/*
<PROJECT_ROOT>/node_modules/@babel/plugin-transform-modules-amd/*
<PROJECT_ROOT>/node_modules/@babel/plugin-transform-modules-commonjs/*
<PROJECT_ROOT>/node_modules/@babel/plugin-transform-modules-systemjs/*
<PROJECT_ROOT>/node_modules/@babel/plugin-transform-modules-umd/*
<PROJECT_ROOT>/node_modules/@babel/plugin-transform-new-target/*
<PROJECT_ROOT>/node_modules/@babel/plugin-transform-object-super/*
<PROJECT_ROOT>/node_modules/@babel/plugin-transform-parameters/*
<PROJECT_ROOT>/node_modules/@babel/plugin-transform-react-display-name/*
<PROJECT_ROOT>/node_modules/@babel/plugin-transform-react-jsx/*
<PROJECT_ROOT>/node_modules/@babel/plugin-transform-react-jsx-self/*
<PROJECT_ROOT>/node_modules/@babel/plugin-transform-react-jsx-source/*
<PROJECT_ROOT>/node_modules/@babel/plugin-transform-regenerator/*
<PROJECT_ROOT>/node_modules/@babel/plugin-transform-shorthand-properties/*
<PROJECT_ROOT>/node_modules/@babel/plugin-transform-spread/*
<PROJECT_ROOT>/node_modules/@babel/plugin-transform-sticky-regex/*