-
Notifications
You must be signed in to change notification settings - Fork 107
/
Copy pathautoconfig.yaml
6632 lines (6630 loc) · 227 KB
/
autoconfig.yaml
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 auto-generated and orders your content based on the file structure of your repo.
# Do not edit this file; it will be replaced the next time you run the preview command.
# To manually order the contents of this curriculum rather than using the auto-generated file,
# include a config.yaml in your repo following the same conventions as this auto-generated file.
# A user-created config.yaml will have priority over the auto-generated one.
---
Standards:
-
Title: Node Modules
Description: Node Modules
UID: f0871f9dd3aa6369ba02b85485c0e1c5
SuccessCriteria:
- success criteria
ContentFiles:
-
Type: Lesson
UID: f0bc5dcfae937f5bbf35bfa952494cfc
Path: /node_modules/@babel/code-frame/README.md
-
Type: Lesson
UID: 0c2e70cfec8ad2b6f70db1a349ba443d
Path: /node_modules/@babel/core/README.md
-
Type: Lesson
UID: b0d330574fae96431751b7d22b2b1728
Path: /node_modules/@babel/core/node_modules/semver/CHANGELOG.md
-
Type: Lesson
UID: 4ef462decaedf95e40c6e27f85da53b5
Path: /node_modules/@babel/core/node_modules/semver/README.md
-
Type: Lesson
UID: e3ca0198904e3563c12593c8be6031df
Path: /node_modules/@babel/core/node_modules/source-map/CHANGELOG.md
-
Type: Lesson
UID: 969b3055ed99bb6788ad3f10ab662f48
Path: /node_modules/@babel/core/node_modules/source-map/README.md
-
Type: Lesson
UID: b5d72238982bd826d3d5a2e86971bf33
Path: /node_modules/@babel/generator/README.md
-
Type: Lesson
UID: 9ece47facf27655ab9a42f0d82deefe2
Path: /node_modules/@babel/generator/node_modules/source-map/CHANGELOG.md
-
Type: Lesson
UID: b205ac063ab65c5e96d9873aff3ef9e5
Path: /node_modules/@babel/generator/node_modules/source-map/README.md
-
Type: Lesson
UID: c2cc6bf5cad684b7b33379a50118a0fa
Path: /node_modules/@babel/helper-function-name/README.md
-
Type: Lesson
UID: 203b61bd7448271e8dac95338f7e672e
Path: /node_modules/@babel/helper-get-function-arity/README.md
-
Type: Lesson
UID: 332ca4686eefdac284b1ce0098de81f3
Path: /node_modules/@babel/helper-member-expression-to-functions/README.md
-
Type: Lesson
UID: 1a4ebd4e6c9880bcdb3838d7f70b960d
Path: /node_modules/@babel/helper-module-imports/README.md
-
Type: Lesson
UID: f55bbd833af46c1895d83cc13ebe113f
Path: /node_modules/@babel/helper-module-transforms/README.md
-
Type: Lesson
UID: 2bfc604fedaefb11dae0b7dd0e615a11
Path: /node_modules/@babel/helper-optimise-call-expression/README.md
-
Type: Lesson
UID: 2a723c628cfab722ca71ed125c240d75
Path: /node_modules/@babel/helper-plugin-utils/README.md
-
Type: Lesson
UID: 56ccbde8ebbf7308e0305d2d45b42e94
Path: /node_modules/@babel/helper-replace-supers/README.md
-
Type: Lesson
UID: cc0c5e6bf2bc42b282581ef9c3e6f412
Path: /node_modules/@babel/helper-simple-access/README.md
-
Type: Lesson
UID: 18439920266a0e755ec97b5a97060445
Path: /node_modules/@babel/helper-split-export-declaration/README.md
-
Type: Lesson
UID: fb4d6d43ac9632082eb9ae5f97bc7c46
Path: /node_modules/@babel/helper-validator-identifier/README.md
-
Type: Lesson
UID: 999c5176b9bd7d33aa924853aff9e25b
Path: /node_modules/@babel/helpers/README.md
-
Type: Lesson
UID: 890463fd96a843fd7622aa87831c9728
Path: /node_modules/@babel/highlight/README.md
-
Type: Lesson
UID: 1cef732bebd78dce3ac9a4f574730232
Path: /node_modules/@babel/highlight/node_modules/ansi-styles/readme.md
-
Type: Lesson
UID: 94e6a477d6f34958e42cbdd2fc3da169
Path: /node_modules/@babel/highlight/node_modules/chalk/readme.md
-
Type: Lesson
UID: 220091342b2cd30078daa758519ad0f9
Path: /node_modules/@babel/highlight/node_modules/color-convert/CHANGELOG.md
-
Type: Lesson
UID: d680a2e219f70df3589924c4f596ddfb
Path: /node_modules/@babel/highlight/node_modules/color-convert/README.md
-
Type: Lesson
UID: 6c829b42ffd3d736684965e8eb42b013
Path: /node_modules/@babel/highlight/node_modules/color-name/README.md
-
Type: Lesson
UID: 578cb0bc8f40f59f617954d8f0ede5f4
Path: /node_modules/@babel/highlight/node_modules/escape-string-regexp/readme.md
-
Type: Lesson
UID: f18d4f17f1c6d4e0dd4c4460d0b2b110
Path: /node_modules/@babel/highlight/node_modules/has-flag/readme.md
-
Type: Lesson
UID: e2bb01168495c503c56b8498009e6d7f
Path: /node_modules/@babel/highlight/node_modules/supports-color/readme.md
-
Type: Lesson
UID: 514d6743c17d14e609614ec675a65bcd
Path: /node_modules/@babel/parser/CHANGELOG.md
-
Type: Lesson
UID: 54c639e75a500c180bc8683f2e78dd5c
Path: /node_modules/@babel/parser/README.md
-
Type: Lesson
UID: 4216864d8ef144c720ca27d2947eb24a
Path: /node_modules/@babel/plugin-syntax-async-generators/README.md
-
Type: Lesson
UID: eb4fac901aad297901c8270560d49b32
Path: /node_modules/@babel/plugin-syntax-bigint/README.md
-
Type: Lesson
UID: feb1481ab5db0bd07f3390d9305fa85b
Path: /node_modules/@babel/plugin-syntax-class-properties/README.md
-
Type: Lesson
UID: 5ab496da36bf716ad1f7e855bfd0f1ce
Path: /node_modules/@babel/plugin-syntax-import-meta/README.md
-
Type: Lesson
UID: b1d9b8bc128846d861ea65a7f3400fdb
Path: /node_modules/@babel/plugin-syntax-json-strings/README.md
-
Type: Lesson
UID: e11b479043b680733c194b92ff4fcd19
Path: /node_modules/@babel/plugin-syntax-logical-assignment-operators/README.md
-
Type: Lesson
UID: e0615f7630a2ef51f90eef408fffb473
Path: /node_modules/@babel/plugin-syntax-nullish-coalescing-operator/README.md
-
Type: Lesson
UID: 770f8b454cd24ade711a50de3507e8c2
Path: /node_modules/@babel/plugin-syntax-numeric-separator/README.md
-
Type: Lesson
UID: 0760127ecb590431a6f5e801a9c18092
Path: /node_modules/@babel/plugin-syntax-object-rest-spread/README.md
-
Type: Lesson
UID: de40d5d23fa979b5ea7dd71f2dc7339c
Path: /node_modules/@babel/plugin-syntax-optional-catch-binding/README.md
-
Type: Lesson
UID: 25ca0cc995d3b63dd4f7c0499c8a981c
Path: /node_modules/@babel/plugin-syntax-optional-chaining/README.md
-
Type: Lesson
UID: ac0f292cc05c944c770c176e046a62d2
Path: /node_modules/@babel/plugin-syntax-top-level-await/README.md
-
Type: Lesson
UID: a77aeccbe2e4b67da6a1f0930a7bc8a2
Path: /node_modules/@babel/template/README.md
-
Type: Lesson
UID: cce37cd9bf7be939a10681345b7d71f1
Path: /node_modules/@babel/traverse/README.md
-
Type: Lesson
UID: 84e658a62376d84bd3631ae0a620cf14
Path: /node_modules/@babel/traverse/node_modules/globals/readme.md
-
Type: Lesson
UID: 8db7fd40b1a00d326537ee6d4b606ccc
Path: /node_modules/@babel/types/README.md
-
Type: Lesson
UID: c8998bde21d0fb2befa2b48932cdab18
Path: /node_modules/@bcoe/v8-coverage/CHANGELOG.md
-
Type: Lesson
UID: 34b6706ef56bf51e1ef213a164bd2bb1
Path: /node_modules/@bcoe/v8-coverage/LICENSE.md
-
Type: Lesson
UID: 7d93b818553443704e64db43527a5231
Path: /node_modules/@bcoe/v8-coverage/README.md
-
Type: Lesson
UID: 5edd23f56bb28613f59e44f9affccead
Path: /node_modules/@bcoe/v8-coverage/dist/lib/CHANGELOG.md
-
Type: Lesson
UID: 79f43e70228d7a959509249a955ff2c1
Path: /node_modules/@bcoe/v8-coverage/dist/lib/LICENSE.md
-
Type: Lesson
UID: a84a3a6697a09e2b1e21f54d7e3abd72
Path: /node_modules/@bcoe/v8-coverage/dist/lib/README.md
-
Type: Lesson
UID: 16afe57d608073b11c5e853bfbb5c5f6
Path: /node_modules/@cnakazawa/watch/README.md
-
Type: Lesson
UID: 7c04cc48fa41bce48311c4968b12b5ee
Path: /node_modules/@dabh/diagnostics/CHANGELOG.md
-
Type: Lesson
UID: c28eaedb8aa5b8eaf379ade399db3c79
Path: /node_modules/@dabh/diagnostics/README.md
-
Type: Lesson
UID: 1e3d5db8efbe270fd59aac468f0673a7
Path: /node_modules/@eslint/eslintrc/CHANGELOG.md
-
Type: Lesson
UID: a52583c0c717dcdf446673481b2cd479
Path: /node_modules/@eslint/eslintrc/README.md
-
Type: Lesson
UID: 2350f306e8d2790f791282e47f6d0d0d
Path: /node_modules/@istanbuljs/load-nyc-config/CHANGELOG.md
-
Type: Lesson
UID: 6684d8a421374faa934d9185224cf40d
Path: /node_modules/@istanbuljs/load-nyc-config/README.md
-
Type: Lesson
UID: a202f193c954ef6cb5a07218ea7db6f9
Path: /node_modules/@istanbuljs/load-nyc-config/node_modules/resolve-from/readme.md
-
Type: Lesson
UID: abf73c2f6c474526537de052ee37b166
Path: /node_modules/@istanbuljs/schema/CHANGELOG.md
-
Type: Lesson
UID: 1090f4173ec3fa0baca97c7bc9329d1d
Path: /node_modules/@istanbuljs/schema/README.md
-
Type: Lesson
UID: 1031c54bd5807f2dbb77b2e5bfa03903
Path: /node_modules/@jest/core/README.md
-
Type: Lesson
UID: 49878a59a4b40a76d9fd27f336f9ca3f
Path: /node_modules/@jest/core/node_modules/rimraf/CHANGELOG.md
-
Type: Lesson
UID: 6b6ae336fac6cf0d07b54e02fd40ef2d
Path: /node_modules/@jest/core/node_modules/rimraf/README.md
-
Type: Lesson
UID: 0573f5cc4cc1fb725c1ae227258ff279
Path: /node_modules/@nodelib/fs.scandir/README.md
-
Type: Lesson
UID: 874f0f2b12fd96803f131175dead1301
Path: /node_modules/@nodelib/fs.stat/README.md
-
Type: Lesson
UID: cf1e6372d9545b74200d674fd1cc4732
Path: /node_modules/@nodelib/fs.walk/README.md
-
Type: Lesson
UID: 59f861d20fa2f44a069d855bfa802617
Path: /node_modules/@sinonjs/commons/CHANGES.md
-
Type: Lesson
UID: f5aa8f71e6cdbd2fa97f392eb728ce70
Path: /node_modules/@sinonjs/commons/README.md
-
Type: Lesson
UID: c81c572eb21b989af87a96c35c65fbee
Path: /node_modules/@sinonjs/commons/lib/prototypes/README.md
-
Type: Lesson
UID: 78b853b67c88545491c9a1adcff9961c
Path: /node_modules/@sinonjs/fake-timers/CHANGELOG.md
-
Type: Lesson
UID: d558fb904bb865bd469e5c405f983166
Path: /node_modules/@sinonjs/fake-timers/README.md
-
Type: Lesson
UID: aad99d47bdf7bb4715ad513d1aa87b5e
Path: /node_modules/@types/babel__core/README.md
-
Type: Lesson
UID: b1d0e1512041b186a6b6047895cace37
Path: /node_modules/@types/babel__generator/README.md
-
Type: Lesson
UID: 3d30fabdcebe38bdb72206a172d5be3f
Path: /node_modules/@types/babel__template/README.md
-
Type: Lesson
UID: d5af8eaf227435ad816ae96b95e71fdf
Path: /node_modules/@types/babel__traverse/README.md
-
Type: Lesson
UID: eb3ccf2099248ce84f16aad94a69116a
Path: /node_modules/@types/graceful-fs/README.md
-
Type: Lesson
UID: c4688ecf32e8075accf2f299703c7b8c
Path: /node_modules/@types/istanbul-lib-coverage/README.md
-
Type: Lesson
UID: 98c1edc8024cf00576e3082f603d372c
Path: /node_modules/@types/istanbul-lib-report/README.md
-
Type: Lesson
UID: f07972225845eb8b9c9140246f1c6652
Path: /node_modules/@types/istanbul-reports/README.md
-
Type: Lesson
UID: c162cda878d9318748a82ea188095718
Path: /node_modules/@types/json-schema/README.md
-
Type: Lesson
UID: f2cfaee9f8d53720066211bf8cc111a0
Path: /node_modules/@types/json5/README.md
-
Type: Lesson
UID: a94b9cd891696f85a531c0122da500d1
Path: /node_modules/@types/node/README.md
-
Type: Lesson
UID: 6ddcf4b32c545a86e3ce144999c8db45
Path: /node_modules/@types/normalize-package-data/README.md
-
Type: Lesson
UID: 709615b676828941f737b02f83c22eae
Path: /node_modules/@types/prettier/README.md
-
Type: Lesson
UID: 893790609f93c4bbeae48be1574573e3
Path: /node_modules/@types/stack-utils/README.md
-
Type: Lesson
UID: cd7f179efc31c9d6279b09d81f53476c
Path: /node_modules/@types/yargs/README.md
-
Type: Lesson
UID: a457243db7c92319bbf7775f0c3e7cb4
Path: /node_modules/@types/yargs-parser/README.md
-
Type: Lesson
UID: 0c332ce51ae58ee254b3bfbb04a797a0
Path: /node_modules/@typescript-eslint/experimental-utils/CHANGELOG.md
-
Type: Lesson
UID: 1bf0beb5ef0f1d032302509c440e83df
Path: /node_modules/@typescript-eslint/experimental-utils/README.md
-
Type: Lesson
UID: 1cdddf24e72ef0fde415bf6a26936c34
Path: /node_modules/@typescript-eslint/scope-manager/CHANGELOG.md
-
Type: Lesson
UID: 0411e7084de123edec6aa11b17c5333f
Path: /node_modules/@typescript-eslint/scope-manager/README.md
-
Type: Lesson
UID: 6129f02504bb185bd9b372dd4acddbce
Path: /node_modules/@typescript-eslint/types/CHANGELOG.md
-
Type: Lesson
UID: 42d16d455779e81493d2d6fe2ed1bf29
Path: /node_modules/@typescript-eslint/types/README.md
-
Type: Lesson
UID: df56afc7e959b700770a22b584c5bbcd
Path: /node_modules/@typescript-eslint/typescript-estree/CHANGELOG.md
-
Type: Lesson
UID: 1f0f7a0522fdedb7bbb96c492cc31263
Path: /node_modules/@typescript-eslint/typescript-estree/README.md
-
Type: Lesson
UID: 5f0844ce96a2a29a25a3ebc86e04d9dd
Path: /node_modules/@typescript-eslint/visitor-keys/CHANGELOG.md
-
Type: Lesson
UID: b0486dbd54b77e65065fbc762b65d211
Path: /node_modules/@typescript-eslint/visitor-keys/README.md
-
Type: Lesson
UID: e581a1453e34bebd975f48cf0dbb2098
Path: /node_modules/abab/CHANGELOG.md
-
Type: Lesson
UID: b1a869bbb59ebb8267c15951dad63f0a
Path: /node_modules/abab/LICENSE.md
-
Type: Lesson
UID: b7484a9b8f963d7a64f50d3c7e7127e7
Path: /node_modules/abab/README.md
-
Type: Lesson
UID: 9c15f2d0534681a15719859f37597bf6
Path: /node_modules/acorn/CHANGELOG.md
-
Type: Lesson
UID: fd87ce5a01fe5c43b32e3f1be30854cf
Path: /node_modules/acorn/README.md
-
Type: Lesson
UID: 5b7e413857443a70d05f02e5776d51cb
Path: /node_modules/acorn-globals/README.md
-
Type: Lesson
UID: 531a6ebdb8c37fc9973fe50efd9164c1
Path: /node_modules/acorn-jsx/README.md
-
Type: Lesson
UID: 637cd7c99b6f5018e3041f070fb532b0
Path: /node_modules/acorn-walk/CHANGELOG.md
-
Type: Lesson
UID: 959195ee839f3cb71201423821163827
Path: /node_modules/acorn-walk/README.md
-
Type: Lesson
UID: 3cfb9e89575f02b1477c8a02683f6073
Path: /node_modules/ajv/README.md
-
Type: Lesson
UID: ae641b2dd6ca846ee994e982c30e195e
Path: /node_modules/ajv/lib/dotjs/README.md
-
Type: Lesson
UID: 5372e7d98050d34775afb22e89d18310
Path: /node_modules/ansi-colors/README.md
-
Type: Lesson
UID: 58d138eb03f7d02d0317e71787528392
Path: /node_modules/ansi-escapes/node_modules/type-fest/readme.md
-
Type: Lesson
UID: e919999792545e747061c2fa38a7d021
Path: /node_modules/ansi-escapes/readme.md
-
Type: Lesson
UID: 7d7f719642f431485d45f48999a19460
Path: /node_modules/ansi-regex/readme.md
-
Type: Lesson
UID: c4d0c44561d3f26b5ce078c56df1195a
Path: /node_modules/ansi-styles/readme.md
-
Type: Lesson
UID: e1fa6bf4735e9a96456f4d5b6b4f8581
Path: /node_modules/anymatch/README.md
-
Type: Lesson
UID: 794f248cb48e43d32c8b5ee180aa83f7
Path: /node_modules/argparse/CHANGELOG.md
-
Type: Lesson
UID: 5e95f73f0d651db6e4c9b4f714333ab0
Path: /node_modules/argparse/README.md
-
Type: Lesson
UID: 76be31133d949290d556bbb630f396da
Path: /node_modules/arr-diff/README.md
-
Type: Lesson
UID: 27e48c6be3712c4b5223f835a464e57b
Path: /node_modules/arr-flatten/README.md
-
Type: Lesson
UID: 6690fa133e8e71242db4a313b93b7cd2
Path: /node_modules/arr-union/README.md
-
Type: Lesson
UID: a88dbedb274b4a9ac691aff786cdc28d
Path: /node_modules/array-includes/CHANGELOG.md
-
Type: Lesson
UID: 5ddb71293b4a7611ac55dbaec97107df
Path: /node_modules/array-includes/README.md
-
Type: Lesson
UID: c50807fc03ebab751df2fa4601df3b17
Path: /node_modules/array-union/readme.md
-
Type: Lesson
UID: fe81f5ee77b85f3af648752c056dd682
Path: /node_modules/array-unique/README.md
-
Type: Lesson
UID: 257ec107afd4ed0c254abc37bbd43615
Path: /node_modules/array.prototype.flat/CHANGELOG.md
-
Type: Lesson
UID: 7fabde96d8d826d57c311c82177cd183
Path: /node_modules/array.prototype.flat/README.md
-
Type: Lesson
UID: 12786dad396c71ab4781a9c6e6d80cdb
Path: /node_modules/asn1/README.md
-
Type: Lesson
UID: df07e67f08f94c9bcb01c997aaae20f6
Path: /node_modules/assert-plus/CHANGES.md
-
Type: Lesson
UID: 71b1520c803c8e9f1b40a91ec6930135
Path: /node_modules/assert-plus/README.md
-
Type: Lesson
UID: f80eae3ad6028ef94cc14c6f97800f7d
Path: /node_modules/assign-symbols/README.md
-
Type: Lesson
UID: d2a02ef3e7368190fd37dc6032a60ef5
Path: /node_modules/astral-regex/readme.md
-
Type: Lesson
UID: c17034e5ff89985c7b138b45023924fb
Path: /node_modules/async/README.md
-
Type: Lesson
UID: 175622f0d5054bab2aacedfa3a1edbe1
Path: /node_modules/asynckit/README.md
-
Type: Lesson
UID: 382deadaa95190554730319130e28203
Path: /node_modules/atob/README.md
-
Type: Lesson
UID: 25fa18d32d8b3523c9bcafaacc859886
Path: /node_modules/aws-sign2/README.md
-
Type: Lesson
UID: 6bab20706040666adbee3a87e527dc4c
Path: /node_modules/aws4/README.md
-
Type: Lesson
UID: c822631e7e883a5c1c9af6ef1a713d99
Path: /node_modules/babel-jest/README.md
-
Type: Lesson
UID: ed9b8902db3dc8a8a8c398fc2c17ce08
Path: /node_modules/babel-plugin-istanbul/CHANGELOG.md
-
Type: Lesson
UID: d9f061bcc022fc7924929e5bb74fb038
Path: /node_modules/babel-plugin-istanbul/README.md
-
Type: Lesson
UID: 187e3541cf6a468bc155c1deccf26320
Path: /node_modules/babel-plugin-jest-hoist/README.md
-
Type: Lesson
UID: 945a3febda2d3ec317c6e4e78156dc33
Path: /node_modules/babel-preset-current-node-syntax/README.md
-
Type: Lesson
UID: 64bdcb491d28df24e5d6433de0db9916
Path: /node_modules/babel-preset-jest/README.md
-
Type: Lesson
UID: a0c346b74409f2ce9e016fd5ef66f9eb
Path: /node_modules/balanced-match/LICENSE.md
-
Type: Lesson
UID: 0825e2719b9cff07fcb1d883cf80874c
Path: /node_modules/balanced-match/README.md
-
Type: Lesson
UID: cb5f2557ac7d3052e27d069e9e99f424
Path: /node_modules/base/README.md
-
Type: Lesson
UID: dcc7b67b3f433ad9a11fd412269ddfe1
Path: /node_modules/base/node_modules/define-property/README.md
-
Type: Lesson
UID: 191e1b4e131c6e4a80195cadf30d1e2c
Path: /node_modules/bcrypt-pbkdf/CONTRIBUTING.md
-
Type: Lesson
UID: 6f53e5cc48112699cbb0252c9e2105a4
Path: /node_modules/bcrypt-pbkdf/README.md
-
Type: Lesson
UID: 0c781c9b2065c5994566f295737537e5
Path: /node_modules/brace-expansion/README.md
-
Type: Lesson
UID: 09bca1544f17db82d967e599afb62069
Path: /node_modules/braces/CHANGELOG.md
-
Type: Lesson
UID: 9876c82d3b25a8db01a91fc27e9c70b3
Path: /node_modules/braces/README.md
-
Type: Lesson
UID: e67a710a4a4cb0f8e2080bf0f4644b35
Path: /node_modules/browser-process-hrtime/README.md
-
Type: Lesson
UID: 00fb9cd72a8ca023cc5879e6ed406a3a
Path: /node_modules/bser/README.md
-
Type: Lesson
UID: b1565e3505487cdb99447d3918ea3f3d
Path: /node_modules/buffer-from/readme.md
-
Type: Lesson
UID: be3038771f3b96681266126b60e9afc0
Path: /node_modules/cache-base/README.md
-
Type: Lesson
UID: 2dcaf0c0141c6a2733f1afeb47bd41ce
Path: /node_modules/call-bind/CHANGELOG.md
-
Type: Lesson
UID: 39ae057fa7e734ccbef616e98e91b484
Path: /node_modules/call-bind/README.md
-
Type: Lesson
UID: 643ae2b5ad98f2ad702efe43f9f4fe45
Path: /node_modules/callsites/readme.md
-
Type: Lesson
UID: 2437c3fa9acd97d05206988fbe9b91eb
Path: /node_modules/camelcase/readme.md
-
Type: Lesson
UID: c9727231949fb9695ec4807e07b9d237
Path: /node_modules/capture-exit/README.md
-
Type: Lesson
UID: 72c51a853e46fe068fd9cfdd9e359c6f
Path: /node_modules/caseless/README.md
-
Type: Lesson
UID: f45098ebc3700b2f4e4982155221586d
Path: /node_modules/chalk/readme.md
-
Type: Lesson
UID: da7308f80e66c8bbf7e53d49b9918ace
Path: /node_modules/char-regex/README.md
-
Type: Lesson
UID: c4e9d61390dd3eba3a719f5e6787b1cc
Path: /node_modules/ci-info/CHANGELOG.md
-
Type: Lesson
UID: 755fd1f5594e92b1c2060dff41f6e84b
Path: /node_modules/ci-info/README.md
-
Type: Lesson
UID: 138faa8a0302628cdbc5101514029067
Path: /node_modules/cjs-module-lexer/CHANGELOG.md
-
Type: Lesson
UID: ace03adb5a5f34ce31b03d1df1dbc8f7
Path: /node_modules/cjs-module-lexer/README.md
-
Type: Lesson
UID: a34b338c69e4caa989d6fe60774d64b7
Path: /node_modules/class-utils/README.md
-
Type: Lesson
UID: 1f88ce96f5786e1dbee2cd258d560d17
Path: /node_modules/class-utils/node_modules/define-property/README.md
-
Type: Lesson
UID: b11230bd1bf2ade961dc47bc5847da0e
Path: /node_modules/class-utils/node_modules/is-accessor-descriptor/README.md
-
Type: Lesson
UID: 5f768e1974565c8282d8ce9c7d462392
Path: /node_modules/class-utils/node_modules/is-accessor-descriptor/node_modules/kind-of/README.md
-
Type: Lesson
UID: 84312184af8a19f8b4e2e065ef0a51a8
Path: /node_modules/class-utils/node_modules/is-data-descriptor/README.md
-
Type: Lesson
UID: 91b222a750348829ac45e463a47a38a3
Path: /node_modules/class-utils/node_modules/is-data-descriptor/node_modules/kind-of/README.md
-
Type: Lesson
UID: 50b72d2e7cbe3d0dad5aabc03d1b6bb4
Path: /node_modules/class-utils/node_modules/is-descriptor/README.md
-
Type: Lesson
UID: 5d252c7ce2d4526806b7fe2217049977
Path: /node_modules/class-utils/node_modules/kind-of/README.md
-
Type: Lesson
UID: 3c9379e9d76488960f1d06d86ff3bc8f
Path: /node_modules/cliui/CHANGELOG.md
-
Type: Lesson
UID: d7864190e4bc67528d6832e717deb223
Path: /node_modules/cliui/README.md
-
Type: Lesson
UID: 33723b3487e6b1d048361e71d7611d68
Path: /node_modules/cliui/node_modules/emoji-regex/README.md
-
Type: Lesson
UID: 69a57b06913092e0315e5f56877b982a
Path: /node_modules/cliui/node_modules/is-fullwidth-code-point/readme.md
-
Type: Lesson
UID: d7420c5fcc46947d2d79a705da025669
Path: /node_modules/cliui/node_modules/string-width/readme.md
-
Type: Lesson
UID: 22d3bd967cce709a1643e82982eabd8b
Path: /node_modules/co/History.md
-
Type: Lesson
UID: c47fc4b2ca3e07f065a1d06355bb2cc8
Path: /node_modules/co/Readme.md
-
Type: Lesson
UID: 19a609c62daeab049cf0d1e7b87184b2
Path: /node_modules/collect-v8-coverage/CHANGELOG.md
-
Type: Lesson
UID: 4858f2a9e1f5f318cc8ca22b8c515f3f
Path: /node_modules/collect-v8-coverage/README.md
-
Type: Lesson
UID: 02da3685c4953d7177ac9568cadd5d00
Path: /node_modules/collection-visit/README.md
-
Type: Lesson
UID: 410d38906793b6cafef96e4a0a2b6584
Path: /node_modules/color/README.md
-
Type: Lesson
UID: 53c8550ca2b493be8962b3c72bf1bc7a
Path: /node_modules/color/node_modules/color-convert/CHANGELOG.md
-
Type: Lesson
UID: daaa09811a5597605d77fe7a497ece19
Path: /node_modules/color/node_modules/color-convert/README.md
-
Type: Lesson
UID: c2c52bbfa2db786a748ff1e3849ba44c
Path: /node_modules/color/node_modules/color-name/README.md
-
Type: Lesson
UID: 58ae22e54a25e5bab77589872a66236f
Path: /node_modules/color-convert/CHANGELOG.md
-
Type: Lesson
UID: 51eba068b5202fa52bb201559becec01
Path: /node_modules/color-convert/README.md
-
Type: Lesson
UID: b45115542d41754de6b1cec19f0c164d
Path: /node_modules/color-name/README.md
-
Type: Lesson
UID: 260e0a96fc7e9c4feee687ea85782c55
Path: /node_modules/color-string/CHANGELOG.md
-
Type: Lesson
UID: 68b19f7cb462dbbb4435dea3593ed6d0
Path: /node_modules/color-string/README.md
-
Type: Lesson
UID: d53ffde1d7fdd00a18e67a005c7246e3
Path: /node_modules/colors/README.md
-
Type: Lesson
UID: b414dc8c1cec53b2e5642ba48011fdb9
Path: /node_modules/colorspace/LICENSE.md
-
Type: Lesson
UID: ae6af9716abd5f196ffc4d6988dd6c38
Path: /node_modules/colorspace/README.md
-
Type: Lesson
UID: 1d4ba21df5fca45a9ae56b84260bfb6b
Path: /node_modules/combined-stream/Readme.md
-
Type: Lesson
UID: 37fd277ae94cd238cafab0756b39fe7b
Path: /node_modules/component-emitter/History.md
-
Type: Lesson
UID: 5cb0e2e597dc89702df0884560b72be2
Path: /node_modules/component-emitter/Readme.md
-
Type: Lesson
UID: ba028231c3dc921ab552cf358b513df6
Path: /node_modules/contains-path/README.md
-
Type: Lesson
UID: 81ed6002c63f5e5f2fc381d71a80a3c8
Path: /node_modules/convert-source-map/README.md
-
Type: Lesson
UID: 2af94bc576732bf4f483c95db586ae31
Path: /node_modules/core-util-is/README.md
-
Type: Lesson
UID: 781da0bf0684f16e9e9b9434ea720864
Path: /node_modules/cross-spawn/CHANGELOG.md
-
Type: Lesson
UID: 4170fea9a4c288416bc5bd3cb544938e
Path: /node_modules/cross-spawn/README.md
-
Type: Lesson
UID: c4d80782632e5e1a97fc63b8069682ac
Path: /node_modules/cssstyle/README.md
-
Type: Lesson
UID: bc856f3fa414b52a27462be0e92d381e
Path: /node_modules/dashdash/CHANGES.md
-
Type: Lesson
UID: 8f10dfa29e6ebf1c6f64f4aa91620f16
Path: /node_modules/dashdash/README.md
-
Type: Lesson
UID: 5e455f0cc0aae197eb14ecd981167cd2
Path: /node_modules/data-urls/README.md
-
Type: Lesson
UID: 869c9ed83af0b651fec4885a7e7c0a11
Path: /node_modules/debug/README.md
-
Type: Lesson
UID: e00b9d72a372a7da6e5a07e99d36ea24
Path: /node_modules/decamelize/readme.md
-
Type: Lesson
UID: d7f42c652a89d0c4c54743917bebaf9e
Path: /node_modules/decimal.js/CHANGELOG.md
-
Type: Lesson
UID: 02fa0f11f3f828766597d125358d178b
Path: /node_modules/decimal.js/LICENCE.md
-
Type: Lesson
UID: 37836c839e6647bbd64aa775af6dcb4e
Path: /node_modules/decimal.js/README.md
-
Type: Lesson
UID: 12201e293c0653fd5ce6a27609ef6843
Path: /node_modules/decode-uri-component/readme.md
-
Type: Lesson
UID: 281b2b37cee12dffd1acf6b7bf41e008
Path: /node_modules/deepmerge/changelog.md
-
Type: Lesson
UID: 6d8b572705731ccf9cfa762dc5583752
Path: /node_modules/deepmerge/readme.md
-
Type: Lesson
UID: d8ec0db2afb1c203cfebaf9873cb0524
Path: /node_modules/define-properties/CHANGELOG.md
-
Type: Lesson
UID: a9fad06a79a0b6f3486fa587595ec220
Path: /node_modules/define-properties/README.md
-
Type: Lesson
UID: 45a4eb1f70c3e74dd9a73c4ea120d526
Path: /node_modules/define-property/CHANGELOG.md
-
Type: Lesson
UID: 12e670261981a451a08d180f9b79ac02
Path: /node_modules/define-property/README.md
-
Type: Lesson
UID: 536cf4e86636f7fe150972ddd94c7975
Path: /node_modules/delayed-stream/Readme.md
-
Type: Lesson
UID: d2f83c64011694c89c4b2c90fd401677
Path: /node_modules/detect-newline/readme.md
-
Type: Lesson
UID: ce4eec5ae0c19223f1aaa1a63029d6f1
Path: /node_modules/diff-sequences/README.md
-
Type: Lesson
UID: 3cb2d6de3271d01a735196bbee78e235
Path: /node_modules/diff-sequences/perf/example.md
-
Type: Lesson
UID: 4287c07f9405fd735465fab4d2a6f256
Path: /node_modules/dir-glob/readme.md
-
Type: Lesson
UID: 7ca9a5fdb1206334d5f9cb8729c8e823
Path: /node_modules/doctrine/CHANGELOG.md
-
Type: Lesson
UID: 16e790897098408125961db046fdb6d7
Path: /node_modules/doctrine/README.md
-
Type: Lesson
UID: cfc8d39042ce8864402db6a8d54a7fe6
Path: /node_modules/domexception/README.md
-
Type: Lesson
UID: 4791b30cef3959b16f7349e459818010
Path: /node_modules/domexception/node_modules/webidl-conversions/LICENSE.md
-
Type: Lesson
UID: 3f36bf99216431a30bfd74f2b8a1045f
Path: /node_modules/domexception/node_modules/webidl-conversions/README.md
-
Type: Lesson
UID: 4f58277e5323bcceb2972bf11250ced9
Path: /node_modules/ecc-jsbn/README.md
-
Type: Lesson
UID: 2c5a26b7c1393e00974a947112e73a85
Path: /node_modules/emittery/readme.md
-
Type: Lesson
UID: 9f95d079298e13f0261bf1963982aa73
Path: /node_modules/emoji-regex/README.md
-
Type: Lesson
UID: fb5016575d9d5351d3beb3ce4e6a5811
Path: /node_modules/enabled/README.md
-
Type: Lesson
UID: d7130558bf029f2d7a5bde58556be90e
Path: /node_modules/end-of-stream/README.md
-
Type: Lesson
UID: 87aa2832657f606a6a5de66c8db9de20
Path: /node_modules/enquirer/CHANGELOG.md
-
Type: Lesson
UID: ef95adf0a6740d1ae579e6fb462e613c
Path: /node_modules/enquirer/README.md
-
Type: Lesson
UID: e1e453e81407a9d4f907f4b46f56821c
Path: /node_modules/error-ex/README.md
-
Type: Lesson
UID: 09f816c5f17fd1a6bb51857b6d6355fc
Path: /node_modules/es-abstract/CHANGELOG.md
-
Type: Lesson
UID: 5f7831b2721e1c60cc87656c42a11a8e
Path: /node_modules/es-abstract/README.md
-
Type: Lesson
UID: 8b32a64b6506a570dfea11c1f640b370
Path: /node_modules/es-to-primitive/CHANGELOG.md
-
Type: Lesson
UID: ac7da4af633a03343895c6a21f7912c0
Path: /node_modules/es-to-primitive/README.md