-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathplugin-to-npm-url.json
More file actions
1382 lines (1382 loc) · 190 KB
/
plugin-to-npm-url.json
File metadata and controls
1382 lines (1382 loc) · 190 KB
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
Map(1380) {
'jrowny.brackets.snippets' => 'https://registry.npmjs.org/@phoenix-plugin-registry/jrowny.brackets.snippets/-/jrowny.brackets.snippets-1.1.0.tgz\n',
'gruehle.markdown-preview' => 'https://registry.npmjs.org/@phoenix-plugin-registry/gruehle.markdown-preview/-/gruehle.markdown-preview-1.0.11.tgz\n',
'test-quickly' => 'https://registry.npmjs.org/@phoenix-plugin-registry/test-quickly/-/test-quickly-1.0.3.tgz\n',
'pflynn.brackets.editor.nav' => 'https://registry.npmjs.org/@phoenix-plugin-registry/pflynn.brackets.editor.nav/-/pflynn.brackets.editor.nav-1.1.0.tgz\n',
'pflynn.copy-as-html' => 'https://registry.npmjs.org/@phoenix-plugin-registry/pflynn.copy-as-html/-/pflynn.copy-as-html-1.0.5.tgz\n',
'pflynn.quick.import' => 'https://registry.npmjs.org/@phoenix-plugin-registry/pflynn.quick.import/-/pflynn.quick.import-1.0.5.tgz\n',
'pflynn.svg.preview' => 'https://registry.npmjs.org/@phoenix-plugin-registry/pflynn.svg.preview/-/pflynn.svg.preview-1.3.0.tgz\n',
'theseus' => 'https://registry.npmjs.org/@phoenix-plugin-registry/theseus/-/theseus-0.4.19.tgz\n',
'brackets-indent-guides' => 'https://registry.npmjs.org/@phoenix-plugin-registry/brackets-indent-guides/-/brackets-indent-guides-1.3.11.tgz\n',
'brackets-lorem-ipsum' => 'https://registry.npmjs.org/@phoenix-plugin-registry/brackets-lorem-ipsum/-/brackets-lorem-ipsum-1.2.1.tgz\n',
'brackets-ruler' => 'https://registry.npmjs.org/@phoenix-plugin-registry/brackets-ruler/-/brackets-ruler-2.3.12.tgz\n',
'camden.caniuse' => 'https://registry.npmjs.org/@phoenix-plugin-registry/camden.caniuse/-/camden.caniuse-2.1.2.tgz\n',
'camden.csslint' => 'https://registry.npmjs.org/@phoenix-plugin-registry/camden.csslint/-/camden.csslint-2.0.22.tgz\n',
'camden.jshint' => 'https://registry.npmjs.org/@phoenix-plugin-registry/camden.jshint/-/camden.jshint-2.2.20.tgz\n',
'karma-brackets' => 'https://registry.npmjs.org/@phoenix-plugin-registry/karma-brackets/-/karma-brackets-0.5.1.tgz\n',
'dehats.annotate' => 'https://registry.npmjs.org/@phoenix-plugin-registry/dehats.annotate/-/dehats.annotate-1.1.0.tgz\n',
'dehats.ccextbuilder' => 'https://registry.npmjs.org/@phoenix-plugin-registry/dehats.ccextbuilder/-/dehats.ccextbuilder-1.2.1.tgz\n',
'brackets-git-info' => 'https://registry.npmjs.org/@phoenix-plugin-registry/brackets-git-info/-/brackets-git-info-1.0.7.tgz\n',
'jeffbooher.new-project' => 'https://registry.npmjs.org/@phoenix-plugin-registry/jeffbooher.new-project/-/jeffbooher.new-project-0.4.98.tgz\n',
'bsirlinger.brackets-file-watcher' => 'https://registry.npmjs.org/@phoenix-plugin-registry/bsirlinger.brackets-file-watcher/-/bsirlinger.brackets-file-watcher-0.1.2.tgz\n',
'brackets-key-remapper' => 'https://registry.npmjs.org/@phoenix-plugin-registry/brackets-key-remapper/-/brackets-key-remapper-0.2.4.tgz\n',
'sidebar-plus' => 'https://registry.npmjs.org/@phoenix-plugin-registry/sidebar-plus/-/sidebar-plus-2.0.3.tgz\n',
'brackets-various-improvements' => 'https://registry.npmjs.org/@phoenix-plugin-registry/brackets-various-improvements/-/brackets-various-improvements-2.2.1.tgz\n',
'brackets-beautify' => 'https://registry.npmjs.org/@phoenix-plugin-registry/brackets-beautify/-/brackets-beautify-2.12.0.tgz\n',
'mikaeljorhult.brackets-todo' => 'https://registry.npmjs.org/@phoenix-plugin-registry/mikaeljorhult.brackets-todo/-/mikaeljorhult.brackets-todo-0.9.7.tgz\n',
'brackets-jade' => 'https://registry.npmjs.org/@phoenix-plugin-registry/brackets-jade/-/brackets-jade-1.0.5.tgz\n',
'pflynn.eval-in-browser' => 'https://registry.npmjs.org/@phoenix-plugin-registry/pflynn.eval-in-browser/-/pflynn.eval-in-browser-1.0.2.tgz\n',
'themesforbrackets' => 'https://registry.npmjs.org/@phoenix-plugin-registry/themesforbrackets/-/themesforbrackets-2.0.14.tgz\n',
'edge-code-web-fonts' => 'https://registry.npmjs.org/@phoenix-plugin-registry/edge-code-web-fonts/-/edge-code-web-fonts-0.1.7.tgz\n',
'brackets-emmet' => 'https://registry.npmjs.org/@phoenix-plugin-registry/brackets-emmet/-/brackets-emmet-1.2.2.tgz\n',
'themes' => 'https://registry.npmjs.org/@phoenix-plugin-registry/themes/-/themes-2.0.6.tgz\n',
'interactive-linter' => 'https://registry.npmjs.org/@phoenix-plugin-registry/interactive-linter/-/interactive-linter-1.0.5.tgz\n',
'ternific' => 'https://registry.npmjs.org/@phoenix-plugin-registry/ternific/-/ternific-0.9.5.tgz\n',
'brackets-code-folding' => 'https://registry.npmjs.org/@phoenix-plugin-registry/brackets-code-folding/-/brackets-code-folding-0.3.5.tgz\n',
'zaggino.brackets-git' => 'https://registry.npmjs.org/@phoenix-plugin-registry/zaggino.brackets-git/-/zaggino.brackets-git-0.16.6.tgz\n',
'brackets-display-shortcuts' => 'https://registry.npmjs.org/@phoenix-plugin-registry/brackets-display-shortcuts/-/brackets-display-shortcuts-1.4.1.tgz\n',
'brackets-quick-markup' => 'https://registry.npmjs.org/@phoenix-plugin-registry/brackets-quick-markup/-/brackets-quick-markup-3.3.0.tgz\n',
'soimon.brackets-document-outliner' => 'https://registry.npmjs.org/@phoenix-plugin-registry/soimon.brackets-document-outliner/-/soimon.brackets-document-outliner-1.0.3.tgz\n',
'brackets-toolbar-toggle' => 'https://registry.npmjs.org/@phoenix-plugin-registry/brackets-toolbar-toggle/-/brackets-toolbar-toggle-1.0.0.tgz\n',
'brackets-xunit' => 'https://registry.npmjs.org/@phoenix-plugin-registry/brackets-xunit/-/brackets-xunit-0.4.3.tgz\n',
'pflynn.sloc-counter' => 'https://registry.npmjs.org/@phoenix-plugin-registry/pflynn.sloc-counter/-/pflynn.sloc-counter-1.2.0.tgz\n',
'com.tregusti.gherkin' => 'https://registry.npmjs.org/@phoenix-plugin-registry/com.tregusti.gherkin/-/com.tregusti.gherkin-0.2.3.tgz\n',
'dsbonev.whitespace-normalizer' => 'https://registry.npmjs.org/@phoenix-plugin-registry/dsbonev.whitespace-normalizer/-/dsbonev.whitespace-normalizer-0.3.0.tgz\n',
'brackets-special-html-chars' => 'https://registry.npmjs.org/@phoenix-plugin-registry/brackets-special-html-chars/-/brackets-special-html-chars-1.2.6.tgz\n',
'brackets-cowsay' => 'https://registry.npmjs.org/@phoenix-plugin-registry/brackets-cowsay/-/brackets-cowsay-1.0.1.tgz\n',
'brackets-fortune' => 'https://registry.npmjs.org/@phoenix-plugin-registry/brackets-fortune/-/brackets-fortune-1.0.1.tgz\n',
'brackets-workspaces' => 'https://registry.npmjs.org/@phoenix-plugin-registry/brackets-workspaces/-/brackets-workspaces-2.1.3.tgz\n',
'enturn.quick-search' => 'https://registry.npmjs.org/@phoenix-plugin-registry/enturn.quick-search/-/enturn.quick-search-1.1.4.tgz\n',
'pedelman.brackets-surround' => 'https://registry.npmjs.org/@phoenix-plugin-registry/pedelman.brackets-surround/-/pedelman.brackets-surround-1.0.4.tgz\n',
'mikaeljorhult.brackets-autoprefixer' => 'https://registry.npmjs.org/@phoenix-plugin-registry/mikaeljorhult.brackets-autoprefixer/-/mikaeljorhult.brackets-autoprefixer-0.7.5.tgz\n',
'angularui.angularjs' => 'https://registry.npmjs.org/@phoenix-plugin-registry/angularui.angularjs/-/angularui.angularjs-1.1.2.tgz\n',
'brackets-minifier' => 'https://registry.npmjs.org/@phoenix-plugin-registry/brackets-minifier/-/brackets-minifier-1.1.1.tgz\n',
'jdiehl.less-autocompile' => 'https://registry.npmjs.org/@phoenix-plugin-registry/jdiehl.less-autocompile/-/jdiehl.less-autocompile-1.1.14.tgz\n',
'asgerf.bracket-rename' => 'https://registry.npmjs.org/@phoenix-plugin-registry/asgerf.bracket-rename/-/asgerf.bracket-rename-0.2.9.tgz\n',
'de.richter.brackets.jsonlint' => 'https://registry.npmjs.org/@phoenix-plugin-registry/de.richter.brackets.jsonlint/-/de.richter.brackets.jsonlint-0.1.3.tgz\n',
'camden.jsdownloader' => 'https://registry.npmjs.org/@phoenix-plugin-registry/camden.jsdownloader/-/camden.jsdownloader-3.2.0.tgz\n',
'francescolaffi.vagrant' => 'https://registry.npmjs.org/@phoenix-plugin-registry/francescolaffi.vagrant/-/francescolaffi.vagrant-0.1.0.tgz\n',
'brackets-preferences-viewer' => 'https://registry.npmjs.org/@phoenix-plugin-registry/brackets-preferences-viewer/-/brackets-preferences-viewer-1.0.5.tgz\n',
'camden.htmlescaper' => 'https://registry.npmjs.org/@phoenix-plugin-registry/camden.htmlescaper/-/camden.htmlescaper-1.0.2.tgz\n',
'lintyai' => 'https://registry.npmjs.org/@phoenix-plugin-registry/lintyai/-/lintyai-1.2.0.tgz\n',
'm.yaghobi.quickformtool' => 'https://registry.npmjs.org/@phoenix-plugin-registry/m.yaghobi.quickformtool/-/m.yaghobi.quickformtool-2.7.0.tgz\n',
'brackets-go' => 'https://registry.npmjs.org/@phoenix-plugin-registry/brackets-go/-/brackets-go-0.0.3.tgz\n',
'cornsnippet-brackets' => 'https://registry.npmjs.org/@phoenix-plugin-registry/cornsnippet-brackets/-/cornsnippet-brackets-0.0.1.tgz\n',
'brackets-sort-text' => 'https://registry.npmjs.org/@phoenix-plugin-registry/brackets-sort-text/-/brackets-sort-text-0.1.4.tgz\n',
'bracketsgh' => 'https://registry.npmjs.org/@phoenix-plugin-registry/bracketsgh/-/bracketsgh-0.3.0.tgz\n',
'pockata.striptrailingspaces' => 'https://registry.npmjs.org/@phoenix-plugin-registry/pockata.striptrailingspaces/-/pockata.striptrailingspaces-2.1.0.tgz\n',
'brackets-terminal' => 'https://registry.npmjs.org/@phoenix-plugin-registry/brackets-terminal/-/brackets-terminal-0.4.0.tgz\n',
'pflynn.lint-all-the-things' => 'https://registry.npmjs.org/@phoenix-plugin-registry/pflynn.lint-all-the-things/-/pflynn.lint-all-the-things-1.1.1.tgz\n',
'korri.citranslate' => 'https://registry.npmjs.org/@phoenix-plugin-registry/korri.citranslate/-/korri.citranslate-0.1.0.tgz\n',
'camden.htmlhint' => 'https://registry.npmjs.org/@phoenix-plugin-registry/camden.htmlhint/-/camden.htmlhint-1.2.4.tgz\n',
'martypenner.autosave-files-on-window-blur' => 'https://registry.npmjs.org/@phoenix-plugin-registry/martypenner.autosave-files-on-window-blur/-/martypenner.autosave-files-on-window-blur-1.0.7.tgz\n',
'ggarek.alignit' => 'https://registry.npmjs.org/@phoenix-plugin-registry/ggarek.alignit/-/ggarek.alignit-0.1.1.tgz\n',
'talmand.html-templates' => 'https://registry.npmjs.org/@phoenix-plugin-registry/talmand.html-templates/-/talmand.html-templates-1.3.5.tgz\n',
'html-block-selector' => 'https://registry.npmjs.org/@phoenix-plugin-registry/html-block-selector/-/html-block-selector-1.0.1.tgz\n',
'brackets-console-log-control' => 'https://registry.npmjs.org/@phoenix-plugin-registry/brackets-console-log-control/-/brackets-console-log-control-0.0.3.tgz\n',
'jarradsalmon.rightclickextended' => 'https://registry.npmjs.org/@phoenix-plugin-registry/jarradsalmon.rightclickextended/-/jarradsalmon.rightclickextended-1.3.1.tgz\n',
'brackets-bower' => 'https://registry.npmjs.org/@phoenix-plugin-registry/brackets-bower/-/brackets-bower-0.2.13.tgz\n',
'filetreesync' => 'https://registry.npmjs.org/@phoenix-plugin-registry/filetreesync/-/filetreesync-0.0.4.tgz\n',
'fezvrasta.brackets-darkbar' => 'https://registry.npmjs.org/@phoenix-plugin-registry/fezvrasta.brackets-darkbar/-/fezvrasta.brackets-darkbar-1.0.1.tgz\n',
'brackets-builder' => 'https://registry.npmjs.org/@phoenix-plugin-registry/brackets-builder/-/brackets-builder-0.0.5.tgz\n',
'opensourceportfolio.brackets-cut-line' => 'https://registry.npmjs.org/@phoenix-plugin-registry/opensourceportfolio.brackets-cut-line/-/opensourceportfolio.brackets-cut-line-0.2.0.tgz\n',
'ericsmekens.knockoutjs' => 'https://registry.npmjs.org/@phoenix-plugin-registry/ericsmekens.knockoutjs/-/ericsmekens.knockoutjs-0.1.0.tgz\n',
'brackets-latex' => 'https://registry.npmjs.org/@phoenix-plugin-registry/brackets-latex/-/brackets-latex-0.3.3.tgz\n',
'tommalbran.brackets-fonts-viewer' => 'https://registry.npmjs.org/@phoenix-plugin-registry/tommalbran.brackets-fonts-viewer/-/tommalbran.brackets-fonts-viewer-0.4.0.tgz\n',
'jade' => 'https://registry.npmjs.org/@phoenix-plugin-registry/jade/-/jade-2.0.0.tgz\n',
'brackets-legibility' => 'https://registry.npmjs.org/@phoenix-plugin-registry/brackets-legibility/-/brackets-legibility-0.0.3.tgz\n',
'lens' => 'https://registry.npmjs.org/@phoenix-plugin-registry/lens/-/lens-1.0.1.tgz\n',
'brackets-nodejs' => 'https://registry.npmjs.org/@phoenix-plugin-registry/brackets-nodejs/-/brackets-nodejs-1.4.2.tgz\n',
'talmand.select-lines' => 'https://registry.npmjs.org/@phoenix-plugin-registry/talmand.select-lines/-/talmand.select-lines-1.3.0.tgz\n',
'brackets.swatcher' => 'https://registry.npmjs.org/@phoenix-plugin-registry/brackets.swatcher/-/brackets.swatcher-1.2.2.tgz\n',
'le717.html-skeleton' => 'https://registry.npmjs.org/@phoenix-plugin-registry/le717.html-skeleton/-/le717.html-skeleton-1.4.3.tgz\n',
'brackets-main-window' => 'https://registry.npmjs.org/@phoenix-plugin-registry/brackets-main-window/-/brackets-main-window-1.0.3.tgz\n',
'brackets-console' => 'https://registry.npmjs.org/@phoenix-plugin-registry/brackets-console/-/brackets-console-1.4.1.tgz\n',
'tab-tags' => 'https://registry.npmjs.org/@phoenix-plugin-registry/tab-tags/-/tab-tags-1.0.9.tgz\n',
'mirorauhala.bootstrap-skeleton' => 'https://registry.npmjs.org/@phoenix-plugin-registry/mirorauhala.bootstrap-skeleton/-/mirorauhala.bootstrap-skeleton-0.2.0.tgz\n',
'com.nextrevision.puppet-syntax' => 'https://registry.npmjs.org/@phoenix-plugin-registry/com.nextrevision.puppet-syntax/-/com.nextrevision.puppet-syntax-0.1.6.tgz\n',
'eb.instasrc' => 'https://registry.npmjs.org/@phoenix-plugin-registry/eb.instasrc/-/eb.instasrc-1.8.0.tgz\n',
'kamrik.brackets.simple.runner' => 'https://registry.npmjs.org/@phoenix-plugin-registry/kamrik.brackets.simple.runner/-/kamrik.brackets.simple.runner-0.0.2.tgz\n',
'jslint.customiser' => 'https://registry.npmjs.org/@phoenix-plugin-registry/jslint.customiser/-/jslint.customiser-0.1.0.tgz\n',
'carreau.visibletabs' => 'https://registry.npmjs.org/@phoenix-plugin-registry/carreau.visibletabs/-/carreau.visibletabs-0.0.3.tgz\n',
'bigeyex.brackets-wordhint' => 'https://registry.npmjs.org/@phoenix-plugin-registry/bigeyex.brackets-wordhint/-/bigeyex.brackets-wordhint-1.0.2.tgz\n',
'bracket-match-highlighter' => 'https://registry.npmjs.org/@phoenix-plugin-registry/bracket-match-highlighter/-/bracket-match-highlighter-0.1.2.tgz\n',
'brackets-codeoverview' => 'https://registry.npmjs.org/@phoenix-plugin-registry/brackets-codeoverview/-/brackets-codeoverview-1.0.3.tgz\n',
'jslint.configurator' => 'https://registry.npmjs.org/@phoenix-plugin-registry/jslint.configurator/-/jslint.configurator-1.1.13.tgz\n',
'codehighlighter-switcher' => 'https://registry.npmjs.org/@phoenix-plugin-registry/codehighlighter-switcher/-/codehighlighter-switcher-1.0.1.tgz\n',
'donutteam.pastebin' => 'https://registry.npmjs.org/@phoenix-plugin-registry/donutteam.pastebin/-/donutteam.pastebin-1.0.0.tgz\n',
'a-type.pjs-syntax-highlighting' => 'https://registry.npmjs.org/@phoenix-plugin-registry/a-type.pjs-syntax-highlighting/-/a-type.pjs-syntax-highlighting-1.0.0.tgz\n',
'donutteam.disableautoclose' => 'https://registry.npmjs.org/@phoenix-plugin-registry/donutteam.disableautoclose/-/donutteam.disableautoclose-1.0.0.tgz\n',
'tarcisio.command-runner' => 'https://registry.npmjs.org/@phoenix-plugin-registry/tarcisio.command-runner/-/tarcisio.command-runner-0.0.16.tgz\n',
'quickdocsphp' => 'https://registry.npmjs.org/@phoenix-plugin-registry/quickdocsphp/-/quickdocsphp-1.4.7.tgz\n',
'colorhints' => 'https://registry.npmjs.org/@phoenix-plugin-registry/colorhints/-/colorhints-1.1.2.tgz\n',
'pegjs' => 'https://registry.npmjs.org/@phoenix-plugin-registry/pegjs/-/pegjs-1.0.0.tgz\n',
'brackets-jshint' => 'https://registry.npmjs.org/@phoenix-plugin-registry/brackets-jshint/-/brackets-jshint-0.0.2.tgz\n',
'quickdocsjs' => 'https://registry.npmjs.org/@phoenix-plugin-registry/quickdocsjs/-/quickdocsjs-1.6.10.tgz\n',
'frozzare.brackets-rust' => 'https://registry.npmjs.org/@phoenix-plugin-registry/frozzare.brackets-rust/-/frozzare.brackets-rust-1.0.0.tgz\n',
'moonscript' => 'https://registry.npmjs.org/@phoenix-plugin-registry/moonscript/-/moonscript-1.0.0.tgz\n',
'ooc' => 'https://registry.npmjs.org/@phoenix-plugin-registry/ooc/-/ooc-1.0.0.tgz\n',
'brackets-ckeditor' => 'https://registry.npmjs.org/@phoenix-plugin-registry/brackets-ckeditor/-/brackets-ckeditor-1.0.3.tgz\n',
'tomengland.anonymous-pro' => 'https://registry.npmjs.org/@phoenix-plugin-registry/tomengland.anonymous-pro/-/tomengland.anonymous-pro-1.0.0.tgz\n',
'danielmahon.opengitignore' => 'https://registry.npmjs.org/@phoenix-plugin-registry/danielmahon.opengitignore/-/danielmahon.opengitignore-0.0.3.tgz\n',
'ahmadnazir.brackets-emacs' => 'https://registry.npmjs.org/@phoenix-plugin-registry/ahmadnazir.brackets-emacs/-/ahmadnazir.brackets-emacs-1.1.2.tgz\n',
'brackets-cardboard' => 'https://registry.npmjs.org/@phoenix-plugin-registry/brackets-cardboard/-/brackets-cardboard-0.4.0.tgz\n',
'brackets-coffeelint' => 'https://registry.npmjs.org/@phoenix-plugin-registry/brackets-coffeelint/-/brackets-coffeelint-0.0.1.tgz\n',
'camden.bracketsdash' => 'https://registry.npmjs.org/@phoenix-plugin-registry/camden.bracketsdash/-/camden.bracketsdash-2.1.3.tgz\n',
'brackets-test-shell' => 'https://registry.npmjs.org/@phoenix-plugin-registry/brackets-test-shell/-/brackets-test-shell-1.0.1.tgz\n',
'brackets-css-shapes-editor' => 'https://registry.npmjs.org/@phoenix-plugin-registry/brackets-css-shapes-editor/-/brackets-css-shapes-editor-1.1.0.tgz\n',
'quickdocsregex' => 'https://registry.npmjs.org/@phoenix-plugin-registry/quickdocsregex/-/quickdocsregex-0.2.0.tgz\n',
'brackets-robotframework' => 'https://registry.npmjs.org/@phoenix-plugin-registry/brackets-robotframework/-/brackets-robotframework-1.2.0.tgz\n',
'fede91.brackets-preferences-ui' => 'https://registry.npmjs.org/@phoenix-plugin-registry/fede91.brackets-preferences-ui/-/fede91.brackets-preferences-ui-2.1.0.tgz\n',
'zoomview' => 'https://registry.npmjs.org/@phoenix-plugin-registry/zoomview/-/zoomview-1.0.3.tgz\n',
'globexdesigns.brackets-jscs' => 'https://registry.npmjs.org/@phoenix-plugin-registry/globexdesigns.brackets-jscs/-/globexdesigns.brackets-jscs-0.7.5.tgz\n',
'ivogabe.icons' => 'https://registry.npmjs.org/@phoenix-plugin-registry/ivogabe.icons/-/ivogabe.icons-1.5.7.tgz\n',
'jade-snippets' => 'https://registry.npmjs.org/@phoenix-plugin-registry/jade-snippets/-/jade-snippets-1.0.0.tgz\n',
'asi.ionic' => 'https://registry.npmjs.org/@phoenix-plugin-registry/asi.ionic/-/asi.ionic-0.1.0.tgz\n',
'brackets-eco' => 'https://registry.npmjs.org/@phoenix-plugin-registry/brackets-eco/-/brackets-eco-1.1.0.tgz\n',
'opensourceportfolio.brackets-navigation-history' => 'https://registry.npmjs.org/@phoenix-plugin-registry/opensourceportfolio.brackets-navigation-history/-/opensourceportfolio.brackets-navigation-history-0.1.2.tgz\n',
'fdecampredon.brackets-epic-linter' => 'https://registry.npmjs.org/@phoenix-plugin-registry/fdecampredon.brackets-epic-linter/-/fdecampredon.brackets-epic-linter-0.3.0.tgz\n',
'y0nnyy.specialchars' => 'https://registry.npmjs.org/@phoenix-plugin-registry/y0nnyy.specialchars/-/y0nnyy.specialchars-1.3.0.tgz\n',
'brackets-boilerplate' => 'https://registry.npmjs.org/@phoenix-plugin-registry/brackets-boilerplate/-/brackets-boilerplate-0.4.3.tgz\n',
'crabcode.outline' => 'https://registry.npmjs.org/@phoenix-plugin-registry/crabcode.outline/-/crabcode.outline-0.1.9.tgz\n',
'custom-placeholdit-for-brackets-jara.phit' => 'https://registry.npmjs.org/@phoenix-plugin-registry/custom-placeholdit-for-brackets-jara.phit/-/custom-placeholdit-for-brackets-jara.phit-0.0.3.tgz\n',
'crabcode.limiter' => 'https://registry.npmjs.org/@phoenix-plugin-registry/crabcode.limiter/-/crabcode.limiter-0.0.3.tgz\n',
'brackets-vim' => 'https://registry.npmjs.org/@phoenix-plugin-registry/brackets-vim/-/brackets-vim-0.3.0.tgz\n',
'bsirlinger.github-access' => 'https://registry.npmjs.org/@phoenix-plugin-registry/bsirlinger.github-access/-/bsirlinger.github-access-0.3.2.tgz\n',
'fezvrasta.brackets-upper-titlebar' => 'https://registry.npmjs.org/@phoenix-plugin-registry/fezvrasta.brackets-upper-titlebar/-/fezvrasta.brackets-upper-titlebar-1.0.7.tgz\n',
'daletsin.brackets.moodle.api.hints' => 'https://registry.npmjs.org/@phoenix-plugin-registry/daletsin.brackets.moodle.api.hints/-/daletsin.brackets.moodle.api.hints-1.0.4.tgz\n',
'com.hamdanjaveed.joinlines' => 'https://registry.npmjs.org/@phoenix-plugin-registry/com.hamdanjaveed.joinlines/-/com.hamdanjaveed.joinlines-1.0.2.tgz\n',
'brackets-html5codehints' => 'https://registry.npmjs.org/@phoenix-plugin-registry/brackets-html5codehints/-/brackets-html5codehints-1.2.1.tgz\n',
'globals' => 'https://registry.npmjs.org/@phoenix-plugin-registry/globals/-/globals-3.0.0.tgz\n',
'zamiere-dark' => 'https://registry.npmjs.org/@phoenix-plugin-registry/zamiere-dark/-/zamiere-dark-0.0.3.tgz\n',
'railo3.cfbrackets.org' => 'https://registry.npmjs.org/@phoenix-plugin-registry/railo3.cfbrackets.org/-/railo3.cfbrackets.org-0.1.2.tgz\n',
'obd3.cfbrackets.org' => 'https://registry.npmjs.org/@phoenix-plugin-registry/obd3.cfbrackets.org/-/obd3.cfbrackets.org-0.1.2.tgz\n',
'railo4.cfbrackets.org' => 'https://registry.npmjs.org/@phoenix-plugin-registry/railo4.cfbrackets.org/-/railo4.cfbrackets.org-0.1.2.tgz\n',
'railo2.cfbrackets.org' => 'https://registry.npmjs.org/@phoenix-plugin-registry/railo2.cfbrackets.org/-/railo2.cfbrackets.org-0.1.2.tgz\n',
'cf11.cfbrackets.org' => 'https://registry.npmjs.org/@phoenix-plugin-registry/cf11.cfbrackets.org/-/cf11.cfbrackets.org-0.1.2.tgz\n',
'ws-sanitizer' => 'https://registry.npmjs.org/@phoenix-plugin-registry/ws-sanitizer/-/ws-sanitizer-1.2.1.tgz\n',
'bracketstoix' => 'https://registry.npmjs.org/@phoenix-plugin-registry/bracketstoix/-/bracketstoix-3.7.1.tgz\n',
'brackets-morecsscodehints' => 'https://registry.npmjs.org/@phoenix-plugin-registry/brackets-morecsscodehints/-/brackets-morecsscodehints-1.2.0.tgz\n',
'catanghel.search-with-google' => 'https://registry.npmjs.org/@phoenix-plugin-registry/catanghel.search-with-google/-/catanghel.search-with-google-0.4.0.tgz\n',
'bigeyex.brackets-sftp-upload' => 'https://registry.npmjs.org/@phoenix-plugin-registry/bigeyex.brackets-sftp-upload/-/bigeyex.brackets-sftp-upload-1.3.11.tgz\n',
'fezvrasta.gist-manager' => 'https://registry.npmjs.org/@phoenix-plugin-registry/fezvrasta.gist-manager/-/fezvrasta.gist-manager-0.1.1.tgz\n',
'brackets-php-syntax-hint' => 'https://registry.npmjs.org/@phoenix-plugin-registry/brackets-php-syntax-hint/-/brackets-php-syntax-hint-1.1.6.tgz\n',
'ignore-minified' => 'https://registry.npmjs.org/@phoenix-plugin-registry/ignore-minified/-/ignore-minified-0.0.1.tgz\n',
'brackets-rezymer' => 'https://registry.npmjs.org/@phoenix-plugin-registry/brackets-rezymer/-/brackets-rezymer-1.2.0.tgz\n',
'insya.newdocument' => 'https://registry.npmjs.org/@phoenix-plugin-registry/insya.newdocument/-/insya.newdocument-0.0.4.tgz\n',
'camden.wordcount' => 'https://registry.npmjs.org/@phoenix-plugin-registry/camden.wordcount/-/camden.wordcount-1.0.4.tgz\n',
'sbruchmann.static-preview' => 'https://registry.npmjs.org/@phoenix-plugin-registry/sbruchmann.static-preview/-/sbruchmann.static-preview-0.2.2.tgz\n',
'dustin-h.speedhash' => 'https://registry.npmjs.org/@phoenix-plugin-registry/dustin-h.speedhash/-/dustin-h.speedhash-1.0.0.tgz\n',
'vjsrinath.visualstudioprojectsync' => 'https://registry.npmjs.org/@phoenix-plugin-registry/vjsrinath.visualstudioprojectsync/-/vjsrinath.visualstudioprojectsync-0.1.5.tgz\n',
'vjsrinath.reactjs-jsxtransformer' => 'https://registry.npmjs.org/@phoenix-plugin-registry/vjsrinath.reactjs-jsxtransformer/-/vjsrinath.reactjs-jsxtransformer-0.1.0.tgz\n',
'winek.brackets-chain-indents' => 'https://registry.npmjs.org/@phoenix-plugin-registry/winek.brackets-chain-indents/-/winek.brackets-chain-indents-1.0.1.tgz\n',
'dnbard.extensions-toolbar' => 'https://registry.npmjs.org/@phoenix-plugin-registry/dnbard.extensions-toolbar/-/dnbard.extensions-toolbar-0.2.10.tgz\n',
'mackenza.file-system-properties' => 'https://registry.npmjs.org/@phoenix-plugin-registry/mackenza.file-system-properties/-/mackenza.file-system-properties-1.0.1.tgz\n',
'insya.tools' => 'https://registry.npmjs.org/@phoenix-plugin-registry/insya.tools/-/insya.tools-0.2.0.tgz\n',
'react_jsx' => 'https://registry.npmjs.org/@phoenix-plugin-registry/react_jsx/-/react_jsx-0.0.2.tgz\n',
'earth' => 'https://registry.npmjs.org/@phoenix-plugin-registry/earth/-/earth-0.2.7.tgz\n',
'nullpo.alice-tracker' => 'https://registry.npmjs.org/@phoenix-plugin-registry/nullpo.alice-tracker/-/nullpo.alice-tracker-0.0.6.tgz\n',
'ktayfer.jscompiler' => 'https://registry.npmjs.org/@phoenix-plugin-registry/ktayfer.jscompiler/-/ktayfer.jscompiler-2.1.1.tgz\n',
'brackets-simsun' => 'https://registry.npmjs.org/@phoenix-plugin-registry/brackets-simsun/-/brackets-simsun-1.0.1.tgz\n',
'dnbard.extensions-rating' => 'https://registry.npmjs.org/@phoenix-plugin-registry/dnbard.extensions-rating/-/dnbard.extensions-rating-0.7.6.tgz\n',
'wthreec_schools' => 'https://registry.npmjs.org/@phoenix-plugin-registry/wthreec_schools/-/wthreec_schools-0.2.7.tgz\n',
'ai.brackets-build-system' => 'https://registry.npmjs.org/@phoenix-plugin-registry/ai.brackets-build-system/-/ai.brackets-build-system-1.0.2.tgz\n',
'brackets-regex-diagram' => 'https://registry.npmjs.org/@phoenix-plugin-registry/brackets-regex-diagram/-/brackets-regex-diagram-0.0.5.tgz\n',
'dart' => 'https://registry.npmjs.org/@phoenix-plugin-registry/dart/-/dart-1.0.0.tgz\n',
'insya.units' => 'https://registry.npmjs.org/@phoenix-plugin-registry/insya.units/-/insya.units-0.0.6.tgz\n',
'guimas.brackets-htmlentities' => 'https://registry.npmjs.org/@phoenix-plugin-registry/guimas.brackets-htmlentities/-/guimas.brackets-htmlentities-1.0.0.tgz\n',
'azakura.mac-server' => 'https://registry.npmjs.org/@phoenix-plugin-registry/azakura.mac-server/-/azakura.mac-server-1.0.1.tgz\n',
'ternifico' => 'https://registry.npmjs.org/@phoenix-plugin-registry/ternifico/-/ternifico-0.0.3.tgz\n',
'camden.cordova' => 'https://registry.npmjs.org/@phoenix-plugin-registry/camden.cordova/-/camden.cordova-0.0.7.tgz\n',
'drewkoch.icons' => 'https://registry.npmjs.org/@phoenix-plugin-registry/drewkoch.icons/-/drewkoch.icons-1.3.1.tgz\n',
'georapbox.brackets-notes' => 'https://registry.npmjs.org/@phoenix-plugin-registry/georapbox.brackets-notes/-/georapbox.brackets-notes-1.2.1.tgz\n',
'railcasts-theme' => 'https://registry.npmjs.org/@phoenix-plugin-registry/railcasts-theme/-/railcasts-theme-1.0.6.tgz\n',
'ruby-blue' => 'https://registry.npmjs.org/@phoenix-plugin-registry/ruby-blue/-/ruby-blue-1.3.1.tgz\n',
'matthayward.objectivec.syntax' => 'https://registry.npmjs.org/@phoenix-plugin-registry/matthayward.objectivec.syntax/-/matthayward.objectivec.syntax-1.0.1.tgz\n',
'ohnnyj-proxy' => 'https://registry.npmjs.org/@phoenix-plugin-registry/ohnnyj-proxy/-/ohnnyj-proxy-1.0.0.tgz\n',
'turtle' => 'https://registry.npmjs.org/@phoenix-plugin-registry/turtle/-/turtle-1.0.0.tgz\n',
'brackets-node-debugger' => 'https://registry.npmjs.org/@phoenix-plugin-registry/brackets-node-debugger/-/brackets-node-debugger-0.1.7.tgz\n',
'envy-theme' => 'https://registry.npmjs.org/@phoenix-plugin-registry/envy-theme/-/envy-theme-1.0.5.tgz\n',
'toml' => 'https://registry.npmjs.org/@phoenix-plugin-registry/toml/-/toml-1.0.0.tgz\n',
'monokai-theme' => 'https://registry.npmjs.org/@phoenix-plugin-registry/monokai-theme/-/monokai-theme-1.0.8.tgz\n',
'nucliweb.mdn-doc' => 'https://registry.npmjs.org/@phoenix-plugin-registry/nucliweb.mdn-doc/-/nucliweb.mdn-doc-0.3.0.tgz\n',
'mikaeljorhult.brackets-php-lint-tools' => 'https://registry.npmjs.org/@phoenix-plugin-registry/mikaeljorhult.brackets-php-lint-tools/-/mikaeljorhult.brackets-php-lint-tools-0.1.11.tgz\n',
'enlightend-theme' => 'https://registry.npmjs.org/@phoenix-plugin-registry/enlightend-theme/-/enlightend-theme-0.2.0.tgz\n',
'aem-sightly-brackets-extension' => 'https://registry.npmjs.org/@phoenix-plugin-registry/aem-sightly-brackets-extension/-/aem-sightly-brackets-extension-0.0.15.tgz\n',
'tomorrow-night' => 'https://registry.npmjs.org/@phoenix-plugin-registry/tomorrow-night/-/tomorrow-night-1.0.2.tgz\n',
'80s-baby' => 'https://registry.npmjs.org/@phoenix-plugin-registry/80s-baby/-/80s-baby-1.0.2.tgz\n',
'visual-studio' => 'https://registry.npmjs.org/@phoenix-plugin-registry/visual-studio/-/visual-studio-1.0.0.tgz\n',
'solarized' => 'https://registry.npmjs.org/@phoenix-plugin-registry/solarized/-/solarized-1.0.0.tgz\n',
'the-hamptons' => 'https://registry.npmjs.org/@phoenix-plugin-registry/the-hamptons/-/the-hamptons-1.0.2.tgz\n',
'com.finaldevstudio.brackets-dust' => 'https://registry.npmjs.org/@phoenix-plugin-registry/com.finaldevstudio.brackets-dust/-/com.finaldevstudio.brackets-dust-0.1.0.tgz\n',
'easy-dark' => 'https://registry.npmjs.org/@phoenix-plugin-registry/easy-dark/-/easy-dark-2.0.4.tgz\n',
'brackets-mystique-theme' => 'https://registry.npmjs.org/@phoenix-plugin-registry/brackets-mystique-theme/-/brackets-mystique-theme-0.1.9.tgz\n',
'brackets-elixir' => 'https://registry.npmjs.org/@phoenix-plugin-registry/brackets-elixir/-/brackets-elixir-0.1.0.tgz\n',
'skullomania' => 'https://registry.npmjs.org/@phoenix-plugin-registry/skullomania/-/skullomania-1.0.1.tgz\n',
'brackets-extract' => 'https://registry.npmjs.org/@phoenix-plugin-registry/brackets-extract/-/brackets-extract-1.4.0.tgz\n',
'latexmathematica' => 'https://registry.npmjs.org/@phoenix-plugin-registry/latexmathematica/-/latexmathematica-0.0.3.tgz\n',
'rain.monokai-dark-soda' => 'https://registry.npmjs.org/@phoenix-plugin-registry/rain.monokai-dark-soda/-/rain.monokai-dark-soda-1.0.9.tgz\n',
'zenburn-theme' => 'https://registry.npmjs.org/@phoenix-plugin-registry/zenburn-theme/-/zenburn-theme-1.0.4.tgz\n',
'solarized-light-theme' => 'https://registry.npmjs.org/@phoenix-plugin-registry/solarized-light-theme/-/solarized-light-theme-1.0.3.tgz\n',
'light_soda_theme' => 'https://registry.npmjs.org/@phoenix-plugin-registry/light_soda_theme/-/light_soda_theme-0.1.5.tgz\n',
'star-platinum-dark' => 'https://registry.npmjs.org/@phoenix-plugin-registry/star-platinum-dark/-/star-platinum-dark-1.0.1.tgz\n',
'star-platinum-light' => 'https://registry.npmjs.org/@phoenix-plugin-registry/star-platinum-light/-/star-platinum-light-1.0.2.tgz\n',
'delkos' => 'https://registry.npmjs.org/@phoenix-plugin-registry/delkos/-/delkos-0.0.5.tgz\n',
'ivanbarcia.material-dark' => 'https://registry.npmjs.org/@phoenix-plugin-registry/ivanbarcia.material-dark/-/ivanbarcia.material-dark-1.0.0.tgz\n',
'ivanbarcia.material-light' => 'https://registry.npmjs.org/@phoenix-plugin-registry/ivanbarcia.material-light/-/ivanbarcia.material-light-1.0.0.tgz\n',
'darthlukan.brackets-dilbert' => 'https://registry.npmjs.org/@phoenix-plugin-registry/darthlukan.brackets-dilbert/-/darthlukan.brackets-dilbert-1.1.0.tgz\n',
'ant7.ant-theme' => 'https://registry.npmjs.org/@phoenix-plugin-registry/ant7.ant-theme/-/ant7.ant-theme-1.0.6.tgz\n',
'dieter-bamz' => 'https://registry.npmjs.org/@phoenix-plugin-registry/dieter-bamz/-/dieter-bamz-1.0.2.tgz\n',
'photon-racer' => 'https://registry.npmjs.org/@phoenix-plugin-registry/photon-racer/-/photon-racer-1.0.4.tgz\n',
'mbo' => 'https://registry.npmjs.org/@phoenix-plugin-registry/mbo/-/mbo-1.3.3.tgz\n',
'dark_soda_theme' => 'https://registry.npmjs.org/@phoenix-plugin-registry/dark_soda_theme/-/dark_soda_theme-0.1.6.tgz\n',
'go-ide' => 'https://registry.npmjs.org/@phoenix-plugin-registry/go-ide/-/go-ide-0.0.10.tgz\n',
'thunderstorm' => 'https://registry.npmjs.org/@phoenix-plugin-registry/thunderstorm/-/thunderstorm-1.1.0.tgz\n',
'son-of-hammsidian-theme' => 'https://registry.npmjs.org/@phoenix-plugin-registry/son-of-hammsidian-theme/-/son-of-hammsidian-theme-1.1.0.tgz\n',
'bobbyearl.toggle-toolbar' => 'https://registry.npmjs.org/@phoenix-plugin-registry/bobbyearl.toggle-toolbar/-/bobbyearl.toggle-toolbar-1.0.2.tgz\n',
'productiverage.less-stylesheet-reformatter' => 'https://registry.npmjs.org/@phoenix-plugin-registry/productiverage.less-stylesheet-reformatter/-/productiverage.less-stylesheet-reformatter-1.2.2.tgz\n',
'twilight' => 'https://registry.npmjs.org/@phoenix-plugin-registry/twilight/-/twilight-0.0.1.tgz\n',
'quick-dark' => 'https://registry.npmjs.org/@phoenix-plugin-registry/quick-dark/-/quick-dark-1.1.6.tgz\n',
'circlewaves.darcula-theme' => 'https://registry.npmjs.org/@phoenix-plugin-registry/circlewaves.darcula-theme/-/circlewaves.darcula-theme-1.0.0.tgz\n',
'dnbard.lorem-pixel' => 'https://registry.npmjs.org/@phoenix-plugin-registry/dnbard.lorem-pixel/-/dnbard.lorem-pixel-0.1.6.tgz\n',
'guardians' => 'https://registry.npmjs.org/@phoenix-plugin-registry/guardians/-/guardians-1.0.2.tgz\n',
'quick-light' => 'https://registry.npmjs.org/@phoenix-plugin-registry/quick-light/-/quick-light-1.1.6.tgz\n',
'martinhodler.searchin' => 'https://registry.npmjs.org/@phoenix-plugin-registry/martinhodler.searchin/-/martinhodler.searchin-1.0.2.tgz\n',
'soft-dark' => 'https://registry.npmjs.org/@phoenix-plugin-registry/soft-dark/-/soft-dark-0.2.0.tgz\n',
'toendering.advanced_new_file' => 'https://registry.npmjs.org/@phoenix-plugin-registry/toendering.advanced_new_file/-/toendering.advanced_new_file-0.2.0.tgz\n',
'dnbard.pixlr' => 'https://registry.npmjs.org/@phoenix-plugin-registry/dnbard.pixlr/-/dnbard.pixlr-0.1.5.tgz\n',
'lamo2k123.brackets-file-tree' => 'https://registry.npmjs.org/@phoenix-plugin-registry/lamo2k123.brackets-file-tree/-/lamo2k123.brackets-file-tree-1.1.1.tgz\n',
'brackets-image-inline-css' => 'https://registry.npmjs.org/@phoenix-plugin-registry/brackets-image-inline-css/-/brackets-image-inline-css-0.0.3.tgz\n',
'the-weaver' => 'https://registry.npmjs.org/@phoenix-plugin-registry/the-weaver/-/the-weaver-1.0.0.tgz\n',
'care-bear-stare' => 'https://registry.npmjs.org/@phoenix-plugin-registry/care-bear-stare/-/care-bear-stare-1.0.2.tgz\n',
'care-bear-stare-dark' => 'https://registry.npmjs.org/@phoenix-plugin-registry/care-bear-stare-dark/-/care-bear-stare-dark-1.0.1.tgz\n',
'dune' => 'https://registry.npmjs.org/@phoenix-plugin-registry/dune/-/dune-1.0.1.tgz\n',
'energy' => 'https://registry.npmjs.org/@phoenix-plugin-registry/energy/-/energy-1.0.0.tgz\n',
'lamo2k123.brackets-tree-extension-color' => 'https://registry.npmjs.org/@phoenix-plugin-registry/lamo2k123.brackets-tree-extension-color/-/lamo2k123.brackets-tree-extension-color-1.0.1.tgz\n',
'coolwater' => 'https://registry.npmjs.org/@phoenix-plugin-registry/coolwater/-/coolwater-1.0.1.tgz\n',
'insya.atom.dark' => 'https://registry.npmjs.org/@phoenix-plugin-registry/insya.atom.dark/-/insya.atom.dark-1.0.4.tgz\n',
'insya.atom.light' => 'https://registry.npmjs.org/@phoenix-plugin-registry/insya.atom.light/-/insya.atom.light-1.0.5.tgz\n',
'snagglepanther' => 'https://registry.npmjs.org/@phoenix-plugin-registry/snagglepanther/-/snagglepanther-1.0.1.tgz\n',
'lion' => 'https://registry.npmjs.org/@phoenix-plugin-registry/lion/-/lion-1.0.0.tgz\n',
'northstar' => 'https://registry.npmjs.org/@phoenix-plugin-registry/northstar/-/northstar-1.0.0.tgz\n',
'nico.slickrock' => 'https://registry.npmjs.org/@phoenix-plugin-registry/nico.slickrock/-/nico.slickrock-0.0.1.tgz\n',
'machiato-libre' => 'https://registry.npmjs.org/@phoenix-plugin-registry/machiato-libre/-/machiato-libre-0.0.2.tgz\n',
'mindspread.darkstatusbar' => 'https://registry.npmjs.org/@phoenix-plugin-registry/mindspread.darkstatusbar/-/mindspread.darkstatusbar-1.0.2.tgz\n',
'midnightglow-theme' => 'https://registry.npmjs.org/@phoenix-plugin-registry/midnightglow-theme/-/midnightglow-theme-1.0.2.tgz\n',
'dnbard.custom-css' => 'https://registry.npmjs.org/@phoenix-plugin-registry/dnbard.custom-css/-/dnbard.custom-css-0.1.7.tgz\n',
'notepadplus' => 'https://registry.npmjs.org/@phoenix-plugin-registry/notepadplus/-/notepadplus-1.0.3.tgz\n',
'dnbard.documents-toolbar' => 'https://registry.npmjs.org/@phoenix-plugin-registry/dnbard.documents-toolbar/-/dnbard.documents-toolbar-0.5.22.tgz\n',
'sryze.cmake-language' => 'https://registry.npmjs.org/@phoenix-plugin-registry/sryze.cmake-language/-/sryze.cmake-language-1.1.2.tgz\n',
'notasz-uitheming' => 'https://registry.npmjs.org/@phoenix-plugin-registry/notasz-uitheming/-/notasz-uitheming-1.0.0.tgz\n',
'takenspc.numarkupchecker' => 'https://registry.npmjs.org/@phoenix-plugin-registry/takenspc.numarkupchecker/-/takenspc.numarkupchecker-0.1.1.tgz\n',
'tomorrow-night-bright' => 'https://registry.npmjs.org/@phoenix-plugin-registry/tomorrow-night-bright/-/tomorrow-night-bright-1.0.2.tgz\n',
'io.brackets-sass-code-hints' => 'https://registry.npmjs.org/@phoenix-plugin-registry/io.brackets-sass-code-hints/-/io.brackets-sass-code-hints-0.1.0.tgz\n',
'brackets-wakatime' => 'https://registry.npmjs.org/@phoenix-plugin-registry/brackets-wakatime/-/brackets-wakatime-1.0.8.tgz\n',
'ftp-sync' => 'https://registry.npmjs.org/@phoenix-plugin-registry/ftp-sync/-/ftp-sync-2.0.4.tgz\n',
'brackets-editorconfig' => 'https://registry.npmjs.org/@phoenix-plugin-registry/brackets-editorconfig/-/brackets-editorconfig-0.0.4.tgz\n',
'slacksnippet' => 'https://registry.npmjs.org/@phoenix-plugin-registry/slacksnippet/-/slacksnippet-0.3.2.tgz\n',
'pythonista-dark' => 'https://registry.npmjs.org/@phoenix-plugin-registry/pythonista-dark/-/pythonista-dark-1.0.0.tgz\n',
'jellybeans' => 'https://registry.npmjs.org/@phoenix-plugin-registry/jellybeans/-/jellybeans-1.0.1.tgz\n',
'pflynn.jump-to-matching-brace' => 'https://registry.npmjs.org/@phoenix-plugin-registry/pflynn.jump-to-matching-brace/-/pflynn.jump-to-matching-brace-1.1.0.tgz\n',
'kmelkon.seti-syntax' => 'https://registry.npmjs.org/@phoenix-plugin-registry/kmelkon.seti-syntax/-/kmelkon.seti-syntax-0.0.1.tgz\n',
'brackets-hoganjs-language' => 'https://registry.npmjs.org/@phoenix-plugin-registry/brackets-hoganjs-language/-/brackets-hoganjs-language-1.0.0.tgz\n',
'codecommenting' => 'https://registry.npmjs.org/@phoenix-plugin-registry/codecommenting/-/codecommenting-1.2.2.tgz\n',
'nucliweb.snapsvg-doc' => 'https://registry.npmjs.org/@phoenix-plugin-registry/nucliweb.snapsvg-doc/-/nucliweb.snapsvg-doc-0.0.1.tgz\n',
'bobbyearl.taller-working-files' => 'https://registry.npmjs.org/@phoenix-plugin-registry/bobbyearl.taller-working-files/-/bobbyearl.taller-working-files-1.0.1.tgz\n',
'brackets-silverstripe' => 'https://registry.npmjs.org/@phoenix-plugin-registry/brackets-silverstripe/-/brackets-silverstripe-0.0.2.tgz\n',
'brackets-makefile' => 'https://registry.npmjs.org/@phoenix-plugin-registry/brackets-makefile/-/brackets-makefile-0.0.1.tgz\n',
'com.hamdanjaveed.not_so_annoying_whitespace_fixer' => 'https://registry.npmjs.org/@phoenix-plugin-registry/com.hamdanjaveed.not_so_annoying_whitespace_fixer/-/com.hamdanjaveed.not_so_annoying_whitespace_fixer-1.0.2.tgz\n',
'funcdocr' => 'https://registry.npmjs.org/@phoenix-plugin-registry/funcdocr/-/funcdocr-0.8.41.tgz\n',
'brackets-backup' => 'https://registry.npmjs.org/@phoenix-plugin-registry/brackets-backup/-/brackets-backup-1.0.4.tgz\n',
'mushin-dark' => 'https://registry.npmjs.org/@phoenix-plugin-registry/mushin-dark/-/mushin-dark-1.0.0.tgz\n',
'mushin-light' => 'https://registry.npmjs.org/@phoenix-plugin-registry/mushin-light/-/mushin-light-1.0.0.tgz\n',
'nature-theme' => 'https://registry.npmjs.org/@phoenix-plugin-registry/nature-theme/-/nature-theme-0.2.0.tgz\n',
'malas34.brackets-console-plus' => 'https://registry.npmjs.org/@phoenix-plugin-registry/malas34.brackets-console-plus/-/malas34.brackets-console-plus-1.4.9.tgz\n',
'markmcintyre.jslint' => 'https://registry.npmjs.org/@phoenix-plugin-registry/markmcintyre.jslint/-/markmcintyre.jslint-1.1.0.tgz\n',
'dnbard.draggable-modals' => 'https://registry.npmjs.org/@phoenix-plugin-registry/dnbard.draggable-modals/-/dnbard.draggable-modals-0.1.1.tgz\n',
'kmelkon.material-brackets' => 'https://registry.npmjs.org/@phoenix-plugin-registry/kmelkon.material-brackets/-/kmelkon.material-brackets-0.0.1.tgz\n',
'brackets-improvements' => 'https://registry.npmjs.org/@phoenix-plugin-registry/brackets-improvements/-/brackets-improvements-1.0.0.tgz\n',
'divsmith.nav-shortcuts' => 'https://registry.npmjs.org/@phoenix-plugin-registry/divsmith.nav-shortcuts/-/divsmith.nav-shortcuts-1.0.2.tgz\n',
'son-of-monokai-theme' => 'https://registry.npmjs.org/@phoenix-plugin-registry/son-of-monokai-theme/-/son-of-monokai-theme-0.1.2.tgz\n',
'vtrrsl.lapland' => 'https://registry.npmjs.org/@phoenix-plugin-registry/vtrrsl.lapland/-/vtrrsl.lapland-1.0.0.tgz\n',
'brackets-wp-functions-hint' => 'https://registry.npmjs.org/@phoenix-plugin-registry/brackets-wp-functions-hint/-/brackets-wp-functions-hint-4.0.3.tgz\n',
'robskidmore.wordpress-generate-salts' => 'https://registry.npmjs.org/@phoenix-plugin-registry/robskidmore.wordpress-generate-salts/-/robskidmore.wordpress-generate-salts-0.1.0.tgz\n',
'brackets-coffeelinter' => 'https://registry.npmjs.org/@phoenix-plugin-registry/brackets-coffeelinter/-/brackets-coffeelinter-0.1.0.tgz\n',
'technet.recentprojects' => 'https://registry.npmjs.org/@phoenix-plugin-registry/technet.recentprojects/-/technet.recentprojects-0.2.1.tgz\n',
'mikailcolak.brackets-color-picker' => 'https://registry.npmjs.org/@phoenix-plugin-registry/mikailcolak.brackets-color-picker/-/mikailcolak.brackets-color-picker-0.1.3.tgz\n',
'dnbard.errors-explorer' => 'https://registry.npmjs.org/@phoenix-plugin-registry/dnbard.errors-explorer/-/dnbard.errors-explorer-0.1.0.tgz\n',
'dnbard.cdn' => 'https://registry.npmjs.org/@phoenix-plugin-registry/dnbard.cdn/-/dnbard.cdn-0.1.1.tgz\n',
'spissl.obsidian' => 'https://registry.npmjs.org/@phoenix-plugin-registry/spissl.obsidian/-/spissl.obsidian-1.1.1.tgz\n',
'solarized-light' => 'https://registry.npmjs.org/@phoenix-plugin-registry/solarized-light/-/solarized-light-1.0.0.tgz\n',
'solarized-dark' => 'https://registry.npmjs.org/@phoenix-plugin-registry/solarized-dark/-/solarized-dark-1.0.0.tgz\n',
'technet.clipbox' => 'https://registry.npmjs.org/@phoenix-plugin-registry/technet.clipbox/-/technet.clipbox-0.2.1.tgz\n',
'jshint.configurator' => 'https://registry.npmjs.org/@phoenix-plugin-registry/jshint.configurator/-/jshint.configurator-1.1.6.tgz\n',
'brackets-angularjs-codehints' => 'https://registry.npmjs.org/@phoenix-plugin-registry/brackets-angularjs-codehints/-/brackets-angularjs-codehints-0.0.3.tgz\n',
'brackets-utf8-converter' => 'https://registry.npmjs.org/@phoenix-plugin-registry/brackets-utf8-converter/-/brackets-utf8-converter-0.1.2.tgz\n',
'chiraggude.monokai-redux' => 'https://registry.npmjs.org/@phoenix-plugin-registry/chiraggude.monokai-redux/-/chiraggude.monokai-redux-1.0.0.tgz\n',
'pflynn.charcount' => 'https://registry.npmjs.org/@phoenix-plugin-registry/pflynn.charcount/-/pflynn.charcount-1.0.0.tgz\n',
'dnbard.bigger-extensions' => 'https://registry.npmjs.org/@phoenix-plugin-registry/dnbard.bigger-extensions/-/dnbard.bigger-extensions-0.1.2.tgz\n',
'sparql' => 'https://registry.npmjs.org/@phoenix-plugin-registry/sparql/-/sparql-1.0.0.tgz\n',
'calvinnhieu.extensionmanagershortkey' => 'https://registry.npmjs.org/@phoenix-plugin-registry/calvinnhieu.extensionmanagershortkey/-/calvinnhieu.extensionmanagershortkey-1.0.1.tgz\n',
'brackets-sqf' => 'https://registry.npmjs.org/@phoenix-plugin-registry/brackets-sqf/-/brackets-sqf-1.0.0.tgz\n',
'newton-light' => 'https://registry.npmjs.org/@phoenix-plugin-registry/newton-light/-/newton-light-1.0.0.tgz\n',
'newton-dark' => 'https://registry.npmjs.org/@phoenix-plugin-registry/newton-dark/-/newton-dark-1.0.0.tgz\n',
'varz-dark' => 'https://registry.npmjs.org/@phoenix-plugin-registry/varz-dark/-/varz-dark-1.0.0.tgz\n',
'kiwi-kiwi-dark' => 'https://registry.npmjs.org/@phoenix-plugin-registry/kiwi-kiwi-dark/-/kiwi-kiwi-dark-1.0.0.tgz\n',
'technet.coffeescriptcompiler' => 'https://registry.npmjs.org/@phoenix-plugin-registry/technet.coffeescriptcompiler/-/technet.coffeescriptcompiler-0.1.0.tgz\n',
'brackets-ficompiler' => 'https://registry.npmjs.org/@phoenix-plugin-registry/brackets-ficompiler/-/brackets-ficompiler-0.9.1.tgz\n',
'autocoffee' => 'https://registry.npmjs.org/@phoenix-plugin-registry/autocoffee/-/autocoffee-1.0.0.tgz\n',
'brackets-ls' => 'https://registry.npmjs.org/@phoenix-plugin-registry/brackets-ls/-/brackets-ls-0.1.0.tgz\n',
'brackets-response' => 'https://registry.npmjs.org/@phoenix-plugin-registry/brackets-response/-/brackets-response-0.0.6.tgz\n',
'javalight' => 'https://registry.npmjs.org/@phoenix-plugin-registry/javalight/-/javalight-0.0.5.tgz\n',
'globexdesigns.brackets-jsxhint' => 'https://registry.npmjs.org/@phoenix-plugin-registry/globexdesigns.brackets-jsxhint/-/globexdesigns.brackets-jsxhint-0.0.7.tgz\n',
'brackets-yaml-linter' => 'https://registry.npmjs.org/@phoenix-plugin-registry/brackets-yaml-linter/-/brackets-yaml-linter-1.0.0.tgz\n',
'brackets-github-issues' => 'https://registry.npmjs.org/@phoenix-plugin-registry/brackets-github-issues/-/brackets-github-issues-1.0.1.tgz\n',
'spissl.son-of-obsidian' => 'https://registry.npmjs.org/@phoenix-plugin-registry/spissl.son-of-obsidian/-/spissl.son-of-obsidian-1.0.0.tgz\n',
'dnbard.projects' => 'https://registry.npmjs.org/@phoenix-plugin-registry/dnbard.projects/-/dnbard.projects-0.1.8.tgz\n',
'brackets-fixmyjs' => 'https://registry.npmjs.org/@phoenix-plugin-registry/brackets-fixmyjs/-/brackets-fixmyjs-0.0.3.tgz\n',
'blueprint.outliner' => 'https://registry.npmjs.org/@phoenix-plugin-registry/blueprint.outliner/-/blueprint.outliner-0.9.3.tgz\n',
'wombatish-theme' => 'https://registry.npmjs.org/@phoenix-plugin-registry/wombatish-theme/-/wombatish-theme-1.0.1.tgz\n',
'de.richter.brackets.diagnostics' => 'https://registry.npmjs.org/@phoenix-plugin-registry/de.richter.brackets.diagnostics/-/de.richter.brackets.diagnostics-0.0.4.tgz\n',
'pflynn.inline-gradient-editor' => 'https://registry.npmjs.org/@phoenix-plugin-registry/pflynn.inline-gradient-editor/-/pflynn.inline-gradient-editor-1.0.0.tgz\n',
'brackets-js-concat' => 'https://registry.npmjs.org/@phoenix-plugin-registry/brackets-js-concat/-/brackets-js-concat-1.0.0.tgz\n',
'thevirtual.eu.occur' => 'https://registry.npmjs.org/@phoenix-plugin-registry/thevirtual.eu.occur/-/thevirtual.eu.occur-1.0.4.tgz\n',
'peolanha.brackets-eslint' => 'https://registry.npmjs.org/@phoenix-plugin-registry/peolanha.brackets-eslint/-/peolanha.brackets-eslint-0.3.0.tgz\n',
'brackets-zen-pane' => 'https://registry.npmjs.org/@phoenix-plugin-registry/brackets-zen-pane/-/brackets-zen-pane-0.0.2.tgz\n',
'iplastic' => 'https://registry.npmjs.org/@phoenix-plugin-registry/iplastic/-/iplastic-1.0.0.tgz\n',
'midnight-pumpkin' => 'https://registry.npmjs.org/@phoenix-plugin-registry/midnight-pumpkin/-/midnight-pumpkin-1.0.0.tgz\n',
'rhode-island-red' => 'https://registry.npmjs.org/@phoenix-plugin-registry/rhode-island-red/-/rhode-island-red-1.0.7.tgz\n',
'dalcib.brackets-gulp' => 'https://registry.npmjs.org/@phoenix-plugin-registry/dalcib.brackets-gulp/-/dalcib.brackets-gulp-0.3.1.tgz\n',
'django-brackets' => 'https://registry.npmjs.org/@phoenix-plugin-registry/django-brackets/-/django-brackets-0.0.1.tgz\n',
'tornado-brackets' => 'https://registry.npmjs.org/@phoenix-plugin-registry/tornado-brackets/-/tornado-brackets-0.0.1.tgz\n',
'disshishkov.brackets-toc' => 'https://registry.npmjs.org/@phoenix-plugin-registry/disshishkov.brackets-toc/-/disshishkov.brackets-toc-0.1.0.tgz\n',
'azrem' => 'https://registry.npmjs.org/@phoenix-plugin-registry/azrem/-/azrem-0.0.1.tgz\n',
'pflynn.anti-lint-js' => 'https://registry.npmjs.org/@phoenix-plugin-registry/pflynn.anti-lint-js/-/pflynn.anti-lint-js-1.0.0.tgz\n',
'vagrant-control' => 'https://registry.npmjs.org/@phoenix-plugin-registry/vagrant-control/-/vagrant-control-0.0.1.tgz\n',
'pinkcutie' => 'https://registry.npmjs.org/@phoenix-plugin-registry/pinkcutie/-/pinkcutie-1.0.0.tgz\n',
'nexustools.nexusframework-brackets' => 'https://registry.npmjs.org/@phoenix-plugin-registry/nexustools.nexusframework-brackets/-/nexustools.nexusframework-brackets-0.0.2.tgz\n',
'brackets-grunt' => 'https://registry.npmjs.org/@phoenix-plugin-registry/brackets-grunt/-/brackets-grunt-0.2.7.tgz\n',
'lchamb.brackets-slim' => 'https://registry.npmjs.org/@phoenix-plugin-registry/lchamb.brackets-slim/-/lchamb.brackets-slim-0.0.1.tgz\n',
'moonlitglacier' => 'https://registry.npmjs.org/@phoenix-plugin-registry/moonlitglacier/-/moonlitglacier-1.0.1.tgz\n',
'ohnnyj.numbertabs' => 'https://registry.npmjs.org/@phoenix-plugin-registry/ohnnyj.numbertabs/-/ohnnyj.numbertabs-0.0.6.tgz\n',
'azakur4.brackets-database' => 'https://registry.npmjs.org/@phoenix-plugin-registry/azakur4.brackets-database/-/azakur4.brackets-database-0.0.1.tgz\n',
'laron.liquid' => 'https://registry.npmjs.org/@phoenix-plugin-registry/laron.liquid/-/laron.liquid-1.0.1.tgz\n',
'anephew.brackets-zeal' => 'https://registry.npmjs.org/@phoenix-plugin-registry/anephew.brackets-zeal/-/anephew.brackets-zeal-1.0.3.tgz\n',
'brackets-hidpi' => 'https://registry.npmjs.org/@phoenix-plugin-registry/brackets-hidpi/-/brackets-hidpi-0.0.2.tgz\n',
'relution.brackets' => 'https://registry.npmjs.org/@phoenix-plugin-registry/relution.brackets/-/relution.brackets-2.6.4.tgz\n',
'spell-check' => 'https://registry.npmjs.org/@phoenix-plugin-registry/spell-check/-/spell-check-0.5.8.tgz\n',
'john.newhtml' => 'https://registry.npmjs.org/@phoenix-plugin-registry/john.newhtml/-/john.newhtml-1.0.0.tgz\n',
'scientech-com-ua.brackets-trailingspaces' => 'https://registry.npmjs.org/@phoenix-plugin-registry/scientech-com-ua.brackets-trailingspaces/-/scientech-com-ua.brackets-trailingspaces-0.0.2.tgz\n',
'brackets-darker-ng' => 'https://registry.npmjs.org/@phoenix-plugin-registry/brackets-darker-ng/-/brackets-darker-ng-1.0.0.tgz\n',
'brackets-roy' => 'https://registry.npmjs.org/@phoenix-plugin-registry/brackets-roy/-/brackets-roy-0.0.1.tgz\n',
'brackets-vimderbar' => 'https://registry.npmjs.org/@phoenix-plugin-registry/brackets-vimderbar/-/brackets-vimderbar-0.11.1.tgz\n',
'brackets-html-wrapper' => 'https://registry.npmjs.org/@phoenix-plugin-registry/brackets-html-wrapper/-/brackets-html-wrapper-1.2.0.tgz\n',
'apintocr.brackets-laravel-blade' => 'https://registry.npmjs.org/@phoenix-plugin-registry/apintocr.brackets-laravel-blade/-/apintocr.brackets-laravel-blade-0.4.0.tgz\n',
'brackets-scss-lint' => 'https://registry.npmjs.org/@phoenix-plugin-registry/brackets-scss-lint/-/brackets-scss-lint-0.4.0.tgz\n',
'lesshints' => 'https://registry.npmjs.org/@phoenix-plugin-registry/lesshints/-/lesshints-1.1.0.tgz\n',
'sasshints' => 'https://registry.npmjs.org/@phoenix-plugin-registry/sasshints/-/sasshints-1.1.0.tgz\n',
'gbratsos.zurb-foundation' => 'https://registry.npmjs.org/@phoenix-plugin-registry/gbratsos.zurb-foundation/-/gbratsos.zurb-foundation-1.2.4.tgz\n',
'brackets-cssfier' => 'https://registry.npmjs.org/@phoenix-plugin-registry/brackets-cssfier/-/brackets-cssfier-1.5.2.tgz\n',
'brackets-htmlformat' => 'https://registry.npmjs.org/@phoenix-plugin-registry/brackets-htmlformat/-/brackets-htmlformat-1.0.2.tgz\n',
'crot4lus.brackets-tabs' => 'https://registry.npmjs.org/@phoenix-plugin-registry/crot4lus.brackets-tabs/-/crot4lus.brackets-tabs-0.1.2.tgz\n',
'helmutgranda.brackets-as' => 'https://registry.npmjs.org/@phoenix-plugin-registry/helmutgranda.brackets-as/-/helmutgranda.brackets-as-0.1.0.tgz\n',
'com.github.mrmeku.closure-linter' => 'https://registry.npmjs.org/@phoenix-plugin-registry/com.github.mrmeku.closure-linter/-/com.github.mrmeku.closure-linter-0.4.0.tgz\n',
'torin.duplicate' => 'https://registry.npmjs.org/@phoenix-plugin-registry/torin.duplicate/-/torin.duplicate-1.1.0.tgz\n',
'donebyexperts.quick-show-in-file-tree' => 'https://registry.npmjs.org/@phoenix-plugin-registry/donebyexperts.quick-show-in-file-tree/-/donebyexperts.quick-show-in-file-tree-0.0.1.tgz\n',
'brackets-viewcalc' => 'https://registry.npmjs.org/@phoenix-plugin-registry/brackets-viewcalc/-/brackets-viewcalc-0.1.1.tgz\n',
'robingruenke.icecream' => 'https://registry.npmjs.org/@phoenix-plugin-registry/robingruenke.icecream/-/robingruenke.icecream-1.0.1.tgz\n',
'crot4lus.brackets-tasks' => 'https://registry.npmjs.org/@phoenix-plugin-registry/crot4lus.brackets-tasks/-/crot4lus.brackets-tasks-0.1.2.tgz\n',
'brackets-css-color-preview' => 'https://registry.npmjs.org/@phoenix-plugin-registry/brackets-css-color-preview/-/brackets-css-color-preview-0.0.7.tgz\n',
'renanveroneze.brackets-quick-mdn-doc' => 'https://registry.npmjs.org/@phoenix-plugin-registry/renanveroneze.brackets-quick-mdn-doc/-/renanveroneze.brackets-quick-mdn-doc-0.0.4.tgz\n',
'reginbald.flat-theme' => 'https://registry.npmjs.org/@phoenix-plugin-registry/reginbald.flat-theme/-/reginbald.flat-theme-1.0.0.tgz\n',
'maxgrass.cm_toggle_comment' => 'https://registry.npmjs.org/@phoenix-plugin-registry/maxgrass.cm_toggle_comment/-/maxgrass.cm_toggle_comment-1.0.0.tgz\n',
'jeffbooher.bookmarks' => 'https://registry.npmjs.org/@phoenix-plugin-registry/jeffbooher.bookmarks/-/jeffbooher.bookmarks-0.10.6.tgz\n',
'specials-menu' => 'https://registry.npmjs.org/@phoenix-plugin-registry/specials-menu/-/specials-menu-1.0.0.tgz\n',
'mat-mcloughlin.omnisharp' => 'https://registry.npmjs.org/@phoenix-plugin-registry/mat-mcloughlin.omnisharp/-/mat-mcloughlin.omnisharp-0.0.2.tgz\n',
'chylex.window-title' => 'https://registry.npmjs.org/@phoenix-plugin-registry/chylex.window-title/-/chylex.window-title-1.0.0.tgz\n',
'renanveroneze.brackets-open-terminal-here' => 'https://registry.npmjs.org/@phoenix-plugin-registry/renanveroneze.brackets-open-terminal-here/-/renanveroneze.brackets-open-terminal-here-0.0.2.tgz\n',
'brackets-overscroll' => 'https://registry.npmjs.org/@phoenix-plugin-registry/brackets-overscroll/-/brackets-overscroll-1.0.1.tgz\n',
'brackets-project-files-hide' => 'https://registry.npmjs.org/@phoenix-plugin-registry/brackets-project-files-hide/-/brackets-project-files-hide-1.0.0.tgz\n',
'gengivized' => 'https://registry.npmjs.org/@phoenix-plugin-registry/gengivized/-/gengivized-1.0.1.tgz\n',
'yangodev-flattark-dark' => 'https://registry.npmjs.org/@phoenix-plugin-registry/yangodev-flattark-dark/-/yangodev-flattark-dark-0.0.3.tgz\n',
'brackets-doxygen' => 'https://registry.npmjs.org/@phoenix-plugin-registry/brackets-doxygen/-/brackets-doxygen-2.0.0.tgz\n',
'aurooba.happylike' => 'https://registry.npmjs.org/@phoenix-plugin-registry/aurooba.happylike/-/aurooba.happylike-0.0.1.tgz\n',
'brackets-angular-snippets' => 'https://registry.npmjs.org/@phoenix-plugin-registry/brackets-angular-snippets/-/brackets-angular-snippets-0.1.2.tgz\n',
'htmllint.htmllint-brackets' => 'https://registry.npmjs.org/@phoenix-plugin-registry/htmllint.htmllint-brackets/-/htmllint.htmllint-brackets-0.2.0.tgz\n',
'zaggino.brackets-snippets' => 'https://registry.npmjs.org/@phoenix-plugin-registry/zaggino.brackets-snippets/-/zaggino.brackets-snippets-0.6.2.tgz\n',
'casperjs-code-hinter' => 'https://registry.npmjs.org/@phoenix-plugin-registry/casperjs-code-hinter/-/casperjs-code-hinter-0.0.3.tgz\n',
'brackets-ubuntu' => 'https://registry.npmjs.org/@phoenix-plugin-registry/brackets-ubuntu/-/brackets-ubuntu-0.9.1.tgz\n',
'nicolo-ribaudo.brackets-svg-font' => 'https://registry.npmjs.org/@phoenix-plugin-registry/nicolo-ribaudo.brackets-svg-font/-/nicolo-ribaudo.brackets-svg-font-0.4.5.tgz\n',
'brunnopleffken.light-table-theme' => 'https://registry.npmjs.org/@phoenix-plugin-registry/brunnopleffken.light-table-theme/-/brunnopleffken.light-table-theme-1.0.0.tgz\n',
'response-for-brackets' => 'https://registry.npmjs.org/@phoenix-plugin-registry/response-for-brackets/-/response-for-brackets-0.1.0.tgz\n',
'swig-brackets' => 'https://registry.npmjs.org/@phoenix-plugin-registry/swig-brackets/-/swig-brackets-0.0.2.tgz\n',
'szdc.use-strict-js' => 'https://registry.npmjs.org/@phoenix-plugin-registry/szdc.use-strict-js/-/szdc.use-strict-js-1.0.2.tgz\n',
'tarcisio.custom-code-hinter' => 'https://registry.npmjs.org/@phoenix-plugin-registry/tarcisio.custom-code-hinter/-/tarcisio.custom-code-hinter-0.0.3.tgz\n',
'netsi1964.dynamicwebtags' => 'https://registry.npmjs.org/@phoenix-plugin-registry/netsi1964.dynamicwebtags/-/netsi1964.dynamicwebtags-1.2.8.tgz\n',
'fox-brackets--dark' => 'https://registry.npmjs.org/@phoenix-plugin-registry/fox-brackets--dark/-/fox-brackets--dark-1.0.1.tgz\n',
'dreamweaver-light' => 'https://registry.npmjs.org/@phoenix-plugin-registry/dreamweaver-light/-/dreamweaver-light-1.0.6.tgz\n',
'yo-theme' => 'https://registry.npmjs.org/@phoenix-plugin-registry/yo-theme/-/yo-theme-1.0.0.tgz\n',
'visual-studio-dark' => 'https://registry.npmjs.org/@phoenix-plugin-registry/visual-studio-dark/-/visual-studio-dark-1.1.5.tgz\n',
'chrome' => 'https://registry.npmjs.org/@phoenix-plugin-registry/chrome/-/chrome-1.0.0.tgz\n',
'international-keyboards' => 'https://registry.npmjs.org/@phoenix-plugin-registry/international-keyboards/-/international-keyboards-1.0.0.tgz\n',
'blackmint-theme' => 'https://registry.npmjs.org/@phoenix-plugin-registry/blackmint-theme/-/blackmint-theme-1.0.0.tgz\n',
'hirse.outline-list' => 'https://registry.npmjs.org/@phoenix-plugin-registry/hirse.outline-list/-/hirse.outline-list-1.5.0.tgz\n',
'brackets-materialangularjs-codehints' => 'https://registry.npmjs.org/@phoenix-plugin-registry/brackets-materialangularjs-codehints/-/brackets-materialangularjs-codehints-0.0.2.tgz\n',
'dannymoerkerke.brackets-php-doc' => 'https://registry.npmjs.org/@phoenix-plugin-registry/dannymoerkerke.brackets-php-doc/-/dannymoerkerke.brackets-php-doc-0.1.0.tgz\n',
'brackets-elixir-tools' => 'https://registry.npmjs.org/@phoenix-plugin-registry/brackets-elixir-tools/-/brackets-elixir-tools-0.1.0.tgz\n',
'szdc.cdn-suggestions' => 'https://registry.npmjs.org/@phoenix-plugin-registry/szdc.cdn-suggestions/-/szdc.cdn-suggestions-2.0.3.tgz\n',
'inspect-editor-dom' => 'https://registry.npmjs.org/@phoenix-plugin-registry/inspect-editor-dom/-/inspect-editor-dom-0.0.3.tgz\n',
'brackets-osxscrollbar' => 'https://registry.npmjs.org/@phoenix-plugin-registry/brackets-osxscrollbar/-/brackets-osxscrollbar-0.0.1.tgz\n',
'github-theme' => 'https://registry.npmjs.org/@phoenix-plugin-registry/github-theme/-/github-theme-0.0.1.tgz\n',
'dream-php' => 'https://registry.npmjs.org/@phoenix-plugin-registry/dream-php/-/dream-php-1.0.0.tgz\n',
'mitchellmebane.es6asjs' => 'https://registry.npmjs.org/@phoenix-plugin-registry/mitchellmebane.es6asjs/-/mitchellmebane.es6asjs-1.0.0.tgz\n',
'brackets-mg-functions-hint' => 'https://registry.npmjs.org/@phoenix-plugin-registry/brackets-mg-functions-hint/-/brackets-mg-functions-hint-1.1.1.tgz\n',
'com.rubenengelbrecht.frackets' => 'https://registry.npmjs.org/@phoenix-plugin-registry/com.rubenengelbrecht.frackets/-/com.rubenengelbrecht.frackets-1.0.0.tgz\n',
'tremendus-dark-theme' => 'https://registry.npmjs.org/@phoenix-plugin-registry/tremendus-dark-theme/-/tremendus-dark-theme-1.0.2.tgz\n',
'woocommerce-hints-for-brackets' => 'https://registry.npmjs.org/@phoenix-plugin-registry/woocommerce-hints-for-brackets/-/woocommerce-hints-for-brackets-1.0.0.tgz\n',
'zeedijk' => 'https://registry.npmjs.org/@phoenix-plugin-registry/zeedijk/-/zeedijk-0.1.0.tgz\n',
'dustindowell.neon' => 'https://registry.npmjs.org/@phoenix-plugin-registry/dustindowell.neon/-/dustindowell.neon-1.1.8.tgz\n',
'hdy.brackets-shell' => 'https://registry.npmjs.org/@phoenix-plugin-registry/hdy.brackets-shell/-/hdy.brackets-shell-0.0.12.tgz\n',
'open-in-browser' => 'https://registry.npmjs.org/@phoenix-plugin-registry/open-in-browser/-/open-in-browser-4.1.3.tgz\n',
'demonmhon.brackets-working-file-tab' => 'https://registry.npmjs.org/@phoenix-plugin-registry/demonmhon.brackets-working-file-tab/-/demonmhon.brackets-working-file-tab-1.0.3.tgz\n',
'brackets-compare' => 'https://registry.npmjs.org/@phoenix-plugin-registry/brackets-compare/-/brackets-compare-0.2.7.tgz\n',
'task-list' => 'https://registry.npmjs.org/@phoenix-plugin-registry/task-list/-/task-list-1.0.0.tgz\n',
'os.xcode.theme' => 'https://registry.npmjs.org/@phoenix-plugin-registry/os.xcode.theme/-/os.xcode.theme-5.1.0.tgz\n',
'aivanov.command-line-shortcuts' => 'https://registry.npmjs.org/@phoenix-plugin-registry/aivanov.command-line-shortcuts/-/aivanov.command-line-shortcuts-0.2.4.tgz\n',
'kreshikhin.alien-planet' => 'https://registry.npmjs.org/@phoenix-plugin-registry/kreshikhin.alien-planet/-/kreshikhin.alien-planet-1.0.0.tgz\n',
'notification' => 'https://registry.npmjs.org/@phoenix-plugin-registry/notification/-/notification-1.0.1.tgz\n',
'jay-theme' => 'https://registry.npmjs.org/@phoenix-plugin-registry/jay-theme/-/jay-theme-2.0.0.tgz\n',
'tadorhead.crystal-blue.dark' => 'https://registry.npmjs.org/@phoenix-plugin-registry/tadorhead.crystal-blue.dark/-/tadorhead.crystal-blue.dark-1.0.2.tgz\n',
'newfile-from-template' => 'https://registry.npmjs.org/@phoenix-plugin-registry/newfile-from-template/-/newfile-from-template-1.1.2.tgz\n',
'ionic-brackets' => 'https://registry.npmjs.org/@phoenix-plugin-registry/ionic-brackets/-/ionic-brackets-0.4.0.tgz\n',
'brackets-jsoniq' => 'https://registry.npmjs.org/@phoenix-plugin-registry/brackets-jsoniq/-/brackets-jsoniq-0.1.0.tgz\n',
'twig' => 'https://registry.npmjs.org/@phoenix-plugin-registry/twig/-/twig-1.0.0.tgz\n',
'ntriples' => 'https://registry.npmjs.org/@phoenix-plugin-registry/ntriples/-/ntriples-1.0.0.tgz\n',
'velocity' => 'https://registry.npmjs.org/@phoenix-plugin-registry/velocity/-/velocity-1.0.0.tgz\n',
'nginx' => 'https://registry.npmjs.org/@phoenix-plugin-registry/nginx/-/nginx-1.0.0.tgz\n',
'vincentloy.lorem-picsum' => 'https://registry.npmjs.org/@phoenix-plugin-registry/vincentloy.lorem-picsum/-/vincentloy.lorem-picsum-1.0.0.tgz\n',
'dannymoerkerke.brackets-codeintel' => 'https://registry.npmjs.org/@phoenix-plugin-registry/dannymoerkerke.brackets-codeintel/-/dannymoerkerke.brackets-codeintel-0.1.1.tgz\n',
'ohnnyj.webp' => 'https://registry.npmjs.org/@phoenix-plugin-registry/ohnnyj.webp/-/ohnnyj.webp-0.0.1.tgz\n',
'brackets-cuwire' => 'https://registry.npmjs.org/@phoenix-plugin-registry/brackets-cuwire/-/brackets-cuwire-0.5.3.tgz\n',
'vincentloy.ui-faces-and-names' => 'https://registry.npmjs.org/@phoenix-plugin-registry/vincentloy.ui-faces-and-names/-/vincentloy.ui-faces-and-names-1.1.0.tgz\n',
'pessotti.resizable-bottom-working-files' => 'https://registry.npmjs.org/@phoenix-plugin-registry/pessotti.resizable-bottom-working-files/-/pessotti.resizable-bottom-working-files-1.0.1.tgz\n',
'msthomaz-theme-brackets' => 'https://registry.npmjs.org/@phoenix-plugin-registry/msthomaz-theme-brackets/-/msthomaz-theme-brackets-0.1.1.tgz\n',
'owumaro.better-coffee' => 'https://registry.npmjs.org/@phoenix-plugin-registry/owumaro.better-coffee/-/owumaro.better-coffee-1.0.0.tgz\n',
'brackets-semicenter' => 'https://registry.npmjs.org/@phoenix-plugin-registry/brackets-semicenter/-/brackets-semicenter-0.1.7.tgz\n',
'custom-work-for-brackets' => 'https://registry.npmjs.org/@phoenix-plugin-registry/custom-work-for-brackets/-/custom-work-for-brackets-5.2.0.tgz\n',
'brackets-oneliner' => 'https://registry.npmjs.org/@phoenix-plugin-registry/brackets-oneliner/-/brackets-oneliner-0.2.0.tgz\n',
'tadorhead.graphite-in-neon' => 'https://registry.npmjs.org/@phoenix-plugin-registry/tadorhead.graphite-in-neon/-/tadorhead.graphite-in-neon-1.0.0.tgz\n',
'brackets-functionfinder' => 'https://registry.npmjs.org/@phoenix-plugin-registry/brackets-functionfinder/-/brackets-functionfinder-1.0.0.tgz\n',
'funkemedia.fnk-dark-theme' => 'https://registry.npmjs.org/@phoenix-plugin-registry/funkemedia.fnk-dark-theme/-/funkemedia.fnk-dark-theme-1.0.6.tgz\n',
'jimgallaher.cobalt' => 'https://registry.npmjs.org/@phoenix-plugin-registry/jimgallaher.cobalt/-/jimgallaher.cobalt-1.0.6.tgz\n',
'jimgallaherblackboard' => 'https://registry.npmjs.org/@phoenix-plugin-registry/jimgallaherblackboard/-/jimgallaherblackboard-1.0.2.tgz\n',
'pessotti.doubleclick-match-brackets' => 'https://registry.npmjs.org/@phoenix-plugin-registry/pessotti.doubleclick-match-brackets/-/pessotti.doubleclick-match-brackets-1.0.0.tgz\n',
'chrisgriffith.ionicbracketshints' => 'https://registry.npmjs.org/@phoenix-plugin-registry/chrisgriffith.ionicbracketshints/-/chrisgriffith.ionicbracketshints-0.5.0.tgz\n',
'cordova.turkiye' => 'https://registry.npmjs.org/@phoenix-plugin-registry/cordova.turkiye/-/cordova.turkiye-1.0.0.tgz\n',
'jimgallaher.hannah' => 'https://registry.npmjs.org/@phoenix-plugin-registry/jimgallaher.hannah/-/jimgallaher.hannah-1.0.0.tgz\n',
'jlamanna.gitattributes-line-endings' => 'https://registry.npmjs.org/@phoenix-plugin-registry/jlamanna.gitattributes-line-endings/-/jlamanna.gitattributes-line-endings-1.0.1.tgz\n',
'ceratrior' => 'https://registry.npmjs.org/@phoenix-plugin-registry/ceratrior/-/ceratrior-1.0.0.tgz\n',
'edc.brackets-snippets' => 'https://registry.npmjs.org/@phoenix-plugin-registry/edc.brackets-snippets/-/edc.brackets-snippets-1.8.1.tgz\n',
'com.boniatillo.phaserchains' => 'https://registry.npmjs.org/@phoenix-plugin-registry/com.boniatillo.phaserchains/-/com.boniatillo.phaserchains-1.0.4.tgz\n',
'scriptin.indent-softwraps' => 'https://registry.npmjs.org/@phoenix-plugin-registry/scriptin.indent-softwraps/-/scriptin.indent-softwraps-0.2.7.tgz\n',
'zeus-code-hinter' => 'https://registry.npmjs.org/@phoenix-plugin-registry/zeus-code-hinter/-/zeus-code-hinter-0.1.1.tgz\n',
'giovannicalo.brackets-coffeescript' => 'https://registry.npmjs.org/@phoenix-plugin-registry/giovannicalo.brackets-coffeescript/-/giovannicalo.brackets-coffeescript-1.1.7.tgz\n',
'karthik25.brackets-linqsharp' => 'https://registry.npmjs.org/@phoenix-plugin-registry/karthik25.brackets-linqsharp/-/karthik25.brackets-linqsharp-0.1.0.tgz\n',
'maupin.cursor' => 'https://registry.npmjs.org/@phoenix-plugin-registry/maupin.cursor/-/maupin.cursor-0.0.4.tgz\n',
'baig.brackets-zotero' => 'https://registry.npmjs.org/@phoenix-plugin-registry/baig.brackets-zotero/-/baig.brackets-zotero-0.1.7.tgz\n',
'open.recent.file' => 'https://registry.npmjs.org/@phoenix-plugin-registry/open.recent.file/-/open.recent.file-0.5.7.tgz\n',
'tobibeer.brackets-custom-css' => 'https://registry.npmjs.org/@phoenix-plugin-registry/tobibeer.brackets-custom-css/-/tobibeer.brackets-custom-css-0.1.1.tgz\n',
'dustindowell.fading-cursor-blink' => 'https://registry.npmjs.org/@phoenix-plugin-registry/dustindowell.fading-cursor-blink/-/dustindowell.fading-cursor-blink-1.0.2.tgz\n',
'dustindowell.sidebar-reloaded' => 'https://registry.npmjs.org/@phoenix-plugin-registry/dustindowell.sidebar-reloaded/-/dustindowell.sidebar-reloaded-1.0.0.tgz\n',
'mackenza.php-smarthints' => 'https://registry.npmjs.org/@phoenix-plugin-registry/mackenza.php-smarthints/-/mackenza.php-smarthints-1.2.2.tgz\n',
'togglecase' => 'https://registry.npmjs.org/@phoenix-plugin-registry/togglecase/-/togglecase-0.1.2.tgz\n',
'stripper-theme' => 'https://registry.npmjs.org/@phoenix-plugin-registry/stripper-theme/-/stripper-theme-0.1.1.tgz\n',
'zaggino.brackets-eslint' => 'https://registry.npmjs.org/@phoenix-plugin-registry/zaggino.brackets-eslint/-/zaggino.brackets-eslint-3.2.0.tgz\n',
'petetnt.brackets-codemirror-go' => 'https://registry.npmjs.org/@phoenix-plugin-registry/petetnt.brackets-codemirror-go/-/petetnt.brackets-codemirror-go-0.0.1.tgz\n',
'hirse.print-margin' => 'https://registry.npmjs.org/@phoenix-plugin-registry/hirse.print-margin/-/hirse.print-margin-0.4.0.tgz\n',
'shrikantmeena.enhanced-scrollbars' => 'https://registry.npmjs.org/@phoenix-plugin-registry/shrikantmeena.enhanced-scrollbars/-/shrikantmeena.enhanced-scrollbars-1.0.0.tgz\n',
'hegdeashwin.brackets-nodejs-theme' => 'https://registry.npmjs.org/@phoenix-plugin-registry/hegdeashwin.brackets-nodejs-theme/-/hegdeashwin.brackets-nodejs-theme-1.0.0.tgz\n',
'blumberry-theme' => 'https://registry.npmjs.org/@phoenix-plugin-registry/blumberry-theme/-/blumberry-theme-1.1.0.tgz\n',
'brackets-permanent-scrollbars' => 'https://registry.npmjs.org/@phoenix-plugin-registry/brackets-permanent-scrollbars/-/brackets-permanent-scrollbars-0.1.0.tgz\n',
'brad-jones.git-projects' => 'https://registry.npmjs.org/@phoenix-plugin-registry/brad-jones.git-projects/-/brad-jones.git-projects-0.0.5.tgz\n',
'dannymoerkerke.brackets-selections' => 'https://registry.npmjs.org/@phoenix-plugin-registry/dannymoerkerke.brackets-selections/-/dannymoerkerke.brackets-selections-1.0.1.tgz\n',
'josephgf.jumptodefinition' => 'https://registry.npmjs.org/@phoenix-plugin-registry/josephgf.jumptodefinition/-/josephgf.jumptodefinition-1.0.0.tgz\n',
'phoenix.brackets.phplinter' => 'https://registry.npmjs.org/@phoenix-plugin-registry/phoenix.brackets.phplinter/-/phoenix.brackets.phplinter-1.0.2.tgz\n',
'josephgf.obsidian2' => 'https://registry.npmjs.org/@phoenix-plugin-registry/josephgf.obsidian2/-/josephgf.obsidian2-1.1.2.tgz\n',
'chrisgriffith.onsenbracketshints' => 'https://registry.npmjs.org/@phoenix-plugin-registry/chrisgriffith.onsenbracketshints/-/chrisgriffith.onsenbracketshints-0.3.1.tgz\n',
'no-fade-in-split-view' => 'https://registry.npmjs.org/@phoenix-plugin-registry/no-fade-in-split-view/-/no-fade-in-split-view-0.0.1.tgz\n',
'dramatic-error-highlighting' => 'https://registry.npmjs.org/@phoenix-plugin-registry/dramatic-error-highlighting/-/dramatic-error-highlighting-1.0.0.tgz\n',
'dnbard.postman' => 'https://registry.npmjs.org/@phoenix-plugin-registry/dnbard.postman/-/dnbard.postman-0.1.1.tgz\n',
'pflynn.nativecode' => 'https://registry.npmjs.org/@phoenix-plugin-registry/pflynn.nativecode/-/pflynn.nativecode-1.0.0.tgz\n',
'mohanaravind.brackets.ds-tools' => 'https://registry.npmjs.org/@phoenix-plugin-registry/mohanaravind.brackets.ds-tools/-/mohanaravind.brackets.ds-tools-0.0.4.tgz\n',
'mendix.wdpforbrackets' => 'https://registry.npmjs.org/@phoenix-plugin-registry/mendix.wdpforbrackets/-/mendix.wdpforbrackets-1.0.4.tgz\n',
'vcfvct.brackets-file-format' => 'https://registry.npmjs.org/@phoenix-plugin-registry/vcfvct.brackets-file-format/-/vcfvct.brackets-file-format-1.2.2.tgz\n',
'dsgn.dracula-theme' => 'https://registry.npmjs.org/@phoenix-plugin-registry/dsgn.dracula-theme/-/dsgn.dracula-theme-1.0.1.tgz\n',
'brackets-quick-insert' => 'https://registry.npmjs.org/@phoenix-plugin-registry/brackets-quick-insert/-/brackets-quick-insert-1.0.0.tgz\n',
'roberthchan.geekotheme' => 'https://registry.npmjs.org/@phoenix-plugin-registry/roberthchan.geekotheme/-/roberthchan.geekotheme-0.1.4.tgz\n',
'flatlandish' => 'https://registry.npmjs.org/@phoenix-plugin-registry/flatlandish/-/flatlandish-0.7.2.tgz\n',
'dvuyka.templates' => 'https://registry.npmjs.org/@phoenix-plugin-registry/dvuyka.templates/-/dvuyka.templates-1.0.3.tgz\n',
'dustindowell.neon-minimap' => 'https://registry.npmjs.org/@phoenix-plugin-registry/dustindowell.neon-minimap/-/dustindowell.neon-minimap-1.0.1.tgz\n',
'tomorrow-night-eighties' => 'https://registry.npmjs.org/@phoenix-plugin-registry/tomorrow-night-eighties/-/tomorrow-night-eighties-1.1.2.tgz\n',
'mitchellsimoens.brackets-sencha' => 'https://registry.npmjs.org/@phoenix-plugin-registry/mitchellsimoens.brackets-sencha/-/mitchellsimoens.brackets-sencha-0.3.1.tgz\n',
'alexpersian.spacegray-brackets' => 'https://registry.npmjs.org/@phoenix-plugin-registry/alexpersian.spacegray-brackets/-/alexpersian.spacegray-brackets-1.1.0.tgz\n',
'joeyfreeman.brackets-octave-syntax' => 'https://registry.npmjs.org/@phoenix-plugin-registry/joeyfreeman.brackets-octave-syntax/-/joeyfreeman.brackets-octave-syntax-1.0.0.tgz\n',
'dockerfile' => 'https://registry.npmjs.org/@phoenix-plugin-registry/dockerfile/-/dockerfile-1.0.0.tgz\n',
'dcblocks-brackets' => 'https://registry.npmjs.org/@phoenix-plugin-registry/dcblocks-brackets/-/dcblocks-brackets-0.0.4.tgz\n',
'jasonsanjose.brackets-sass' => 'https://registry.npmjs.org/@phoenix-plugin-registry/jasonsanjose.brackets-sass/-/jasonsanjose.brackets-sass-2.0.5.tgz\n',
'orchid-theme' => 'https://registry.npmjs.org/@phoenix-plugin-registry/orchid-theme/-/orchid-theme-1.1.1.tgz\n',
'darcula-theme' => 'https://registry.npmjs.org/@phoenix-plugin-registry/darcula-theme/-/darcula-theme-1.0.0.tgz\n',
'brackets-gherkin' => 'https://registry.npmjs.org/@phoenix-plugin-registry/brackets-gherkin/-/brackets-gherkin-0.1.0.tgz\n',
'brackets-darker' => 'https://registry.npmjs.org/@phoenix-plugin-registry/brackets-darker/-/brackets-darker-3.2.0.tgz\n',
'warnney.darkcloud' => 'https://registry.npmjs.org/@phoenix-plugin-registry/warnney.darkcloud/-/warnney.darkcloud-1.0.0.tgz\n',
'mignonstyle.simple' => 'https://registry.npmjs.org/@phoenix-plugin-registry/mignonstyle.simple/-/mignonstyle.simple-1.1.0.tgz\n',
'warnney.bluedream' => 'https://registry.npmjs.org/@phoenix-plugin-registry/warnney.bluedream/-/warnney.bluedream-1.0.0.tgz\n',
'ivan1810.moving-between-splitted-windows' => 'https://registry.npmjs.org/@phoenix-plugin-registry/ivan1810.moving-between-splitted-windows/-/ivan1810.moving-between-splitted-windows-1.0.0.tgz\n',
'brackets-zw' => 'https://registry.npmjs.org/@phoenix-plugin-registry/brackets-zw/-/brackets-zw-0.2.0.tgz\n',
'nicolo-ribaudo.brackets-jslint-errors' => 'https://registry.npmjs.org/@phoenix-plugin-registry/nicolo-ribaudo.brackets-jslint-errors/-/nicolo-ribaudo.brackets-jslint-errors-0.1.1.tgz\n',
'resonant-light-theme' => 'https://registry.npmjs.org/@phoenix-plugin-registry/resonant-light-theme/-/resonant-light-theme-0.1.2.tgz\n',
'brackets-minimap' => 'https://registry.npmjs.org/@phoenix-plugin-registry/brackets-minimap/-/brackets-minimap-3.2.6.tgz\n',
'davidwaterston.goto-matching-bracket' => 'https://registry.npmjs.org/@phoenix-plugin-registry/davidwaterston.goto-matching-bracket/-/davidwaterston.goto-matching-bracket-2.2.1.tgz\n',
'pthdc.pixelariumdark' => 'https://registry.npmjs.org/@phoenix-plugin-registry/pthdc.pixelariumdark/-/pthdc.pixelariumdark-1.1.0.tgz\n',
'scroll-arrows' => 'https://registry.npmjs.org/@phoenix-plugin-registry/scroll-arrows/-/scroll-arrows-0.1.1.tgz\n',
'deddy.additional-right-click-menu' => 'https://registry.npmjs.org/@phoenix-plugin-registry/deddy.additional-right-click-menu/-/deddy.additional-right-click-menu-0.5.1.tgz\n',
'deddy.runscript' => 'https://registry.npmjs.org/@phoenix-plugin-registry/deddy.runscript/-/deddy.runscript-0.6.1.tgz\n',
'dag0310.tab-out' => 'https://registry.npmjs.org/@phoenix-plugin-registry/dag0310.tab-out/-/dag0310.tab-out-1.3.0.tgz\n',
'nicolo-ribaudo.brackets-zip' => 'https://registry.npmjs.org/@phoenix-plugin-registry/nicolo-ribaudo.brackets-zip/-/nicolo-ribaudo.brackets-zip-0.1.0.tgz\n',
'darksystemcd-brackets-theme' => 'https://registry.npmjs.org/@phoenix-plugin-registry/darksystemcd-brackets-theme/-/darksystemcd-brackets-theme-1.0.1.tgz\n',
'dhaspden' => 'https://registry.npmjs.org/@phoenix-plugin-registry/dhaspden/-/dhaspden-1.0.0.tgz\n',
'working-files' => 'https://registry.npmjs.org/@phoenix-plugin-registry/working-files/-/working-files-0.0.1.tgz\n',
'favourite-files' => 'https://registry.npmjs.org/@phoenix-plugin-registry/favourite-files/-/favourite-files-0.0.1.tgz\n',
'warapitiya.unity' => 'https://registry.npmjs.org/@phoenix-plugin-registry/warapitiya.unity/-/warapitiya.unity-1.0.0.tgz\n',
'htmlbars-syntax' => 'https://registry.npmjs.org/@phoenix-plugin-registry/htmlbars-syntax/-/htmlbars-syntax-1.2.0.tgz\n',
'flat-ui-theme' => 'https://registry.npmjs.org/@phoenix-plugin-registry/flat-ui-theme/-/flat-ui-theme-1.0.3.tgz\n',
'brackets-recogneyes-theme' => 'https://registry.npmjs.org/@phoenix-plugin-registry/brackets-recogneyes-theme/-/brackets-recogneyes-theme-0.1.0.tgz\n',
'neobrackets.trello' => 'https://registry.npmjs.org/@phoenix-plugin-registry/neobrackets.trello/-/neobrackets.trello-0.1.6.tgz\n',
'brad-jones.whitespace' => 'https://registry.npmjs.org/@phoenix-plugin-registry/brad-jones.whitespace/-/brad-jones.whitespace-0.0.1.tgz\n',
'brackets-openedfiles' => 'https://registry.npmjs.org/@phoenix-plugin-registry/brackets-openedfiles/-/brackets-openedfiles-1.1.5.tgz\n',
'yantrio.base-16-ocean-dark-theme' => 'https://registry.npmjs.org/@phoenix-plugin-registry/yantrio.base-16-ocean-dark-theme/-/yantrio.base-16-ocean-dark-theme-1.0.0.tgz\n',
'dnbard.no-highlight' => 'https://registry.npmjs.org/@phoenix-plugin-registry/dnbard.no-highlight/-/dnbard.no-highlight-1.0.1.tgz\n',
'x-mat.speed-material-dark-theme' => 'https://registry.npmjs.org/@phoenix-plugin-registry/x-mat.speed-material-dark-theme/-/x-mat.speed-material-dark-theme-1.0.0.tgz\n',
'php-debugger' => 'https://registry.npmjs.org/@phoenix-plugin-registry/php-debugger/-/php-debugger-0.0.4.tgz\n',
'flat-attack-theme' => 'https://registry.npmjs.org/@phoenix-plugin-registry/flat-attack-theme/-/flat-attack-theme-1.0.0.tgz\n',
'flat-attack-dark-theme' => 'https://registry.npmjs.org/@phoenix-plugin-registry/flat-attack-dark-theme/-/flat-attack-dark-theme-1.0.5.tgz\n',
'brackets-stripper-redo' => 'https://registry.npmjs.org/@phoenix-plugin-registry/brackets-stripper-redo/-/brackets-stripper-redo-0.1.1.tgz\n',
'camden.jshint.esnext' => 'https://registry.npmjs.org/@phoenix-plugin-registry/camden.jshint.esnext/-/camden.jshint.esnext-2.7.0.tgz\n',
'codemirror.esnext.highlight' => 'https://registry.npmjs.org/@phoenix-plugin-registry/codemirror.esnext.highlight/-/codemirror.esnext.highlight-0.0.1.tgz\n',
'deddy.dbmanager' => 'https://registry.npmjs.org/@phoenix-plugin-registry/deddy.dbmanager/-/deddy.dbmanager-0.1.2.tgz\n',
'genuitec.team-extensions' => 'https://registry.npmjs.org/@phoenix-plugin-registry/genuitec.team-extensions/-/genuitec.team-extensions-0.9.0.tgz\n',
'birds-of-paradise' => 'https://registry.npmjs.org/@phoenix-plugin-registry/birds-of-paradise/-/birds-of-paradise-1.1.0.tgz\n',
'flat-attack-light-theme' => 'https://registry.npmjs.org/@phoenix-plugin-registry/flat-attack-light-theme/-/flat-attack-light-theme-1.0.1.tgz\n',
'truedesign.subtle.light' => 'https://registry.npmjs.org/@phoenix-plugin-registry/truedesign.subtle.light/-/truedesign.subtle.light-1.3.0.tgz\n',
'dnbard.old-teminal' => 'https://registry.npmjs.org/@phoenix-plugin-registry/dnbard.old-teminal/-/dnbard.old-teminal-1.1.0.tgz\n',
'mignonstyle.brackets-wp-functions-hints' => 'https://registry.npmjs.org/@phoenix-plugin-registry/mignonstyle.brackets-wp-functions-hints/-/mignonstyle.brackets-wp-functions-hints-1.0.2.tgz\n',
'mignonstyle.brackets-wp-hooks-hints' => 'https://registry.npmjs.org/@phoenix-plugin-registry/mignonstyle.brackets-wp-hooks-hints/-/mignonstyle.brackets-wp-hooks-hints-1.0.2.tgz\n',
'zaggino.brackets-coffeelint' => 'https://registry.npmjs.org/@phoenix-plugin-registry/zaggino.brackets-coffeelint/-/zaggino.brackets-coffeelint-1.12.2.tgz\n',
'terere-theme' => 'https://registry.npmjs.org/@phoenix-plugin-registry/terere-theme/-/terere-theme-0.1.0.tgz\n',
'brackets-custom-region-code-folding' => 'https://registry.npmjs.org/@phoenix-plugin-registry/brackets-custom-region-code-folding/-/brackets-custom-region-code-folding-1.1.0.tgz\n',
'erknrio-ariane-theme' => 'https://registry.npmjs.org/@phoenix-plugin-registry/erknrio-ariane-theme/-/erknrio-ariane-theme-1.1.2.tgz\n',
'brackets-npm-registry' => 'https://registry.npmjs.org/@phoenix-plugin-registry/brackets-npm-registry/-/brackets-npm-registry-0.6.4.tgz\n',
'brackets-eclipse-theme' => 'https://registry.npmjs.org/@phoenix-plugin-registry/brackets-eclipse-theme/-/brackets-eclipse-theme-1.0.0.tgz\n',
'brackets-gofmt' => 'https://registry.npmjs.org/@phoenix-plugin-registry/brackets-gofmt/-/brackets-gofmt-1.0.9.tgz\n',
'flat-zeedijk' => 'https://registry.npmjs.org/@phoenix-plugin-registry/flat-zeedijk/-/flat-zeedijk-0.1.0.tgz\n',
'petetnt.brackets-name-a-project' => 'https://registry.npmjs.org/@phoenix-plugin-registry/petetnt.brackets-name-a-project/-/petetnt.brackets-name-a-project-0.0.6.tgz\n',
'brackets-pryme' => 'https://registry.npmjs.org/@phoenix-plugin-registry/brackets-pryme/-/brackets-pryme-2.0.2.tgz\n',
'denisov21.pop-up-menu-extension' => 'https://registry.npmjs.org/@phoenix-plugin-registry/denisov21.pop-up-menu-extension/-/denisov21.pop-up-menu-extension-5.0.0.tgz\n',
'quape.selectword' => 'https://registry.npmjs.org/@phoenix-plugin-registry/quape.selectword/-/quape.selectword-1.0.1.tgz\n',
'brackets-script-builder' => 'https://registry.npmjs.org/@phoenix-plugin-registry/brackets-script-builder/-/brackets-script-builder-0.0.8.tgz\n',
'warapitiya.neptune' => 'https://registry.npmjs.org/@phoenix-plugin-registry/warapitiya.neptune/-/warapitiya.neptune-1.0.0.tgz\n',
'soundbot.xquery' => 'https://registry.npmjs.org/@phoenix-plugin-registry/soundbot.xquery/-/soundbot.xquery-1.1.0.tgz\n',
'solarized-dark-theme' => 'https://registry.npmjs.org/@phoenix-plugin-registry/solarized-dark-theme/-/solarized-dark-theme-1.1.0.tgz\n',
'resize-working-files' => 'https://registry.npmjs.org/@phoenix-plugin-registry/resize-working-files/-/resize-working-files-1.8.0.tgz\n',
'pretty-light-theme-by-mmk-jony' => 'https://registry.npmjs.org/@phoenix-plugin-registry/pretty-light-theme-by-mmk-jony/-/pretty-light-theme-by-mmk-jony-1.0.0.tgz\n',
'ui-too-small' => 'https://registry.npmjs.org/@phoenix-plugin-registry/ui-too-small/-/ui-too-small-0.0.4.tgz\n',
'joeireland.copyright' => 'https://registry.npmjs.org/@phoenix-plugin-registry/joeireland.copyright/-/joeireland.copyright-1.0.3.tgz\n',
'brackets-open-in-linux-terminal' => 'https://registry.npmjs.org/@phoenix-plugin-registry/brackets-open-in-linux-terminal/-/brackets-open-in-linux-terminal-1.3.0.tgz\n',
'brackets-http-server' => 'https://registry.npmjs.org/@phoenix-plugin-registry/brackets-http-server/-/brackets-http-server-1.0.7.tgz\n',
'manse.mannari' => 'https://registry.npmjs.org/@phoenix-plugin-registry/manse.mannari/-/manse.mannari-1.0.0.tgz\n',
'luceebrackets.org' => 'https://registry.npmjs.org/@phoenix-plugin-registry/luceebrackets.org/-/luceebrackets.org-0.1.1.tgz\n',
'baivong.mudim' => 'https://registry.npmjs.org/@phoenix-plugin-registry/baivong.mudim/-/baivong.mudim-1.0.0.tgz\n',
'baivong.avim' => 'https://registry.npmjs.org/@phoenix-plugin-registry/baivong.avim/-/baivong.avim-1.3.1.tgz\n',
'maityarkodeb.sand' => 'https://registry.npmjs.org/@phoenix-plugin-registry/maityarkodeb.sand/-/maityarkodeb.sand-1.0.0.tgz\n',
'maityarkodeb.neon-highway' => 'https://registry.npmjs.org/@phoenix-plugin-registry/maityarkodeb.neon-highway/-/maityarkodeb.neon-highway-1.0.0.tgz\n',
'rolando_zabala_ii-first_custom_theme' => 'https://registry.npmjs.org/@phoenix-plugin-registry/rolando_zabala_ii-first_custom_theme/-/rolando_zabala_ii-first_custom_theme-1.0.0.tgz\n',
'm4-syntax-highlighter' => 'https://registry.npmjs.org/@phoenix-plugin-registry/m4-syntax-highlighter/-/m4-syntax-highlighter-0.1.1.tgz\n',
'fletcherhenneman.darkpanja' => 'https://registry.npmjs.org/@phoenix-plugin-registry/fletcherhenneman.darkpanja/-/fletcherhenneman.darkpanja-1.0.0.tgz\n',
'milosh86.extensions-bulk-installer' => 'https://registry.npmjs.org/@phoenix-plugin-registry/milosh86.extensions-bulk-installer/-/milosh86.extensions-bulk-installer-0.3.0.tgz\n',
'busykai.indent-right' => 'https://registry.npmjs.org/@phoenix-plugin-registry/busykai.indent-right/-/busykai.indent-right-0.1.0.tgz\n',
'com.mgenware.son-of-obsidian' => 'https://registry.npmjs.org/@phoenix-plugin-registry/com.mgenware.son-of-obsidian/-/com.mgenware.son-of-obsidian-1.0.1.tgz\n',
'adobe.muse.mucowlanguage' => 'https://registry.npmjs.org/@phoenix-plugin-registry/adobe.muse.mucowlanguage/-/adobe.muse.mucowlanguage-0.4.75.tgz\n',
'toggle-working-files' => 'https://registry.npmjs.org/@phoenix-plugin-registry/toggle-working-files/-/toggle-working-files-1.0.1.tgz\n',
'brackets-script-builder-and-framework-launcher' => 'https://registry.npmjs.org/@phoenix-plugin-registry/brackets-script-builder-and-framework-launcher/-/brackets-script-builder-and-framework-launcher-0.1.0.tgz\n',
'copycase' => 'https://registry.npmjs.org/@phoenix-plugin-registry/copycase/-/copycase-0.0.1.tgz\n',
'linter.luacheck' => 'https://registry.npmjs.org/@phoenix-plugin-registry/linter.luacheck/-/linter.luacheck-1.0.0.tgz\n',
'masoud.geditlover' => 'https://registry.npmjs.org/@phoenix-plugin-registry/masoud.geditlover/-/masoud.geditlover-1.0.0.tgz\n',
'brackets-clientlibs-combine' => 'https://registry.npmjs.org/@phoenix-plugin-registry/brackets-clientlibs-combine/-/brackets-clientlibs-combine-0.0.3.tgz\n',
'brackets-ph-easy-dark-theme' => 'https://registry.npmjs.org/@phoenix-plugin-registry/brackets-ph-easy-dark-theme/-/brackets-ph-easy-dark-theme-1.0.0.tgz\n',
'brackets-maximize-editor' => 'https://registry.npmjs.org/@phoenix-plugin-registry/brackets-maximize-editor/-/brackets-maximize-editor-0.1.1.tgz\n',
'dark-deluxe-theme' => 'https://registry.npmjs.org/@phoenix-plugin-registry/dark-deluxe-theme/-/dark-deluxe-theme-1.0.3.tgz\n',
'lzia.lunies' => 'https://registry.npmjs.org/@phoenix-plugin-registry/lzia.lunies/-/lzia.lunies-0.0.2.tgz\n',
'brackets-factor' => 'https://registry.npmjs.org/@phoenix-plugin-registry/brackets-factor/-/brackets-factor-1.0.3.tgz\n',
'monokromatik-green' => 'https://registry.npmjs.org/@phoenix-plugin-registry/monokromatik-green/-/monokromatik-green-1.0.0.tgz\n',
'monokromatik-blue' => 'https://registry.npmjs.org/@phoenix-plugin-registry/monokromatik-blue/-/monokromatik-blue-1.0.0.tgz\n',
'kornelceglarek.bluee' => 'https://registry.npmjs.org/@phoenix-plugin-registry/kornelceglarek.bluee/-/kornelceglarek.bluee-1.0.0.tgz\n',
'brackets.google-search' => 'https://registry.npmjs.org/@phoenix-plugin-registry/brackets.google-search/-/brackets.google-search-1.1.2.tgz\n',
'codeomnitrix.bootstrap-snippets' => 'https://registry.npmjs.org/@phoenix-plugin-registry/codeomnitrix.bootstrap-snippets/-/codeomnitrix.bootstrap-snippets-0.1.0.tgz\n',
'mynimi.gemstones-theme' => 'https://registry.npmjs.org/@phoenix-plugin-registry/mynimi.gemstones-theme/-/mynimi.gemstones-theme-1.0.0.tgz\n',
'anyandgo-brackets' => 'https://registry.npmjs.org/@phoenix-plugin-registry/anyandgo-brackets/-/anyandgo-brackets-1.0.0.tgz\n',
'explicit-brackets-style' => 'https://registry.npmjs.org/@phoenix-plugin-registry/explicit-brackets-style/-/explicit-brackets-style-0.0.2.tgz\n',
'emberjs-htmlbars' => 'https://registry.npmjs.org/@phoenix-plugin-registry/emberjs-htmlbars/-/emberjs-htmlbars-1.0.2.tgz\n',
'petetnt.brackets-persistent-history' => 'https://registry.npmjs.org/@phoenix-plugin-registry/petetnt.brackets-persistent-history/-/petetnt.brackets-persistent-history-0.0.1.tgz\n',
'stephen.epic-night' => 'https://registry.npmjs.org/@phoenix-plugin-registry/stephen.epic-night/-/stephen.epic-night-1.0.0.tgz\n',
'patlillis.show-whitespace-vs' => 'https://registry.npmjs.org/@phoenix-plugin-registry/patlillis.show-whitespace-vs/-/patlillis.show-whitespace-vs-1.2.4.tgz\n',
'stephen.epic-light' => 'https://registry.npmjs.org/@phoenix-plugin-registry/stephen.epic-light/-/stephen.epic-light-2.0.0.tgz\n',
'yellowhangar.guidelines' => 'https://registry.npmjs.org/@phoenix-plugin-registry/yellowhangar.guidelines/-/yellowhangar.guidelines-1.0.1.tgz\n',
'jsbeautifier' => 'https://registry.npmjs.org/@phoenix-plugin-registry/jsbeautifier/-/jsbeautifier-0.0.3.tgz\n',
'chrisgriffith.zurbappshints' => 'https://registry.npmjs.org/@phoenix-plugin-registry/chrisgriffith.zurbappshints/-/chrisgriffith.zurbappshints-0.1.0.tgz\n',
'chrisgriffith.angularmaterialhints' => 'https://registry.npmjs.org/@phoenix-plugin-registry/chrisgriffith.angularmaterialhints/-/chrisgriffith.angularmaterialhints-0.1.1.tgz\n',
'keystrap' => 'https://registry.npmjs.org/@phoenix-plugin-registry/keystrap/-/keystrap-1.0.0.tgz\n',
'rrandom.rust-ide' => 'https://registry.npmjs.org/@phoenix-plugin-registry/rrandom.rust-ide/-/rrandom.rust-ide-1.0.8.tgz\n',
'somethingblue' => 'https://registry.npmjs.org/@phoenix-plugin-registry/somethingblue/-/somethingblue-1.0.0.tgz\n',
'adl-syntax-highlighter' => 'https://registry.npmjs.org/@phoenix-plugin-registry/adl-syntax-highlighter/-/adl-syntax-highlighter-0.1.0.tgz\n',
'brackets-theme-darktooth' => 'https://registry.npmjs.org/@phoenix-plugin-registry/brackets-theme-darktooth/-/brackets-theme-darktooth-0.1.0.tgz\n',
'dustindowell.neon-morning' => 'https://registry.npmjs.org/@phoenix-plugin-registry/dustindowell.neon-morning/-/dustindowell.neon-morning-1.1.0.tgz\n',
'dustindowell.zoom-zoom' => 'https://registry.npmjs.org/@phoenix-plugin-registry/dustindowell.zoom-zoom/-/dustindowell.zoom-zoom-1.0.0.tgz\n',
'brackets-folders-first' => 'https://registry.npmjs.org/@phoenix-plugin-registry/brackets-folders-first/-/brackets-folders-first-0.1.0.tgz\n',
'hirse.beautify' => 'https://registry.npmjs.org/@phoenix-plugin-registry/hirse.beautify/-/hirse.beautify-1.0.2.tgz\n',
'eng1003.uploader' => 'https://registry.npmjs.org/@phoenix-plugin-registry/eng1003.uploader/-/eng1003.uploader-1.2.2.tgz\n',
'jaustinhughey.endofline' => 'https://registry.npmjs.org/@phoenix-plugin-registry/jaustinhughey.endofline/-/jaustinhughey.endofline-0.1.1.tgz\n',
'guacamayo-dark' => 'https://registry.npmjs.org/@phoenix-plugin-registry/guacamayo-dark/-/guacamayo-dark-0.1.0.tgz\n',
'nunjucks-brackets' => 'https://registry.npmjs.org/@phoenix-plugin-registry/nunjucks-brackets/-/nunjucks-brackets-1.0.1.tgz\n',
'brackets.one.dark' => 'https://registry.npmjs.org/@phoenix-plugin-registry/brackets.one.dark/-/brackets.one.dark-0.0.2.tgz\n',
'neats29.deep-blue' => 'https://registry.npmjs.org/@phoenix-plugin-registry/neats29.deep-blue/-/neats29.deep-blue-1.2.0.tgz\n',
'stephen.epic-green' => 'https://registry.npmjs.org/@phoenix-plugin-registry/stephen.epic-green/-/stephen.epic-green-1.0.0.tgz\n',
'brackets-flow-lint' => 'https://registry.npmjs.org/@phoenix-plugin-registry/brackets-flow-lint/-/brackets-flow-lint-0.1.1.tgz\n',
'chrisgriffith.polymerhints' => 'https://registry.npmjs.org/@phoenix-plugin-registry/chrisgriffith.polymerhints/-/chrisgriffith.polymerhints-0.1.2.tgz\n',
'fthiagogv.naturegreen-dark-syntax' => 'https://registry.npmjs.org/@phoenix-plugin-registry/fthiagogv.naturegreen-dark-syntax/-/fthiagogv.naturegreen-dark-syntax-0.0.2.tgz\n',
'dockerfile-syntax-highlighter' => 'https://registry.npmjs.org/@phoenix-plugin-registry/dockerfile-syntax-highlighter/-/dockerfile-syntax-highlighter-1.0.2.tgz\n',
'jquinter' => 'https://registry.npmjs.org/@phoenix-plugin-registry/jquinter/-/jquinter-0.3.3.tgz\n',
'swmitra.html-designer' => 'https://registry.npmjs.org/@phoenix-plugin-registry/swmitra.html-designer/-/swmitra.html-designer-2.0.6.tgz\n',
'mynimi.gemstones-theme-light' => 'https://registry.npmjs.org/@phoenix-plugin-registry/mynimi.gemstones-theme-light/-/mynimi.gemstones-theme-light-1.0.0.tgz\n',
'mackenza.r-syntax' => 'https://registry.npmjs.org/@phoenix-plugin-registry/mackenza.r-syntax/-/mackenza.r-syntax-1.0.0.tgz\n',
'os-x-style-dark-theme' => 'https://registry.npmjs.org/@phoenix-plugin-registry/os-x-style-dark-theme/-/os-x-style-dark-theme-1.0.2.tgz\n',
'mi-wordwrap' => 'https://registry.npmjs.org/@phoenix-plugin-registry/mi-wordwrap/-/mi-wordwrap-1.0.2.tgz\n',
'subtly-light-theme' => 'https://registry.npmjs.org/@phoenix-plugin-registry/subtly-light-theme/-/subtly-light-theme-1.0.3.tgz\n',
'dark-conrtrast-theme' => 'https://registry.npmjs.org/@phoenix-plugin-registry/dark-conrtrast-theme/-/dark-conrtrast-theme-1.0.3.tgz\n',
'acb-bootstrap-snippets' => 'https://registry.npmjs.org/@phoenix-plugin-registry/acb-bootstrap-snippets/-/acb-bootstrap-snippets-0.0.14.tgz\n',
'brackets-minify' => 'https://registry.npmjs.org/@phoenix-plugin-registry/brackets-minify/-/brackets-minify-3.0.0.tgz\n',
'accessability' => 'https://registry.npmjs.org/@phoenix-plugin-registry/accessability/-/accessability-2.2.2.tgz\n',
'a11ylint' => 'https://registry.npmjs.org/@phoenix-plugin-registry/a11ylint/-/a11ylint-1.0.0.tgz\n',
'ceratrior2-material' => 'https://registry.npmjs.org/@phoenix-plugin-registry/ceratrior2-material/-/ceratrior2-material-0.0.2.tgz\n',
'acb-jade-bootstrap-snippets' => 'https://registry.npmjs.org/@phoenix-plugin-registry/acb-jade-bootstrap-snippets/-/acb-jade-bootstrap-snippets-0.0.1.tgz\n',
'raven' => 'https://registry.npmjs.org/@phoenix-plugin-registry/raven/-/raven-1.0.7.tgz\n',
'directory-search' => 'https://registry.npmjs.org/@phoenix-plugin-registry/directory-search/-/directory-search-1.1.1.tgz\n',
'brackets-standard' => 'https://registry.npmjs.org/@phoenix-plugin-registry/brackets-standard/-/brackets-standard-1.1.1.tgz\n',
'brackets-cucumber' => 'https://registry.npmjs.org/@phoenix-plugin-registry/brackets-cucumber/-/brackets-cucumber-0.12.1.tgz\n',
'manderson23.brackets-rpm-syntax' => 'https://registry.npmjs.org/@phoenix-plugin-registry/manderson23.brackets-rpm-syntax/-/manderson23.brackets-rpm-syntax-0.1.1.tgz\n',
'matthewjarvis.asterisk-syntax-highlighting' => 'https://registry.npmjs.org/@phoenix-plugin-registry/matthewjarvis.asterisk-syntax-highlighting/-/matthewjarvis.asterisk-syntax-highlighting-1.0.0.tgz\n',
'bguzmanrio.console-autocompleter' => 'https://registry.npmjs.org/@phoenix-plugin-registry/bguzmanrio.console-autocompleter/-/bguzmanrio.console-autocompleter-0.2.6.tgz\n',
'brackets-phonegap-codehints-quickdocsjs' => 'https://registry.npmjs.org/@phoenix-plugin-registry/brackets-phonegap-codehints-quickdocsjs/-/brackets-phonegap-codehints-quickdocsjs-1.1.1.tgz\n',
'sdonalcreative.brackets-love-hints' => 'https://registry.npmjs.org/@phoenix-plugin-registry/sdonalcreative.brackets-love-hints/-/sdonalcreative.brackets-love-hints-1.1.0.tgz\n',
'insert-hint-with-tab' => 'https://registry.npmjs.org/@phoenix-plugin-registry/insert-hint-with-tab/-/insert-hint-with-tab-1.0.0.tgz\n',
'warnney.newcss' => 'https://registry.npmjs.org/@phoenix-plugin-registry/warnney.newcss/-/warnney.newcss-1.0.0.tgz\n',
'new-moon' => 'https://registry.npmjs.org/@phoenix-plugin-registry/new-moon/-/new-moon-2.5.0.tgz\n',
'io.brackets.stylus-code-hints' => 'https://registry.npmjs.org/@phoenix-plugin-registry/io.brackets.stylus-code-hints/-/io.brackets.stylus-code-hints-0.1.0.tgz\n',
'simple-blue-theme' => 'https://registry.npmjs.org/@phoenix-plugin-registry/simple-blue-theme/-/simple-blue-theme-0.1.0.tgz\n',
'new-one-dark-theme' => 'https://registry.npmjs.org/@phoenix-plugin-registry/new-one-dark-theme/-/new-one-dark-theme-1.2.1.tgz\n',
'hirse.ungit' => 'https://registry.npmjs.org/@phoenix-plugin-registry/hirse.ungit/-/hirse.ungit-0.8.3.tgz\n',
'smooth-neutrals-theme' => 'https://registry.npmjs.org/@phoenix-plugin-registry/smooth-neutrals-theme/-/smooth-neutrals-theme-1.0.2.tgz\n',
'brackets-fusion-theme' => 'https://registry.npmjs.org/@phoenix-plugin-registry/brackets-fusion-theme/-/brackets-fusion-theme-1.3.5.tgz\n',
'brackets-gitbranch' => 'https://registry.npmjs.org/@phoenix-plugin-registry/brackets-gitbranch/-/brackets-gitbranch-3.0.6.tgz\n',
'brackets.sqf-search' => 'https://registry.npmjs.org/@phoenix-plugin-registry/brackets.sqf-search/-/brackets.sqf-search-1.0.0.tgz\n',
'mrdollywaggit.encode' => 'https://registry.npmjs.org/@phoenix-plugin-registry/mrdollywaggit.encode/-/mrdollywaggit.encode-1.0.0.tgz\n',
'quick-multi-cursor-selection' => 'https://registry.npmjs.org/@phoenix-plugin-registry/quick-multi-cursor-selection/-/quick-multi-cursor-selection-0.0.4.tgz\n',
'ethereal-theme' => 'https://registry.npmjs.org/@phoenix-plugin-registry/ethereal-theme/-/ethereal-theme-1.0.0.tgz\n',
'dark-proton-theme' => 'https://registry.npmjs.org/@phoenix-plugin-registry/dark-proton-theme/-/dark-proton-theme-1.0.0.tgz\n',
'kettle' => 'https://registry.npmjs.org/@phoenix-plugin-registry/kettle/-/kettle-1.1.0.tgz\n',
'braxets' => 'https://registry.npmjs.org/@phoenix-plugin-registry/braxets/-/braxets-0.5.1.tgz\n',
'rgb-one.language-haml' => 'https://registry.npmjs.org/@phoenix-plugin-registry/rgb-one.language-haml/-/rgb-one.language-haml-1.0.0.tgz\n',
'rhuno.replace.in.selection' => 'https://registry.npmjs.org/@phoenix-plugin-registry/rhuno.replace.in.selection/-/rhuno.replace.in.selection-1.0.0.tgz\n',
'brackets-image-convert' => 'https://registry.npmjs.org/@phoenix-plugin-registry/brackets-image-convert/-/brackets-image-convert-1.0.3.tgz\n',
'brackets-touch-me' => 'https://registry.npmjs.org/@phoenix-plugin-registry/brackets-touch-me/-/brackets-touch-me-1.0.3.tgz\n',
'smarkovic.transliteration' => 'https://registry.npmjs.org/@phoenix-plugin-registry/smarkovic.transliteration/-/smarkovic.transliteration-1.0.3.tgz\n',
'ocean-dark-theme' => 'https://registry.npmjs.org/@phoenix-plugin-registry/ocean-dark-theme/-/ocean-dark-theme-1.0.3.tgz\n',
'robertgirhiny.numbered-bookmarks' => 'https://registry.npmjs.org/@phoenix-plugin-registry/robertgirhiny.numbered-bookmarks/-/robertgirhiny.numbered-bookmarks-0.9.4.tgz\n',
'robcaa-dark-theme' => 'https://registry.npmjs.org/@phoenix-plugin-registry/robcaa-dark-theme/-/robcaa-dark-theme-1.0.1.tgz\n',
'robcaa-light-theme' => 'https://registry.npmjs.org/@phoenix-plugin-registry/robcaa-light-theme/-/robcaa-light-theme-1.0.0.tgz\n',
'newday-theme' => 'https://registry.npmjs.org/@phoenix-plugin-registry/newday-theme/-/newday-theme-1.0.0.tgz\n',
'mobilityportal.builder' => 'https://registry.npmjs.org/@phoenix-plugin-registry/mobilityportal.builder/-/mobilityportal.builder-0.1.2.tgz\n',
'brackets-es6-autocompile' => 'https://registry.npmjs.org/@phoenix-plugin-registry/brackets-es6-autocompile/-/brackets-es6-autocompile-1.0.1.tgz\n',
'zombie-theme' => 'https://registry.npmjs.org/@phoenix-plugin-registry/zombie-theme/-/zombie-theme-1.0.1.tgz\n',
'brackets-ect' => 'https://registry.npmjs.org/@phoenix-plugin-registry/brackets-ect/-/brackets-ect-1.1.1.tgz\n',
'sql-display' => 'https://registry.npmjs.org/@phoenix-plugin-registry/sql-display/-/sql-display-0.0.11.tgz\n',
'darkron' => 'https://registry.npmjs.org/@phoenix-plugin-registry/darkron/-/darkron-1.0.0.tgz\n',
'jonwolfe.file-tree-exclude' => 'https://registry.npmjs.org/@phoenix-plugin-registry/jonwolfe.file-tree-exclude/-/jonwolfe.file-tree-exclude-0.6.3.tgz\n',
'brackets-file-tree-exclude' => 'https://registry.npmjs.org/@phoenix-plugin-registry/brackets-file-tree-exclude/-/brackets-file-tree-exclude-1.1.0.tgz\n',
'brackets-lorem-breizhum' => 'https://registry.npmjs.org/@phoenix-plugin-registry/brackets-lorem-breizhum/-/brackets-lorem-breizhum-1.0.3.tgz\n',
'brackets-oz' => 'https://registry.npmjs.org/@phoenix-plugin-registry/brackets-oz/-/brackets-oz-1.0.0.tgz\n',
'blueprint' => 'https://registry.npmjs.org/@phoenix-plugin-registry/blueprint/-/blueprint-0.2.0.tgz\n',
'icy-sun' => 'https://registry.npmjs.org/@phoenix-plugin-registry/icy-sun/-/icy-sun-1.0.1.tgz\n',
'brackets-csscomb' => 'https://registry.npmjs.org/@phoenix-plugin-registry/brackets-csscomb/-/brackets-csscomb-1.0.0.tgz\n',
'marcofugaro.brackets.ordered.ctrl.tab' => 'https://registry.npmjs.org/@phoenix-plugin-registry/marcofugaro.brackets.ordered.ctrl.tab/-/marcofugaro.brackets.ordered.ctrl.tab-0.0.1.tgz\n',
'gist-theme' => 'https://registry.npmjs.org/@phoenix-plugin-registry/gist-theme/-/gist-theme-0.0.1.tgz\n',
'com.reecegriffin.html-comment-button' => 'https://registry.npmjs.org/@phoenix-plugin-registry/com.reecegriffin.html-comment-button/-/com.reecegriffin.html-comment-button-1.0.2.tgz\n',
'com.reecegriffin.c-comment-button' => 'https://registry.npmjs.org/@phoenix-plugin-registry/com.reecegriffin.c-comment-button/-/com.reecegriffin.c-comment-button-1.0.1.tgz\n',
'tonights-specials' => 'https://registry.npmjs.org/@phoenix-plugin-registry/tonights-specials/-/tonights-specials-1.0.6.tgz\n',
'apyx.easy-dark' => 'https://registry.npmjs.org/@phoenix-plugin-registry/apyx.easy-dark/-/apyx.easy-dark-1.0.0.tgz\n',
'petetnt.brackets-codemirror-fortran' => 'https://registry.npmjs.org/@phoenix-plugin-registry/petetnt.brackets-codemirror-fortran/-/petetnt.brackets-codemirror-fortran-0.0.1.tgz\n',
'constrat-blue-theme' => 'https://registry.npmjs.org/@phoenix-plugin-registry/constrat-blue-theme/-/constrat-blue-theme-1.1.0.tgz\n',
'cipherboy.brackets-chrome' => 'https://registry.npmjs.org/@phoenix-plugin-registry/cipherboy.brackets-chrome/-/cipherboy.brackets-chrome-1.0.1.tgz\n',
'brackets-yuidoc' => 'https://registry.npmjs.org/@phoenix-plugin-registry/brackets-yuidoc/-/brackets-yuidoc-1.2.0.tgz\n',
'jade-preprocessors' => 'https://registry.npmjs.org/@phoenix-plugin-registry/jade-preprocessors/-/jade-preprocessors-2.1.0.tgz\n',
'mitchellsimoens.node-inspector' => 'https://registry.npmjs.org/@phoenix-plugin-registry/mitchellsimoens.node-inspector/-/mitchellsimoens.node-inspector-0.0.5.tgz\n',
'edited_twilight' => 'https://registry.npmjs.org/@phoenix-plugin-registry/edited_twilight/-/edited_twilight-1.0.2.tgz\n',
'brackets-h5ab-quickjs' => 'https://registry.npmjs.org/@phoenix-plugin-registry/brackets-h5ab-quickjs/-/brackets-h5ab-quickjs-0.0.5.tgz\n',
'lonelystorm.newline' => 'https://registry.npmjs.org/@phoenix-plugin-registry/lonelystorm.newline/-/lonelystorm.newline-0.0.2.tgz\n',
'map.file.lang' => 'https://registry.npmjs.org/@phoenix-plugin-registry/map.file.lang/-/map.file.lang-1.0.2.tgz\n',
'qw0101.animations-deactivator' => 'https://registry.npmjs.org/@phoenix-plugin-registry/qw0101.animations-deactivator/-/qw0101.animations-deactivator-1.0.0.tgz\n',
'qw0101.inline-calc' => 'https://registry.npmjs.org/@phoenix-plugin-registry/qw0101.inline-calc/-/qw0101.inline-calc-1.0.0.tgz\n',
'violet-dark-theme' => 'https://registry.npmjs.org/@phoenix-plugin-registry/violet-dark-theme/-/violet-dark-theme-1.0.0.tgz\n',
'qw0101.colorhighlighter' => 'https://registry.npmjs.org/@phoenix-plugin-registry/qw0101.colorhighlighter/-/qw0101.colorhighlighter-1.2.2.tgz\n',
'true-ocean' => 'https://registry.npmjs.org/@phoenix-plugin-registry/true-ocean/-/true-ocean-1.4.0.tgz\n',
'copy.path.file' => 'https://registry.npmjs.org/@phoenix-plugin-registry/copy.path.file/-/copy.path.file-1.0.0.tgz\n',
'com.vevedh.ioniccli' => 'https://registry.npmjs.org/@phoenix-plugin-registry/com.vevedh.ioniccli/-/com.vevedh.ioniccli-1.1.2.tgz\n',
'violet-light-theme' => 'https://registry.npmjs.org/@phoenix-plugin-registry/violet-light-theme/-/violet-light-theme-1.0.0.tgz\n',
'acb-tartan-background' => 'https://registry.npmjs.org/@phoenix-plugin-registry/acb-tartan-background/-/acb-tartan-background-1.0.3.tgz\n',
'acb-bootswatch-theme-picker' => 'https://registry.npmjs.org/@phoenix-plugin-registry/acb-bootswatch-theme-picker/-/acb-bootswatch-theme-picker-1.0.4.tgz\n',
'color.pal' => 'https://registry.npmjs.org/@phoenix-plugin-registry/color.pal/-/color.pal-1.0.1.tgz\n',
'acb-new-bootstrap-page' => 'https://registry.npmjs.org/@phoenix-plugin-registry/acb-new-bootstrap-page/-/acb-new-bootstrap-page-1.0.0.tgz\n',
'cis-3238.contextual.hints' => 'https://registry.npmjs.org/@phoenix-plugin-registry/cis-3238.contextual.hints/-/cis-3238.contextual.hints-1.0.0.tgz\n',
'brackets-synapse' => 'https://registry.npmjs.org/@phoenix-plugin-registry/brackets-synapse/-/brackets-synapse-1.2.90.tgz\n',
'brackets-modo-markup' => 'https://registry.npmjs.org/@phoenix-plugin-registry/brackets-modo-markup/-/brackets-modo-markup-1.0.0.tgz\n',
'idleberg.hopscotch' => 'https://registry.npmjs.org/@phoenix-plugin-registry/idleberg.hopscotch/-/idleberg.hopscotch-1.1.3.tgz\n',
'idleberg.nsis-mode' => 'https://registry.npmjs.org/@phoenix-plugin-registry/idleberg.nsis-mode/-/idleberg.nsis-mode-0.9.0.tgz\n',
'ronniedutta.convergent' => 'https://registry.npmjs.org/@phoenix-plugin-registry/ronniedutta.convergent/-/ronniedutta.convergent-1.0.0.tgz\n',
'sdonalcreative.brackets-dust-js' => 'https://registry.npmjs.org/@phoenix-plugin-registry/sdonalcreative.brackets-dust-js/-/sdonalcreative.brackets-dust-js-0.2.0.tgz\n',
'rolson.fallout' => 'https://registry.npmjs.org/@phoenix-plugin-registry/rolson.fallout/-/rolson.fallout-1.0.0.tgz\n',
'new-sun' => 'https://registry.npmjs.org/@phoenix-plugin-registry/new-sun/-/new-sun-1.0.3.tgz\n',
'rolson.orangepeel' => 'https://registry.npmjs.org/@phoenix-plugin-registry/rolson.orangepeel/-/rolson.orangepeel-1.0.0.tgz\n',
'phoenix3008.stylus-autocompile' => 'https://registry.npmjs.org/@phoenix-plugin-registry/phoenix3008.stylus-autocompile/-/phoenix3008.stylus-autocompile-1.0.1.tgz\n',
'itbaby.brackets-expand-selection-to-quotes' => 'https://registry.npmjs.org/@phoenix-plugin-registry/itbaby.brackets-expand-selection-to-quotes/-/itbaby.brackets-expand-selection-to-quotes-1.0.0.tgz\n',
'ssebs.hacker-theme' => 'https://registry.npmjs.org/@phoenix-plugin-registry/ssebs.hacker-theme/-/ssebs.hacker-theme-1.0.0.tgz\n',
'pflynn.github-utils' => 'https://registry.npmjs.org/@phoenix-plugin-registry/pflynn.github-utils/-/pflynn.github-utils-1.0.0.tgz\n',
'theresnobox.brackets.ruby' => 'https://registry.npmjs.org/@phoenix-plugin-registry/theresnobox.brackets.ruby/-/theresnobox.brackets.ruby-1.0.1.tgz\n',
'tansidian-theme' => 'https://registry.npmjs.org/@phoenix-plugin-registry/tansidian-theme/-/tansidian-theme-1.0.1.tgz\n',
'in3etween.show-whitespace-ja' => 'https://registry.npmjs.org/@phoenix-plugin-registry/in3etween.show-whitespace-ja/-/in3etween.show-whitespace-ja-1.0.3.tgz\n',
'editor-line-style' => 'https://registry.npmjs.org/@phoenix-plugin-registry/editor-line-style/-/editor-line-style-0.0.0.tgz\n',
'brackets-html5codehints-plus-3f-templates' => 'https://registry.npmjs.org/@phoenix-plugin-registry/brackets-html5codehints-plus-3f-templates/-/brackets-html5codehints-plus-3f-templates-1.0.1.tgz\n',
'dnbard.raml' => 'https://registry.npmjs.org/@phoenix-plugin-registry/dnbard.raml/-/dnbard.raml-0.2.0.tgz\n',
'gcode-syntax-highlighter' => 'https://registry.npmjs.org/@phoenix-plugin-registry/gcode-syntax-highlighter/-/gcode-syntax-highlighter-0.1.0.tgz\n',
'brackets-brix' => 'https://registry.npmjs.org/@phoenix-plugin-registry/brackets-brix/-/brackets-brix-1.3.0.tgz\n',
'hakoiko-syntax-theme' => 'https://registry.npmjs.org/@phoenix-plugin-registry/hakoiko-syntax-theme/-/hakoiko-syntax-theme-1.0.0.tgz\n',
'default-dark' => 'https://registry.npmjs.org/@phoenix-plugin-registry/default-dark/-/default-dark-2.0.0.tgz\n',
'zahid_wakeel.plasma-light' => 'https://registry.npmjs.org/@phoenix-plugin-registry/zahid_wakeel.plasma-light/-/zahid_wakeel.plasma-light-1.0.0.tgz\n',
'true-tomorrow' => 'https://registry.npmjs.org/@phoenix-plugin-registry/true-tomorrow/-/true-tomorrow-1.2.0.tgz\n',
'shairf-new-jqeury' => 'https://registry.npmjs.org/@phoenix-plugin-registry/shairf-new-jqeury/-/shairf-new-jqeury-1.1.1.tgz\n',
'new-moon-themes' => 'https://registry.npmjs.org/@phoenix-plugin-registry/new-moon-themes/-/new-moon-themes-1.0.0.tgz\n',
'otterpus.flotsam' => 'https://registry.npmjs.org/@phoenix-plugin-registry/otterpus.flotsam/-/otterpus.flotsam-1.0.0.tgz\n',
'lee-and-dan.osftp' => 'https://registry.npmjs.org/@phoenix-plugin-registry/lee-and-dan.osftp/-/lee-and-dan.osftp-1.2.10.tgz\n',
'select-tag-contents' => 'https://registry.npmjs.org/@phoenix-plugin-registry/select-tag-contents/-/select-tag-contents-1.0.3.tgz\n',
'bvermeule.brackets-devicons' => 'https://registry.npmjs.org/@phoenix-plugin-registry/bvermeule.brackets-devicons/-/bvermeule.brackets-devicons-1.0.0.tgz\n',
'shally.kate.theme' => 'https://registry.npmjs.org/@phoenix-plugin-registry/shally.kate.theme/-/shally.kate.theme-0.1.0.tgz\n',
'soy_for_brackets' => 'https://registry.npmjs.org/@phoenix-plugin-registry/soy_for_brackets/-/soy_for_brackets-1.0.1.tgz\n',
'acb-gimepix-placeholder' => 'https://registry.npmjs.org/@phoenix-plugin-registry/acb-gimepix-placeholder/-/acb-gimepix-placeholder-1.0.0.tgz\n',
'helloworld' => 'https://registry.npmjs.org/@phoenix-plugin-registry/helloworld/-/helloworld-0.0.1.tgz\n',
'charcoaltheme' => 'https://registry.npmjs.org/@phoenix-plugin-registry/charcoaltheme/-/charcoaltheme-1.0.0.tgz\n',
'juice-theme' => 'https://registry.npmjs.org/@phoenix-plugin-registry/juice-theme/-/juice-theme-0.1.3.tgz\n',
'brackets-highlight-multibyte-symbols' => 'https://registry.npmjs.org/@phoenix-plugin-registry/brackets-highlight-multibyte-symbols/-/brackets-highlight-multibyte-symbols-1.0.1.tgz\n',
'brackets-meteor' => 'https://registry.npmjs.org/@phoenix-plugin-registry/brackets-meteor/-/brackets-meteor-0.3.0.tgz\n',
'fdecampredon.brackets-eslint' => 'https://registry.npmjs.org/@phoenix-plugin-registry/fdecampredon.brackets-eslint/-/fdecampredon.brackets-eslint-0.0.1.tgz\n',
'brackets-yuidoc-ext' => 'https://registry.npmjs.org/@phoenix-plugin-registry/brackets-yuidoc-ext/-/brackets-yuidoc-ext-1.1.0.tgz\n',
'brackets-alignment' => 'https://registry.npmjs.org/@phoenix-plugin-registry/brackets-alignment/-/brackets-alignment-0.2.0.tgz\n',
'os-x-style-flat-dark-theme' => 'https://registry.npmjs.org/@phoenix-plugin-registry/os-x-style-flat-dark-theme/-/os-x-style-flat-dark-theme-1.0.3.tgz\n',
'codecademy-inspired-dark-theme' => 'https://registry.npmjs.org/@phoenix-plugin-registry/codecademy-inspired-dark-theme/-/codecademy-inspired-dark-theme-1.0.1.tgz\n',
'deep-ocean' => 'https://registry.npmjs.org/@phoenix-plugin-registry/deep-ocean/-/deep-ocean-1.0.2.tgz\n',
'custom-color-highlighter' => 'https://registry.npmjs.org/@phoenix-plugin-registry/custom-color-highlighter/-/custom-color-highlighter-1.0.0.tgz\n',
'one-dark-material-theme' => 'https://registry.npmjs.org/@phoenix-plugin-registry/one-dark-material-theme/-/one-dark-material-theme-1.0.1.tgz\n',
'hacker-theme-v2' => 'https://registry.npmjs.org/@phoenix-plugin-registry/hacker-theme-v2/-/hacker-theme-v2-1.0.3.tgz\n',
'cake' => 'https://registry.npmjs.org/@phoenix-plugin-registry/cake/-/cake-1.0.3.tgz\n',
'phonegapspain' => 'https://registry.npmjs.org/@phoenix-plugin-registry/phonegapspain/-/phonegapspain-0.0.2.tgz\n',
'recogneyes.recogneyes-dark-attempt' => 'https://registry.npmjs.org/@phoenix-plugin-registry/recogneyes.recogneyes-dark-attempt/-/recogneyes.recogneyes-dark-attempt-1.0.0.tgz\n',
'equals182.brackets-power-mode' => 'https://registry.npmjs.org/@phoenix-plugin-registry/equals182.brackets-power-mode/-/equals182.brackets-power-mode-0.0.5.tgz\n',
'brackets-style-fat-arrows' => 'https://registry.npmjs.org/@phoenix-plugin-registry/brackets-style-fat-arrows/-/brackets-style-fat-arrows-0.1.3.tgz\n',
'dark-material-theme-two' => 'https://registry.npmjs.org/@phoenix-plugin-registry/dark-material-theme-two/-/dark-material-theme-two-1.2.0.tgz\n',
'iddan.autobabel' => 'https://registry.npmjs.org/@phoenix-plugin-registry/iddan.autobabel/-/iddan.autobabel-1.0.0.tgz\n',
'mitchellsimoens.file-tree-exclude' => 'https://registry.npmjs.org/@phoenix-plugin-registry/mitchellsimoens.file-tree-exclude/-/mitchellsimoens.file-tree-exclude-1.0.2.tgz\n',
'brackets-builder-extended' => 'https://registry.npmjs.org/@phoenix-plugin-registry/brackets-builder-extended/-/brackets-builder-extended-0.0.6.tgz\n',
'enricodangelo.gruvbox-light-theme' => 'https://registry.npmjs.org/@phoenix-plugin-registry/enricodangelo.gruvbox-light-theme/-/enricodangelo.gruvbox-light-theme-1.0.1.tgz\n',
'enricodangelo.gruvbox-dark-theme' => 'https://registry.npmjs.org/@phoenix-plugin-registry/enricodangelo.gruvbox-dark-theme/-/enricodangelo.gruvbox-dark-theme-1.0.1.tgz\n',
'enricodangelo.base16-3024-light-theme' => 'https://registry.npmjs.org/@phoenix-plugin-registry/enricodangelo.base16-3024-light-theme/-/enricodangelo.base16-3024-light-theme-1.0.1.tgz\n',
'enricodangelo.base16-3024-dark-theme' => 'https://registry.npmjs.org/@phoenix-plugin-registry/enricodangelo.base16-3024-dark-theme/-/enricodangelo.base16-3024-dark-theme-1.0.1.tgz\n',
'enricodangelo.base16-ashes-dark-theme' => 'https://registry.npmjs.org/@phoenix-plugin-registry/enricodangelo.base16-ashes-dark-theme/-/enricodangelo.base16-ashes-dark-theme-1.0.1.tgz\n',
'enricodangelo.base16-ashes-light-theme' => 'https://registry.npmjs.org/@phoenix-plugin-registry/enricodangelo.base16-ashes-light-theme/-/enricodangelo.base16-ashes-light-theme-1.0.1.tgz\n',
'enricodangelo.base16-ateliercave-dark-theme' => 'https://registry.npmjs.org/@phoenix-plugin-registry/enricodangelo.base16-ateliercave-dark-theme/-/enricodangelo.base16-ateliercave-dark-theme-1.0.1.tgz\n',
'enricodangelo.base16-ateliercave-light-theme' => 'https://registry.npmjs.org/@phoenix-plugin-registry/enricodangelo.base16-ateliercave-light-theme/-/enricodangelo.base16-ateliercave-light-theme-1.0.1.tgz\n',
'enricodangelo.base16-atelierdune-dark-theme' => 'https://registry.npmjs.org/@phoenix-plugin-registry/enricodangelo.base16-atelierdune-dark-theme/-/enricodangelo.base16-atelierdune-dark-theme-1.0.1.tgz\n',
'enricodangelo.base16-atelierdune-light-theme' => 'https://registry.npmjs.org/@phoenix-plugin-registry/enricodangelo.base16-atelierdune-light-theme/-/enricodangelo.base16-atelierdune-light-theme-1.0.1.tgz\n',
'enricodangelo.base16-atelierestuary-light-theme' => 'https://registry.npmjs.org/@phoenix-plugin-registry/enricodangelo.base16-atelierestuary-light-theme/-/enricodangelo.base16-atelierestuary-light-theme-1.0.1.tgz\n',
'enricodangelo.base16-atelierforest-dark-theme' => 'https://registry.npmjs.org/@phoenix-plugin-registry/enricodangelo.base16-atelierforest-dark-theme/-/enricodangelo.base16-atelierforest-dark-theme-1.0.1.tgz\n',
'enricodangelo.base16-atelierestuary-dark-theme' => 'https://registry.npmjs.org/@phoenix-plugin-registry/enricodangelo.base16-atelierestuary-dark-theme/-/enricodangelo.base16-atelierestuary-dark-theme-1.0.1.tgz\n',
'enricodangelo.base16-atelierheath-dark-theme' => 'https://registry.npmjs.org/@phoenix-plugin-registry/enricodangelo.base16-atelierheath-dark-theme/-/enricodangelo.base16-atelierheath-dark-theme-1.0.1.tgz\n',
'enricodangelo.base16-atelierforest-light-theme' => 'https://registry.npmjs.org/@phoenix-plugin-registry/enricodangelo.base16-atelierforest-light-theme/-/enricodangelo.base16-atelierforest-light-theme-1.0.1.tgz\n',
'enricodangelo.base16-atelierheath-light-theme' => 'https://registry.npmjs.org/@phoenix-plugin-registry/enricodangelo.base16-atelierheath-light-theme/-/enricodangelo.base16-atelierheath-light-theme-1.0.1.tgz\n',
'enricodangelo.base16-atelierlakeside-light-theme' => 'https://registry.npmjs.org/@phoenix-plugin-registry/enricodangelo.base16-atelierlakeside-light-theme/-/enricodangelo.base16-atelierlakeside-light-theme-1.0.1.tgz\n',
'enricodangelo.base16-atelierplateau-dark-theme' => 'https://registry.npmjs.org/@phoenix-plugin-registry/enricodangelo.base16-atelierplateau-dark-theme/-/enricodangelo.base16-atelierplateau-dark-theme-1.0.1.tgz\n',
'enricodangelo.base16-atelierlakeside-dark-theme' => 'https://registry.npmjs.org/@phoenix-plugin-registry/enricodangelo.base16-atelierlakeside-dark-theme/-/enricodangelo.base16-atelierlakeside-dark-theme-1.0.1.tgz\n',
'enricodangelo.base16-atelierplateau-light-theme' => 'https://registry.npmjs.org/@phoenix-plugin-registry/enricodangelo.base16-atelierplateau-light-theme/-/enricodangelo.base16-atelierplateau-light-theme-1.0.1.tgz\n',
'enricodangelo.base16-ateliersavanna-light-theme' => 'https://registry.npmjs.org/@phoenix-plugin-registry/enricodangelo.base16-ateliersavanna-light-theme/-/enricodangelo.base16-ateliersavanna-light-theme-1.0.1.tgz\n',
'enricodangelo.base16-ateliersavanna-dark-theme' => 'https://registry.npmjs.org/@phoenix-plugin-registry/enricodangelo.base16-ateliersavanna-dark-theme/-/enricodangelo.base16-ateliersavanna-dark-theme-1.0.1.tgz\n',
'enricodangelo.base16-atelierseaside-dark-theme' => 'https://registry.npmjs.org/@phoenix-plugin-registry/enricodangelo.base16-atelierseaside-dark-theme/-/enricodangelo.base16-atelierseaside-dark-theme-1.0.1.tgz\n',
'enricodangelo.base16-atelierseaside-light-theme' => 'https://registry.npmjs.org/@phoenix-plugin-registry/enricodangelo.base16-atelierseaside-light-theme/-/enricodangelo.base16-atelierseaside-light-theme-1.0.1.tgz\n',
'enricodangelo.base16-ateliersulphurpool-dark-theme' => 'https://registry.npmjs.org/@phoenix-plugin-registry/enricodangelo.base16-ateliersulphurpool-dark-theme/-/enricodangelo.base16-ateliersulphurpool-dark-theme-1.0.1.tgz\n',
'enricodangelo.base16-ateliersulphurpool-light-theme' => 'https://registry.npmjs.org/@phoenix-plugin-registry/enricodangelo.base16-ateliersulphurpool-light-theme/-/enricodangelo.base16-ateliersulphurpool-light-theme-1.0.1.tgz\n',
'enricodangelo.base16-bespin-dark-theme' => 'https://registry.npmjs.org/@phoenix-plugin-registry/enricodangelo.base16-bespin-dark-theme/-/enricodangelo.base16-bespin-dark-theme-1.0.1.tgz\n',
'enricodangelo.base16-bright-dark-theme' => 'https://registry.npmjs.org/@phoenix-plugin-registry/enricodangelo.base16-bright-dark-theme/-/enricodangelo.base16-bright-dark-theme-1.0.1.tgz\n',
'enricodangelo.base16-bright-light-theme' => 'https://registry.npmjs.org/@phoenix-plugin-registry/enricodangelo.base16-bright-light-theme/-/enricodangelo.base16-bright-light-theme-1.0.1.tgz\n',
'enricodangelo.base16-chalk-dark-theme' => 'https://registry.npmjs.org/@phoenix-plugin-registry/enricodangelo.base16-chalk-dark-theme/-/enricodangelo.base16-chalk-dark-theme-1.0.1.tgz\n',
'enricodangelo.base16-bespin-light-theme' => 'https://registry.npmjs.org/@phoenix-plugin-registry/enricodangelo.base16-bespin-light-theme/-/enricodangelo.base16-bespin-light-theme-1.0.1.tgz\n',
'enricodangelo.base16-chalk-light-theme' => 'https://registry.npmjs.org/@phoenix-plugin-registry/enricodangelo.base16-chalk-light-theme/-/enricodangelo.base16-chalk-light-theme-1.0.1.tgz\n',
'enricodangelo.base16-default-dark-theme' => 'https://registry.npmjs.org/@phoenix-plugin-registry/enricodangelo.base16-default-dark-theme/-/enricodangelo.base16-default-dark-theme-1.0.1.tgz\n',
'enricodangelo.base16-default-light-theme' => 'https://registry.npmjs.org/@phoenix-plugin-registry/enricodangelo.base16-default-light-theme/-/enricodangelo.base16-default-light-theme-1.0.1.tgz\n',
'enricodangelo.base16-eighties-dark-theme' => 'https://registry.npmjs.org/@phoenix-plugin-registry/enricodangelo.base16-eighties-dark-theme/-/enricodangelo.base16-eighties-dark-theme-1.0.1.tgz\n',
'enricodangelo.base16-eighties-light-theme' => 'https://registry.npmjs.org/@phoenix-plugin-registry/enricodangelo.base16-eighties-light-theme/-/enricodangelo.base16-eighties-light-theme-1.0.1.tgz\n',
'enricodangelo.base16-flat-dark-theme' => 'https://registry.npmjs.org/@phoenix-plugin-registry/enricodangelo.base16-flat-dark-theme/-/enricodangelo.base16-flat-dark-theme-1.0.1.tgz\n',
'enricodangelo.base16-grayscale-dark-theme' => 'https://registry.npmjs.org/@phoenix-plugin-registry/enricodangelo.base16-grayscale-dark-theme/-/enricodangelo.base16-grayscale-dark-theme-1.0.1.tgz\n',
'enricodangelo.base16-flat-light-theme' => 'https://registry.npmjs.org/@phoenix-plugin-registry/enricodangelo.base16-flat-light-theme/-/enricodangelo.base16-flat-light-theme-1.0.1.tgz\n',
'enricodangelo.base16-grayscale-light-theme' => 'https://registry.npmjs.org/@phoenix-plugin-registry/enricodangelo.base16-grayscale-light-theme/-/enricodangelo.base16-grayscale-light-theme-1.0.1.tgz\n',
'enricodangelo.base16-greenscreen-dark-theme' => 'https://registry.npmjs.org/@phoenix-plugin-registry/enricodangelo.base16-greenscreen-dark-theme/-/enricodangelo.base16-greenscreen-dark-theme-1.0.1.tgz\n',
'enricodangelo.base16-greenscreen-light-theme' => 'https://registry.npmjs.org/@phoenix-plugin-registry/enricodangelo.base16-greenscreen-light-theme/-/enricodangelo.base16-greenscreen-light-theme-1.0.1.tgz\n',
'enricodangelo.base16-isotope-dark-theme' => 'https://registry.npmjs.org/@phoenix-plugin-registry/enricodangelo.base16-isotope-dark-theme/-/enricodangelo.base16-isotope-dark-theme-1.0.1.tgz\n',
'enricodangelo.base16-isotope-light-theme' => 'https://registry.npmjs.org/@phoenix-plugin-registry/enricodangelo.base16-isotope-light-theme/-/enricodangelo.base16-isotope-light-theme-1.0.1.tgz\n',
'enricodangelo.base16-londontube-dark-theme' => 'https://registry.npmjs.org/@phoenix-plugin-registry/enricodangelo.base16-londontube-dark-theme/-/enricodangelo.base16-londontube-dark-theme-1.0.1.tgz\n',
'enricodangelo.base16-londontube-light-theme' => 'https://registry.npmjs.org/@phoenix-plugin-registry/enricodangelo.base16-londontube-light-theme/-/enricodangelo.base16-londontube-light-theme-1.0.1.tgz\n',
'enricodangelo.base16-marrakesh-light-theme' => 'https://registry.npmjs.org/@phoenix-plugin-registry/enricodangelo.base16-marrakesh-light-theme/-/enricodangelo.base16-marrakesh-light-theme-1.0.1.tgz\n',
'enricodangelo.base16-marrakesh-dark-theme' => 'https://registry.npmjs.org/@phoenix-plugin-registry/enricodangelo.base16-marrakesh-dark-theme/-/enricodangelo.base16-marrakesh-dark-theme-1.0.1.tgz\n',
'enricodangelo.base16-mocha-dark-theme' => 'https://registry.npmjs.org/@phoenix-plugin-registry/enricodangelo.base16-mocha-dark-theme/-/enricodangelo.base16-mocha-dark-theme-1.0.1.tgz\n',
'enricodangelo.base16-mocha-light-theme' => 'https://registry.npmjs.org/@phoenix-plugin-registry/enricodangelo.base16-mocha-light-theme/-/enricodangelo.base16-mocha-light-theme-1.0.1.tgz\n',
'enricodangelo.base16-monokai-dark-theme' => 'https://registry.npmjs.org/@phoenix-plugin-registry/enricodangelo.base16-monokai-dark-theme/-/enricodangelo.base16-monokai-dark-theme-1.0.1.tgz\n',
'enricodangelo.base16-monokai-light-theme' => 'https://registry.npmjs.org/@phoenix-plugin-registry/enricodangelo.base16-monokai-light-theme/-/enricodangelo.base16-monokai-light-theme-1.0.1.tgz\n',
'enricodangelo.base16-ocean-dark-theme' => 'https://registry.npmjs.org/@phoenix-plugin-registry/enricodangelo.base16-ocean-dark-theme/-/enricodangelo.base16-ocean-dark-theme-1.0.1.tgz\n',
'enricodangelo.base16-paraiso-dark-theme' => 'https://registry.npmjs.org/@phoenix-plugin-registry/enricodangelo.base16-paraiso-dark-theme/-/enricodangelo.base16-paraiso-dark-theme-1.0.1.tgz\n',
'enricodangelo.base16-ocean-light-theme' => 'https://registry.npmjs.org/@phoenix-plugin-registry/enricodangelo.base16-ocean-light-theme/-/enricodangelo.base16-ocean-light-theme-1.0.1.tgz\n',
'enricodangelo.base16-paraiso-light-theme' => 'https://registry.npmjs.org/@phoenix-plugin-registry/enricodangelo.base16-paraiso-light-theme/-/enricodangelo.base16-paraiso-light-theme-1.0.1.tgz\n',
'enricodangelo.base16-pop-dark-theme' => 'https://registry.npmjs.org/@phoenix-plugin-registry/enricodangelo.base16-pop-dark-theme/-/enricodangelo.base16-pop-dark-theme-1.0.1.tgz\n',
'enricodangelo.base16-pop-light-theme' => 'https://registry.npmjs.org/@phoenix-plugin-registry/enricodangelo.base16-pop-light-theme/-/enricodangelo.base16-pop-light-theme-1.0.1.tgz\n',
'enricodangelo.base16-railscasts-dark-theme' => 'https://registry.npmjs.org/@phoenix-plugin-registry/enricodangelo.base16-railscasts-dark-theme/-/enricodangelo.base16-railscasts-dark-theme-1.0.1.tgz\n',
'enricodangelo.base16-railscasts-light-theme' => 'https://registry.npmjs.org/@phoenix-plugin-registry/enricodangelo.base16-railscasts-light-theme/-/enricodangelo.base16-railscasts-light-theme-1.0.1.tgz\n',
'enricodangelo.base16-shapeshifter-dark-theme' => 'https://registry.npmjs.org/@phoenix-plugin-registry/enricodangelo.base16-shapeshifter-dark-theme/-/enricodangelo.base16-shapeshifter-dark-theme-1.0.1.tgz\n',
'enricodangelo.base16-shapeshifter-light-theme' => 'https://registry.npmjs.org/@phoenix-plugin-registry/enricodangelo.base16-shapeshifter-light-theme/-/enricodangelo.base16-shapeshifter-light-theme-1.0.1.tgz\n',
'enricodangelo.base16-solarized-dark-theme' => 'https://registry.npmjs.org/@phoenix-plugin-registry/enricodangelo.base16-solarized-dark-theme/-/enricodangelo.base16-solarized-dark-theme-1.0.1.tgz\n',
'enricodangelo.base16-solarized-light-theme' => 'https://registry.npmjs.org/@phoenix-plugin-registry/enricodangelo.base16-solarized-light-theme/-/enricodangelo.base16-solarized-light-theme-1.0.1.tgz\n',
'enricodangelo.base16-tomorrow-dark-theme' => 'https://registry.npmjs.org/@phoenix-plugin-registry/enricodangelo.base16-tomorrow-dark-theme/-/enricodangelo.base16-tomorrow-dark-theme-1.0.1.tgz\n',
'enricodangelo.base16-tomorrow-light-theme' => 'https://registry.npmjs.org/@phoenix-plugin-registry/enricodangelo.base16-tomorrow-light-theme/-/enricodangelo.base16-tomorrow-light-theme-1.0.1.tgz\n',
'enricodangelo.base16-twilight-light-theme' => 'https://registry.npmjs.org/@phoenix-plugin-registry/enricodangelo.base16-twilight-light-theme/-/enricodangelo.base16-twilight-light-theme-1.0.1.tgz\n',
'enricodangelo.base16-twilight-dark-theme' => 'https://registry.npmjs.org/@phoenix-plugin-registry/enricodangelo.base16-twilight-dark-theme/-/enricodangelo.base16-twilight-dark-theme-1.0.1.tgz\n',
'albertinad.open-as-project' => 'https://registry.npmjs.org/@phoenix-plugin-registry/albertinad.open-as-project/-/albertinad.open-as-project-0.0.1.tgz\n',
'akash.first-theme' => 'https://registry.npmjs.org/@phoenix-plugin-registry/akash.first-theme/-/akash.first-theme-1.0.1.tgz\n',
'akash.rainbow' => 'https://registry.npmjs.org/@phoenix-plugin-registry/akash.rainbow/-/akash.rainbow-1.0.2.tgz\n',
'icarus-theme' => 'https://registry.npmjs.org/@phoenix-plugin-registry/icarus-theme/-/icarus-theme-1.0.1.tgz\n',
'moonstalk' => 'https://registry.npmjs.org/@phoenix-plugin-registry/moonstalk/-/moonstalk-0.1.0.tgz\n',
'react-jsx' => 'https://registry.npmjs.org/@phoenix-plugin-registry/react-jsx/-/react-jsx-1.0.2.tgz\n',
'brackets.vue' => 'https://registry.npmjs.org/@phoenix-plugin-registry/brackets.vue/-/brackets.vue-0.1.0.tgz\n',
'verilog' => 'https://registry.npmjs.org/@phoenix-plugin-registry/verilog/-/verilog-1.0.0.tgz\n',
'pug' => 'https://registry.npmjs.org/@phoenix-plugin-registry/pug/-/pug-2.0.0.tgz\n',
'jamezsoftware.licenseheader' => 'https://registry.npmjs.org/@phoenix-plugin-registry/jamezsoftware.licenseheader/-/jamezsoftware.licenseheader-1.0.1.tgz\n',
'eskside_theme' => 'https://registry.npmjs.org/@phoenix-plugin-registry/eskside_theme/-/eskside_theme-1.0.0.tgz\n',
'newject.generator' => 'https://registry.npmjs.org/@phoenix-plugin-registry/newject.generator/-/newject.generator-1.1.0.tgz\n',
'pflynn.string-finder' => 'https://registry.npmjs.org/@phoenix-plugin-registry/pflynn.string-finder/-/pflynn.string-finder-1.0.1.tgz\n',
'dimoffx.kitten-cat-gifs' => 'https://registry.npmjs.org/@phoenix-plugin-registry/dimoffx.kitten-cat-gifs/-/dimoffx.kitten-cat-gifs-1.0.2.tgz\n',
'brackets-semicolon-terminator' => 'https://registry.npmjs.org/@phoenix-plugin-registry/brackets-semicolon-terminator/-/brackets-semicolon-terminator-0.9.2.tgz\n',
'ivanrgoliveira.html5generator' => 'https://registry.npmjs.org/@phoenix-plugin-registry/ivanrgoliveira.html5generator/-/ivanrgoliveira.html5generator-1.0.0.tgz\n',
'brackets-sass-lint' => 'https://registry.npmjs.org/@phoenix-plugin-registry/brackets-sass-lint/-/brackets-sass-lint-1.11.1.tgz\n',
'brackets-thymeleaf-code-hint' => 'https://registry.npmjs.org/@phoenix-plugin-registry/brackets-thymeleaf-code-hint/-/brackets-thymeleaf-code-hint-1.0.0.tgz\n',
'firacode-in-brackets' => 'https://registry.npmjs.org/@phoenix-plugin-registry/firacode-in-brackets/-/firacode-in-brackets-1.1.0.tgz\n',
'owlary-theme' => 'https://registry.npmjs.org/@phoenix-plugin-registry/owlary-theme/-/owlary-theme-1.0.0.tgz\n',
'joshuabrady' => 'https://registry.npmjs.org/@phoenix-plugin-registry/joshuabrady/-/joshuabrady-1.0.4.tgz\n',
'saravanan.python-jedi-brackets' => 'https://registry.npmjs.org/@phoenix-plugin-registry/saravanan.python-jedi-brackets/-/saravanan.python-jedi-brackets-0.1.4.tgz\n',
'funky-theme-for-brackets' => 'https://registry.npmjs.org/@phoenix-plugin-registry/funky-theme-for-brackets/-/funky-theme-for-brackets-1.0.0.tgz\n',
'brackets-brackets-matcher' => 'https://registry.npmjs.org/@phoenix-plugin-registry/brackets-brackets-matcher/-/brackets-brackets-matcher-0.4.1.tgz\n',
'monokai-pastel' => 'https://registry.npmjs.org/@phoenix-plugin-registry/monokai-pastel/-/monokai-pastel-1.0.0.tgz\n',
'deepchill' => 'https://registry.npmjs.org/@phoenix-plugin-registry/deepchill/-/deepchill-1.0.0.tgz\n',
'mata' => 'https://registry.npmjs.org/@phoenix-plugin-registry/mata/-/mata-1.0.1.tgz\n',
'briankohles.graphviz-preview' => 'https://registry.npmjs.org/@phoenix-plugin-registry/briankohles.graphviz-preview/-/briankohles.graphviz-preview-1.0.0.tgz\n',
'mansa-light-theme' => 'https://registry.npmjs.org/@phoenix-plugin-registry/mansa-light-theme/-/mansa-light-theme-1.0.0.tgz\n',
'quick.menu.search' => 'https://registry.npmjs.org/@phoenix-plugin-registry/quick.menu.search/-/quick.menu.search-1.0.0.tgz\n',
'asn-clicky' => 'https://registry.npmjs.org/@phoenix-plugin-registry/asn-clicky/-/asn-clicky-1.0.4.tgz\n',
'mips' => 'https://registry.npmjs.org/@phoenix-plugin-registry/mips/-/mips-0.0.4.tgz\n',
'mdonkers.rightclick' => 'https://registry.npmjs.org/@phoenix-plugin-registry/mdonkers.rightclick/-/mdonkers.rightclick-1.0.5.tgz\n',
'mdonkers.brackulator' => 'https://registry.npmjs.org/@phoenix-plugin-registry/mdonkers.brackulator/-/mdonkers.brackulator-1.0.2.tgz\n',
'color-merge' => 'https://registry.npmjs.org/@phoenix-plugin-registry/color-merge/-/color-merge-0.1.0.tgz\n',
'holmar.no-distractions-advanced' => 'https://registry.npmjs.org/@phoenix-plugin-registry/holmar.no-distractions-advanced/-/holmar.no-distractions-advanced-1.0.1.tgz\n',
'notepad_plus_plus_theme' => 'https://registry.npmjs.org/@phoenix-plugin-registry/notepad_plus_plus_theme/-/notepad_plus_plus_theme-6.9.0.tgz\n',
'brackets-json2ts' => 'https://registry.npmjs.org/@phoenix-plugin-registry/brackets-json2ts/-/brackets-json2ts-0.0.6.tgz\n',
'lns.theme-dark' => 'https://registry.npmjs.org/@phoenix-plugin-registry/lns.theme-dark/-/lns.theme-dark-1.0.0.tgz\n',
'swmitra.brackets-touch' => 'https://registry.npmjs.org/@phoenix-plugin-registry/swmitra.brackets-touch/-/swmitra.brackets-touch-1.0.0.tgz\n',
'html_template' => 'https://registry.npmjs.org/@phoenix-plugin-registry/html_template/-/html_template-1.0.1.tgz\n',
'gbiv-theme' => 'https://registry.npmjs.org/@phoenix-plugin-registry/gbiv-theme/-/gbiv-theme-1.0.0.tgz\n',
'material-theme' => 'https://registry.npmjs.org/@phoenix-plugin-registry/material-theme/-/material-theme-1.0.0.tgz\n',
'brackets-mg2-functions-hint' => 'https://registry.npmjs.org/@phoenix-plugin-registry/brackets-mg2-functions-hint/-/brackets-mg2-functions-hint-0.1.0.tgz\n',
'nightshade' => 'https://registry.npmjs.org/@phoenix-plugin-registry/nightshade/-/nightshade-1.0.0.tgz\n',
'greentown' => 'https://registry.npmjs.org/@phoenix-plugin-registry/greentown/-/greentown-1.2.0.tgz\n',
'jakebeamish.todotxt-syntax-highlighting' => 'https://registry.npmjs.org/@phoenix-plugin-registry/jakebeamish.todotxt-syntax-highlighting/-/jakebeamish.todotxt-syntax-highlighting-0.1.1.tgz\n',
'athorcis.brackets-twig' => 'https://registry.npmjs.org/@phoenix-plugin-registry/athorcis.brackets-twig/-/athorcis.brackets-twig-1.1.3.tgz\n',
'greentownedit' => 'https://registry.npmjs.org/@phoenix-plugin-registry/greentownedit/-/greentownedit-1.1.1.tgz\n',
'artline.finess' => 'https://registry.npmjs.org/@phoenix-plugin-registry/artline.finess/-/artline.finess-1.0.0.tgz\n',
'brackets-preferences' => 'https://registry.npmjs.org/@phoenix-plugin-registry/brackets-preferences/-/brackets-preferences-1.0.0.tgz\n',
'brackets-bacon-ipsum' => 'https://registry.npmjs.org/@phoenix-plugin-registry/brackets-bacon-ipsum/-/brackets-bacon-ipsum-1.0.0.tgz\n',
'get-active-file-path' => 'https://registry.npmjs.org/@phoenix-plugin-registry/get-active-file-path/-/get-active-file-path-1.0.0.tgz\n',
'brackets-angular-templates' => 'https://registry.npmjs.org/@phoenix-plugin-registry/brackets-angular-templates/-/brackets-angular-templates-1.1.1.tgz\n',
'dimitrk.exclude-indexing-filetree' => 'https://registry.npmjs.org/@phoenix-plugin-registry/dimitrk.exclude-indexing-filetree/-/dimitrk.exclude-indexing-filetree-1.0.1.tgz\n',
'pranaygp.js-live-debugger' => 'https://registry.npmjs.org/@phoenix-plugin-registry/pranaygp.js-live-debugger/-/pranaygp.js-live-debugger-1.1.0.tgz\n',
'lierop.brackets-cclayout-codehints' => 'https://registry.npmjs.org/@phoenix-plugin-registry/lierop.brackets-cclayout-codehints/-/lierop.brackets-cclayout-codehints-0.1.3.tgz\n',
'brackets-twoscalc' => 'https://registry.npmjs.org/@phoenix-plugin-registry/brackets-twoscalc/-/brackets-twoscalc-0.0.6.tgz\n',
'brackets-menus.manager' => 'https://registry.npmjs.org/@phoenix-plugin-registry/brackets-menus.manager/-/brackets-menus.manager-1.0.5.tgz\n',
'brackets-sql-connector' => 'https://registry.npmjs.org/@phoenix-plugin-registry/brackets-sql-connector/-/brackets-sql-connector-0.6.0.tgz\n',
'pre-written-codes' => 'https://registry.npmjs.org/@phoenix-plugin-registry/pre-written-codes/-/pre-written-codes-1.0.0.tgz\n',
'waffledonkey.jsfiddle-light-theme' => 'https://registry.npmjs.org/@phoenix-plugin-registry/waffledonkey.jsfiddle-light-theme/-/waffledonkey.jsfiddle-light-theme-1.0.2.tgz\n',
'alanhohn.markdown-toolbar' => 'https://registry.npmjs.org/@phoenix-plugin-registry/alanhohn.markdown-toolbar/-/alanhohn.markdown-toolbar-1.2.0.tgz\n',
'alanhohn.mermaid-preview' => 'https://registry.npmjs.org/@phoenix-plugin-registry/alanhohn.mermaid-preview/-/alanhohn.mermaid-preview-1.0.2.tgz\n',
'bguzmanrio.jasmine-autocompleter' => 'https://registry.npmjs.org/@phoenix-plugin-registry/bguzmanrio.jasmine-autocompleter/-/bguzmanrio.jasmine-autocompleter-0.1.0.tgz\n',
'coders-theme' => 'https://registry.npmjs.org/@phoenix-plugin-registry/coders-theme/-/coders-theme-1.0.0.tgz\n',
'brackets-selected-char-count' => 'https://registry.npmjs.org/@phoenix-plugin-registry/brackets-selected-char-count/-/brackets-selected-char-count-1.0.0.tgz\n',
'easy-reader-theme' => 'https://registry.npmjs.org/@phoenix-plugin-registry/easy-reader-theme/-/easy-reader-theme-0.1.0.tgz\n',
'jnvm.brackets-runtime-autocomplete' => 'https://registry.npmjs.org/@phoenix-plugin-registry/jnvm.brackets-runtime-autocomplete/-/jnvm.brackets-runtime-autocomplete-0.0.1.tgz\n',
'refresh-reload.brackets' => 'https://registry.npmjs.org/@phoenix-plugin-registry/refresh-reload.brackets/-/refresh-reload.brackets-1.0.0.tgz\n',
'brackets-nodejs-integration' => 'https://registry.npmjs.org/@phoenix-plugin-registry/brackets-nodejs-integration/-/brackets-nodejs-integration-1.8.17.tgz\n',
'fvp-theme' => 'https://registry.npmjs.org/@phoenix-plugin-registry/fvp-theme/-/fvp-theme-0.0.1.tgz\n',
'brackets-to-photoshop' => 'https://registry.npmjs.org/@phoenix-plugin-registry/brackets-to-photoshop/-/brackets-to-photoshop-0.0.6.tgz\n',
'winslowdibona.unocss' => 'https://registry.npmjs.org/@phoenix-plugin-registry/winslowdibona.unocss/-/winslowdibona.unocss-1.0.0.tgz\n',
'show-tabs' => 'https://registry.npmjs.org/@phoenix-plugin-registry/show-tabs/-/show-tabs-0.0.3.tgz\n',
'open-app' => 'https://registry.npmjs.org/@phoenix-plugin-registry/open-app/-/open-app-0.0.5.tgz\n',
'hide-tabs' => 'https://registry.npmjs.org/@phoenix-plugin-registry/hide-tabs/-/hide-tabs-0.0.1.tgz\n',
'special-b' => 'https://registry.npmjs.org/@phoenix-plugin-registry/special-b/-/special-b-1.0.1.tgz\n',
'side-view' => 'https://registry.npmjs.org/@phoenix-plugin-registry/side-view/-/side-view-0.0.4.tgz\n',
'highlight-element' => 'https://registry.npmjs.org/@phoenix-plugin-registry/highlight-element/-/highlight-element-0.0.6.tgz\n',
'ice-melon' => 'https://registry.npmjs.org/@phoenix-plugin-registry/ice-melon/-/ice-melon-1.0.2.tgz\n',
'nerk.asciidoc-preview' => 'https://registry.npmjs.org/@phoenix-plugin-registry/nerk.asciidoc-preview/-/nerk.asciidoc-preview-2.1.0.tgz\n',
'aaronkenny.rog-dark-theme' => 'https://registry.npmjs.org/@phoenix-plugin-registry/aaronkenny.rog-dark-theme/-/aaronkenny.rog-dark-theme-1.0.0.tgz\n',
'martideans.gcode-highlighter' => 'https://registry.npmjs.org/@phoenix-plugin-registry/martideans.gcode-highlighter/-/martideans.gcode-highlighter-1.0.0.tgz\n',
'new-window' => 'https://registry.npmjs.org/@phoenix-plugin-registry/new-window/-/new-window-0.0.1.tgz\n',
'khrystalz-ui' => 'https://registry.npmjs.org/@phoenix-plugin-registry/khrystalz-ui/-/khrystalz-ui-1.2.0.tgz\n',
'quick-test' => 'https://registry.npmjs.org/@phoenix-plugin-registry/quick-test/-/quick-test-0.0.1.tgz\n',
'ekm.snippets' => 'https://registry.npmjs.org/@phoenix-plugin-registry/ekm.snippets/-/ekm.snippets-1.0.0.tgz\n',
'rainbow' => 'https://registry.npmjs.org/@phoenix-plugin-registry/rainbow/-/rainbow-1.0.0.tgz\n',
'color-focused-theme-master' => 'https://registry.npmjs.org/@phoenix-plugin-registry/color-focused-theme-master/-/color-focused-theme-master-1.0.1.tgz\n',
'bootstrap-4-snippets' => 'https://registry.npmjs.org/@phoenix-plugin-registry/bootstrap-4-snippets/-/bootstrap-4-snippets-0.0.14.tgz\n',
'bootstrap-4-snippets-extension' => 'https://registry.npmjs.org/@phoenix-plugin-registry/bootstrap-4-snippets-extension/-/bootstrap-4-snippets-extension-0.0.14.tgz\n',
'andreasrein.monokai-darker-soda' => 'https://registry.npmjs.org/@phoenix-plugin-registry/andreasrein.monokai-darker-soda/-/andreasrein.monokai-darker-soda-1.0.1.tgz\n',
'firewatch' => 'https://registry.npmjs.org/@phoenix-plugin-registry/firewatch/-/firewatch-1.0.1.tgz\n',
'dakaraphi.project.filefilter' => 'https://registry.npmjs.org/@phoenix-plugin-registry/dakaraphi.project.filefilter/-/dakaraphi.project.filefilter-1.0.1.tgz\n',
'remonbonbon.neon-sign' => 'https://registry.npmjs.org/@phoenix-plugin-registry/remonbonbon.neon-sign/-/remonbonbon.neon-sign-1.0.1.tgz\n',
'abp.abp-half-space' => 'https://registry.npmjs.org/@phoenix-plugin-registry/abp.abp-half-space/-/abp.abp-half-space-1.0.3.tgz\n',
'angular-file-templates' => 'https://registry.npmjs.org/@phoenix-plugin-registry/angular-file-templates/-/angular-file-templates-0.2.7.tgz\n',
'milk-oolong' => 'https://registry.npmjs.org/@phoenix-plugin-registry/milk-oolong/-/milk-oolong-1.0.1.tgz\n',
'daugther.of.obsidian' => 'https://registry.npmjs.org/@phoenix-plugin-registry/daugther.of.obsidian/-/daugther.of.obsidian-1.0.1.tgz\n',
'tomorrow_night_nineties' => 'https://registry.npmjs.org/@phoenix-plugin-registry/tomorrow_night_nineties/-/tomorrow_night_nineties-1.0.0.tgz\n',
'catdad.one-gray' => 'https://registry.npmjs.org/@phoenix-plugin-registry/catdad.one-gray/-/catdad.one-gray-1.0.1.tgz\n',
'io.github.mikankari.multireso' => 'https://registry.npmjs.org/@phoenix-plugin-registry/io.github.mikankari.multireso/-/io.github.mikankari.multireso-1.1.0.tgz\n',
'valkyrie-material-light' => 'https://registry.npmjs.org/@phoenix-plugin-registry/valkyrie-material-light/-/valkyrie-material-light-3.3.3.tgz\n',
'beautify.io' => 'https://registry.npmjs.org/@phoenix-plugin-registry/beautify.io/-/beautify.io-1.2.1.tgz\n',
'stevche.radevski.eyenav' => 'https://registry.npmjs.org/@phoenix-plugin-registry/stevche.radevski.eyenav/-/stevche.radevski.eyenav-1.0.0.tgz\n',
'djsiddz.bootstrap4-snippets' => 'https://registry.npmjs.org/@phoenix-plugin-registry/djsiddz.bootstrap4-snippets/-/djsiddz.bootstrap4-snippets-0.0.2.tgz\n',
'tagdeletion' => 'https://registry.npmjs.org/@phoenix-plugin-registry/tagdeletion/-/tagdeletion-1.2.0.tgz\n',
'jsfire' => 'https://registry.npmjs.org/@phoenix-plugin-registry/jsfire/-/jsfire-1.0.2.tgz\n',
'devlcp.nova-dark' => 'https://registry.npmjs.org/@phoenix-plugin-registry/devlcp.nova-dark/-/devlcp.nova-dark-0.5.0.tgz\n',
'artline.finess.new' => 'https://registry.npmjs.org/@phoenix-plugin-registry/artline.finess.new/-/artline.finess.new-1.0.0.tgz\n',
'modern-legacy' => 'https://registry.npmjs.org/@phoenix-plugin-registry/modern-legacy/-/modern-legacy-1.0.1.tgz\n',
'sa.untitled-language' => 'https://registry.npmjs.org/@phoenix-plugin-registry/sa.untitled-language/-/sa.untitled-language-0.0.1.tgz\n',
'artemsolovev.anode' => 'https://registry.npmjs.org/@phoenix-plugin-registry/artemsolovev.anode/-/artemsolovev.anode-2.0.0.tgz\n',
'changing-tags' => 'https://registry.npmjs.org/@phoenix-plugin-registry/changing-tags/-/changing-tags-1.0.2.tgz\n',
'konkantheme' => 'https://registry.npmjs.org/@phoenix-plugin-registry/konkantheme/-/konkantheme-1.0.0.tgz\n',
'brucecantarim.focus' => 'https://registry.npmjs.org/@phoenix-plugin-registry/brucecantarim.focus/-/brucecantarim.focus-1.0.0.tgz\n',
'codemonkey_theme' => 'https://registry.npmjs.org/@phoenix-plugin-registry/codemonkey_theme/-/codemonkey_theme-0.0.1.tgz\n',
'usulpro.contrast-scrollbar' => 'https://registry.npmjs.org/@phoenix-plugin-registry/usulpro.contrast-scrollbar/-/usulpro.contrast-scrollbar-1.0.0.tgz\n',
'alemonteiro.brackets-move-files' => 'https://registry.npmjs.org/@phoenix-plugin-registry/alemonteiro.brackets-move-files/-/alemonteiro.brackets-move-files-0.2.0.tgz\n',
'tommot348.elm' => 'https://registry.npmjs.org/@phoenix-plugin-registry/tommot348.elm/-/tommot348.elm-2.1.1.tgz\n',
'104yuki.wwicon' => 'https://registry.npmjs.org/@phoenix-plugin-registry/104yuki.wwicon/-/104yuki.wwicon-1.0.1.tgz\n',
'clean-brazil' => 'https://registry.npmjs.org/@phoenix-plugin-registry/clean-brazil/-/clean-brazil-1.0.2.tgz\n',
'ruby-flash-dark' => 'https://registry.npmjs.org/@phoenix-plugin-registry/ruby-flash-dark/-/ruby-flash-dark-1.0.1.tgz\n',
'brackets-typescript' => 'https://registry.npmjs.org/@phoenix-plugin-registry/brackets-typescript/-/brackets-typescript-1.1.0.tgz\n',
'jrkd.html-breadcrumbs' => 'https://registry.npmjs.org/@phoenix-plugin-registry/jrkd.html-breadcrumbs/-/jrkd.html-breadcrumbs-0.0.1.tgz\n',
'crt-green' => 'https://registry.npmjs.org/@phoenix-plugin-registry/crt-green/-/crt-green-0.1.0.tgz\n',