-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
1247 lines (1247 loc) · 28.7 KB
/
package.json
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
{
"name": "@highlightjs/cdn-assets",
"description": "Syntax highlighting with language autodetection. (pre-compiled CDN assets)",
"keywords": [
"highlight",
"syntax"
],
"homepage": "https://highlightjs.org/",
"version": "10.4.0",
"author": {
"name": "Ivan Sagalaev",
"email": "[email protected]"
},
"contributors": [
{
"name": "Egor Rogov",
"email": "[email protected]"
},
{
"name": "Vladimir Jimenez",
"email": "[email protected]"
},
{
"name": "Jeremy Hull",
"email": "[email protected]"
},
{
"name": "Oleg Efimov",
"email": "[email protected]"
},
{
"name": "Gidi Meir Morris",
"email": "[email protected]"
},
{
"name": "Jan T. Sott",
"email": "[email protected]"
},
{
"name": "Li Xuanji",
"email": "[email protected]"
},
{
"name": "Marcos Cáceres",
"email": "[email protected]"
},
{
"name": "Sang Dang",
"email": "[email protected]"
},
{
"name": "Peter Leonov",
"email": "[email protected]"
},
{
"name": "Vanessa Sochat",
"email": "@vsoch"
},
{
"name": "Victor Karamzin",
"email": "[email protected]"
},
{
"name": "Vsevolod Solovyov",
"email": "[email protected]"
},
{
"name": "Anton Kovalyov",
"email": "[email protected]"
},
{
"name": "Nikita Ledyaev",
"email": "[email protected]"
},
{
"name": "Konstantin Evdokimenko",
"email": "[email protected]"
},
{
"name": "Dmitri Roudakov",
"email": "[email protected]"
},
{
"name": "Yuri Ivanov",
"email": "[email protected]"
},
{
"name": "Vladimir Ermakov",
"email": "[email protected]"
},
{
"name": "Vladimir Gubarkov",
"email": "[email protected]"
},
{
"name": "Brian Beck",
"email": "[email protected]"
},
{
"name": "MajestiC",
"email": "[email protected]"
},
{
"name": "Vasily Polovnyov",
"email": "[email protected]"
},
{
"name": "Vladimir Epifanov",
"email": "[email protected]"
},
{
"name": "Alexander Makarov",
"email": "[email protected]"
},
{
"name": "Vah",
"email": "[email protected]"
},
{
"name": "Shuen-Huei Guan",
"email": "[email protected]"
},
{
"name": "Jason Diamond",
"email": "[email protected]"
},
{
"name": "Michal Gabrukiewicz",
"email": "[email protected]"
},
{
"name": "Ruslan Keba",
"email": "[email protected]"
},
{
"name": "Sergey Baranov",
"email": "[email protected]"
},
{
"name": "Zaripov Yura",
"email": "[email protected]"
},
{
"name": "Oleg Volchkov",
"email": "[email protected]"
},
{
"name": "Vasily Mikhailitchenko",
"email": "[email protected]"
},
{
"name": "Jan Berkel",
"email": "[email protected]"
},
{
"name": "Vladimir Moskva",
"email": "[email protected]"
},
{
"name": "Loren Segal",
"email": "[email protected]"
},
{
"name": "Andrew Fedorov",
"email": "[email protected]"
},
{
"name": "Igor Kalnitsky",
"email": "[email protected]"
},
{
"name": "Valerii Hiora",
"email": "[email protected]"
},
{
"name": "Nikolay Zakharov",
"email": "[email protected]"
},
{
"name": "Dmitry Kovega",
"email": "[email protected]"
},
{
"name": "Sergey Ignatov",
"email": "[email protected]"
},
{
"name": "Antono Vasiljev",
"email": "[email protected]"
},
{
"name": "Stephan Kountso",
"email": "[email protected]"
},
{
"name": "pumbur",
"email": "[email protected]"
},
{
"name": "John Crepezzi",
"email": "[email protected]"
},
{
"name": "Andrey Vlasovskikh",
"email": "[email protected]"
},
{
"name": "Alexander Myadzel",
"email": "[email protected]"
},
{
"name": "Evgeny Stepanischev",
"email": "[email protected]"
},
{
"name": "Dmytrii Nagirniak",
"email": "[email protected]"
},
{
"name": "Luigi Maselli",
"email": "[email protected]"
},
{
"name": "Denis Bardadym",
"email": "[email protected]"
},
{
"name": "Aahan Krish",
"email": "[email protected]"
},
{
"name": "Ilya Baryshev",
"email": "[email protected]"
},
{
"name": "Aleksandar Ruzicic",
"email": "[email protected]"
},
{
"name": "Joe Cheng",
"email": "[email protected]"
},
{
"name": "Angel G. Olloqui",
"email": "[email protected]"
},
{
"name": "Jason Tate",
"email": "[email protected]"
},
{
"name": "Sergey Tikhomirov",
"email": "[email protected]"
},
{
"name": "Marc Fornos",
"email": "[email protected]"
},
{
"name": "Yoshihide Jimbo",
"email": "[email protected]"
},
{
"name": "Casey Duncan",
"email": "[email protected]"
},
{
"name": "Eugene Nizhibitsky",
"email": "[email protected]"
},
{
"name": "Alberto Gimeno",
"email": "[email protected]"
},
{
"name": "Kirk Kimmel",
"email": "[email protected]"
},
{
"name": "Nathan Grigg",
"email": "[email protected]"
},
{
"name": "Dr. Drang",
"email": "[email protected]"
},
{
"name": "Robin Ward",
"email": "[email protected]"
},
{
"name": "Dmitry Medvinsky",
"email": "[email protected]"
},
{
"name": "Jason Jacobson",
"email": "[email protected]"
},
{
"name": "Jonas Follesø",
"email": "[email protected]"
},
{
"name": "Dan Allen",
"email": "[email protected]"
},
{
"name": "noformnocontent",
"email": "[email protected]"
},
{
"name": "Damien White",
"email": "[email protected]"
},
{
"name": "Alexander Marenin",
"email": "[email protected]"
},
{
"name": "Cédric Néhémie",
"email": "[email protected]"
},
{
"name": "Simon Madine",
"email": "[email protected]"
},
{
"name": "Benjamin Pannell",
"email": "[email protected]"
},
{
"name": "Eric Knibbe",
"email": "[email protected]"
},
{
"name": "Poren Chiang",
"email": "[email protected]"
},
{
"name": "Kelley van Evert",
"email": "[email protected]"
},
{
"name": "Kurt Emch",
"email": "[email protected]"
},
{
"name": "Mehdi Dogguy",
"email": "[email protected]"
},
{
"name": "Nicolas Braud-Santoni",
"email": "[email protected]"
},
{
"name": "Ralf Bitter",
"email": "[email protected]"
},
{
"name": "Sylvestre Ledru",
"email": "[email protected]"
},
{
"name": "Troy Kershaw",
"email": "[email protected]"
},
{
"name": "Zena Treep",
"email": "[email protected]"
},
{
"name": "Daniel Kvasnicka",
"email": "[email protected]"
},
{
"name": "Carlo Kok",
"email": "[email protected]"
},
{
"name": "Bram de Haan",
"email": "[email protected]"
},
{
"name": "Seongwon Lee",
"email": "[email protected]"
},
{
"name": "Zaven Muradyan",
"email": "[email protected]"
},
{
"name": "Brent Bradbury",
"email": "[email protected]"
},
{
"name": "Martin Dilling-Hansen",
"email": "[email protected]"
},
{
"name": "Ilya Vassilevsky",
"email": "[email protected]"
},
{
"name": "Josh Adams",
"email": "[email protected]"
},
{
"name": "Dan Tao",
"email": "[email protected]"
},
{
"name": "Jeff Escalante",
"email": "[email protected]"
},
{
"name": "Jun Yang",
"email": "[email protected]"
},
{
"name": "Nikolay Lisienko",
"email": "[email protected]"
},
{
"name": "Heiko August",
"email": "[email protected]"
},
{
"name": "Domen Kožar",
"email": "[email protected]"
},
{
"name": "Travis Odom",
"email": "[email protected]"
},
{
"name": "innocenat",
"email": "[email protected]"
},
{
"name": "Arthur Bikmullin",
"email": "[email protected]"
},
{
"name": "Pascal Hurni",
"email": "[email protected]"
},
{
"name": "Roman Shmatov",
"email": "[email protected]"
},
{
"name": "Nic West",
"email": "[email protected]"
},
{
"name": "Panu Horsmalahti",
"email": "[email protected]"
},
{
"name": "Flaviu Tamas",
"email": "[email protected]"
},
{
"name": "Damian Mee",
"email": "[email protected]"
},
{
"name": "Christopher Kaster",
"email": "[email protected]"
},
{
"name": "Chris Eidhof",
"email": "[email protected]"
},
{
"name": "Nate Cook",
"email": "[email protected]"
},
{
"name": "Matt Diephouse",
"email": "[email protected]"
},
{
"name": "Erik Osheim",
"email": "[email protected]"
},
{
"name": "Guillaume Laforge",
"email": "[email protected]"
},
{
"name": "Lucas Mazza",
"email": "[email protected]"
},
{
"name": "Maxim Dikun",
"email": "[email protected]"
},
{
"name": "Henrik Feldt",
"email": "[email protected]"
},
{
"name": "Anton Kochkov",
"email": "[email protected]"
},
{
"name": "Michael Allen",
"email": "[email protected]"
},
{
"name": "JP Verkamp",
"email": "[email protected]"
},
{
"name": "Adam Joseph Cook",
"email": "[email protected]"
},
{
"name": "Sergey Vidyuk",
"email": "[email protected]"
},
{
"name": "Radek Liska",
"email": "[email protected]"
},
{
"name": "Jose Molina Colmenero",
"email": "[email protected]"
},
{
"name": "Max Mikhailov",
"email": "[email protected]"
},
{
"name": "Bryant Williams",
"email": "[email protected]"
},
{
"name": "Erik Paluka",
"email": "[email protected]"
},
{
"name": "Luke Holder",
"email": "[email protected]"
},
{
"name": "David Mohundro",
"email": "[email protected]"
},
{
"name": "Nicholas Blumhardt",
"email": "[email protected]"
},
{
"name": "Christophe de Dinechin",
"email": "[email protected]"
},
{
"name": "Taneli Vatanen",
"email": "[email protected]"
},
{
"name": "Jen Evers-Corvina",
"email": "[email protected]"
},
{
"name": "Kassio Borges",
"email": "[email protected]"
},
{
"name": "Cedric Sohrauer",
"email": "[email protected]"
},
{
"name": "Mickaël Delahaye",
"email": "[email protected]"
},
{
"name": "Hakan Özler",
"email": "[email protected]"
},
{
"name": "Trey Shugart",
"email": "[email protected]"
},
{
"name": "Vincent Zurczak",
"email": "[email protected]"
},
{
"name": "Adam Joseph Cook",
"email": "[email protected]"
},
{
"name": "Edwin Dalorzo",
"email": "[email protected]"
},
{
"name": "mucaho",
"email": "[email protected]"
},
{
"name": "Dennis Titze",
"email": "[email protected]"
},
{
"name": "Jon Evans",
"email": "[email protected]"
},
{
"name": "Brian Quistorff",
"email": "[email protected]"
},
{
"name": "Jonathan Suever",
"email": "[email protected]"
},
{
"name": "Alexis Hénaut",
"email": "[email protected]"
},
{
"name": "Chris Kiehl",
"email": "[email protected]"
},
{
"name": "Peter Piwowarski",
"email": "[email protected]"
},
{
"name": "Kenta Sato",
"email": "[email protected]"
},
{
"name": "Anthony Scemama",
"email": "[email protected]"
},
{
"name": "Taufik Nurrohman",
"email": "[email protected]"
},
{
"name": "Pedro Oliveira",
"email": "[email protected]"
},
{
"name": "Gu Yiling",
"email": "[email protected]"
},
{
"name": "Thomas Applencourt",
"email": "[email protected]"
},
{
"name": "Andrew Farmer",
"email": "[email protected]"
},
{
"name": "Sergey Mashkov",
"email": "[email protected]"
},
{
"name": "Raivo Laanemets",
"email": "[email protected]"
},
{
"name": "Kenneth Fuglsang",
"email": "[email protected]"
},
{
"name": "David Anson",
"email": "[email protected]"
},
{
"name": "Louis Barranqueiro",
"email": "[email protected]"
},
{
"name": "Tim Schumacher",
"email": "[email protected]"
},
{
"name": "Lucas Werkmeister",
"email": "[email protected]"
},
{
"name": "Dan Panzarella",
"email": "[email protected]"
},
{
"name": "Bruno Dias",
"email": "[email protected]"
},
{
"name": "Jay Strybis",
"email": "[email protected]"
},
{
"name": "Guillaume Gomez",
"email": "[email protected]"
},
{
"name": "Janis Voigtländer",
"email": "[email protected]"
},
{
"name": "Dirk Kirsten",
"email": "[email protected]"
},
{
"name": "MY Sun",
"email": "[email protected]"
},
{
"name": "Vadimtro",
"email": "[email protected]"
},
{
"name": "Benjamin Auder",
"email": "[email protected]"
},
{
"name": "Dotan Dimet",
"email": "[email protected]"
},
{
"name": "Manh Tuan",
"email": "[email protected]"
},
{
"name": "Philippe Charrière",
"email": "[email protected]"
},
{
"name": "Stefan Bechert",
"email": "[email protected]"
},
{
"name": "Samuel Reed",
"email": "[email protected]"
},
{
"name": "Yury Selivanov",
"email": "[email protected]"
},
{
"name": "Tsuyusato Kitsune",
"email": "[email protected]"
},
{
"name": "Mick MacCallum",
"email": "[email protected]"
},
{
"name": "Kristoffer Gronlund",
"email": "[email protected]"
},
{
"name": "Søren Enevoldsen",
"email": "[email protected]"
},
{
"name": "Daniel Rosenwasser",
"email": "[email protected]"
},
{
"name": "Ladislav Prskavec",
"email": "[email protected]"
},
{
"name": "Jan Kühle",
"email": "[email protected]"
},
{
"name": "Stefan Wienert",
"email": "[email protected]"
},
{
"name": "Nikita Savchenko",
"email": "[email protected]"
},
{
"name": "Stefania Mellai",
"email": "[email protected]"
},
{
"name": "Nebuleon Fumika",
"email": "[email protected]"
},
{
"name": "prince",
"email": "[email protected]"
},
{
"name": "Brendan Rocks",
"email": "[email protected]"
},
{
"name": "Raphaël Assénat",
"email": "[email protected]"
},
{
"name": "Matt Evans",
"email": "[email protected]"
},
{
"name": "Martin Braun",
"email": "[email protected]"
},
{
"name": "Boris Cherny",
"email": "[email protected]"
},
{
"name": "John Foster",
"email": "[email protected]"
},
{
"name": "Robert Dodier",
"email": "[email protected]"
},
{
"name": "Anthony Dugois",
"email": "[email protected]"
},
{
"name": "Qeole",
"email": "[email protected]"
},
{
"name": "Denis Ciccale",
"email": "[email protected]"
},
{
"name": "Michael Johnston",
"email": "[email protected]"
},
{
"name": "Taras",
"email": "[email protected]"
},
{
"name": "Philipp Wolfer",
"email": "[email protected]"
},
{
"name": "Mikko Kouhia",
"email": "[email protected]"
},
{
"name": "Billy Quith",
"email": "[email protected]"
},
{
"name": "Herbert Shin",
"email": "[email protected]"
},
{
"name": "Tristano Ajmone",
"email": "[email protected]"
},
{
"name": "Taisuke Fujimoto",
"email": "[email protected]"
},
{
"name": "Boone Severson",
"email": "[email protected]"
},
{
"name": "Victor Zhou",
"email": "[email protected]"
},
{
"name": "Lars Schulna",
"email": "[email protected]"
},
{
"name": "Jacob Childress",
"email": "[email protected]"
},
{
"name": "Gavin Siu",
"email": "[email protected]"
},
{
"name": "Builder's Brewery",
"email": "[email protected]"
},
{
"name": "Sergey Bronnikov",
"email": "[email protected]"
},
{
"name": "Joe Eli McIlvain",
"email": "[email protected]"
},
{
"name": "Stephan Boyer",
"email": "[email protected]"
},
{
"name": "Alex McKibben",
"email": "[email protected]"
},
{
"name": "Daniel Gamage",
"email": "[email protected]"
},
{
"name": "Matthew Daly",
"email": "[email protected]"
},
{
"name": "Magnus Madsen",
"email": "[email protected]"
},
{
"name": "Camil Staps",
"email": "[email protected]"
},
{
"name": "Alexander Lichter",
"email": "[email protected]"
},
{
"name": "Nicolas Le Gall",
"email": "[email protected]"
},
{
"name": "Kenton Hamaluik",
"email": "[email protected]"
},
{
"name": "Marvin Saignat",
"email": "[email protected]"
},
{
"name": "Michael Rodler",
"email": "[email protected]"
},
{
"name": "Sergey Sobko",
"email": "[email protected]"
},
{
"name": "Hale Chan",
"email": "[email protected]"
},
{
"name": "Kasper Andersen",
"email": "[email protected]"
},
{
"name": "Philipp A.",
"email": "[email protected]"
},
{
"name": "Guannan Wei",
"email": "[email protected]"
},
{
"name": "Sam Wu",
"email": "[email protected]"
},
{
"name": "Ike Ku",
"email": "[email protected]"
},
{
"name": "Andres Täht",
"email": "[email protected]"
},
{
"name": "Rene Saarsoo",
"email": "[email protected]"
},
{
"name": "Jordi Petit",
"email": "[email protected]"
},
{
"name": "Raphaël Parrëe",
"email": "[email protected]"
},
{
"name": "Joël Porquet",
"email": "[email protected]"
},
{
"name": "Alex Arslan",
"email": "[email protected]"
},
{
"name": "Stanislav Belov",
"email": "[email protected]"
},
{
"name": "Ivan Dementev",