-
Notifications
You must be signed in to change notification settings - Fork 0
/
codekit-config.json
2838 lines (2837 loc) · 119 KB
/
codekit-config.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"CodeKitInfo" : "This is a CodeKit project configuration file. It is designed to sync project settings across multiple machines. Modifying the contents of this file can be a poor life decision if you don't know what you're doing. This file is not useful unless accompanied by the project that created it in CodeKit. For more information, see: http:\/\/incident57.com\/codekit",
"creatorBuild" : "7839",
"files" : {
"\/css\/font-awesome.css" : {
"ignoreWasSetByUser" : 0,
"ignore" : 1,
"hidden" : 0,
"outputPathIsSetByUser" : 0,
"inputAbbreviatedPath" : "\/css\/font-awesome.css",
"outputAbbreviatedPath" : "No Output Path",
"fileType" : 16
},
"\/sjs\/hash_table.js" : {
"ignoreWasSetByUser" : 0,
"ignore" : 0,
"hidden" : 0,
"outputPathIsSetByUser" : 0,
"inputAbbreviatedPath" : "\/sjs\/hash_table.js",
"outputStyle" : 1,
"syntaxCheckerStyle" : 1,
"outputAbbreviatedPath" : "\/js\/hash_table-ck.js",
"fileType" : 64
},
"\/node_modules\/express\/node_modules\/mkdirp\/test\/perm_sync.js" : {
"ignoreWasSetByUser" : 0,
"ignore" : 0,
"hidden" : 0,
"outputPathIsSetByUser" : 0,
"inputAbbreviatedPath" : "\/node_modules\/express\/node_modules\/mkdirp\/test\/perm_sync.js",
"outputStyle" : 1,
"syntaxCheckerStyle" : 1,
"outputAbbreviatedPath" : "\/node_modules\/express\/node_modules\/mkdirp\/js\/perm_sync-ck.js",
"fileType" : 64
},
"\/node_modules\/express\/node_modules\/connect\/node_modules\/formidable\/lib\/querystring_parser.js" : {
"ignoreWasSetByUser" : 0,
"ignore" : 0,
"hidden" : 0,
"outputPathIsSetByUser" : 0,
"inputAbbreviatedPath" : "\/node_modules\/express\/node_modules\/connect\/node_modules\/formidable\/lib\/querystring_parser.js",
"outputStyle" : 1,
"syntaxCheckerStyle" : 1,
"outputAbbreviatedPath" : "\/node_modules\/express\/node_modules\/connect\/node_modules\/formidable\/js\/querystring_parser-ck.js",
"fileType" : 64
},
"\/node_modules\/express\/node_modules\/connect\/lib\/public\/icons\/page_white_text.png" : {
"ignoreWasSetByUser" : 0,
"ignore" : 0,
"hidden" : 0,
"outputPathIsSetByUser" : 0,
"inputAbbreviatedPath" : "\/node_modules\/express\/node_modules\/connect\/lib\/public\/icons\/page_white_text.png",
"processed" : 1,
"outputAbbreviatedPath" : "\/node_modules\/express\/node_modules\/connect\/lib\/public\/icons\/page_white_text.png",
"initialSize" : 342,
"fileType" : 8192
},
"\/node_modules\/express\/node_modules\/connect\/lib\/public\/icons\/page_white_paint.png" : {
"ignoreWasSetByUser" : 0,
"ignore" : 0,
"hidden" : 0,
"outputPathIsSetByUser" : 0,
"inputAbbreviatedPath" : "\/node_modules\/express\/node_modules\/connect\/lib\/public\/icons\/page_white_paint.png",
"processed" : 1,
"outputAbbreviatedPath" : "\/node_modules\/express\/node_modules\/connect\/lib\/public\/icons\/page_white_paint.png",
"initialSize" : 688,
"fileType" : 8192
},
"\/node_modules\/express\/node_modules\/connect\/lib\/public\/icons\/page_white_go.png" : {
"ignoreWasSetByUser" : 0,
"ignore" : 0,
"hidden" : 0,
"outputPathIsSetByUser" : 0,
"inputAbbreviatedPath" : "\/node_modules\/express\/node_modules\/connect\/lib\/public\/icons\/page_white_go.png",
"processed" : 1,
"outputAbbreviatedPath" : "\/node_modules\/express\/node_modules\/connect\/lib\/public\/icons\/page_white_go.png",
"initialSize" : 612,
"fileType" : 8192
},
"\/node_modules\/express\/node_modules\/connect\/node_modules\/formidable\/node-gently\/index.js" : {
"ignoreWasSetByUser" : 0,
"ignore" : 0,
"hidden" : 0,
"outputPathIsSetByUser" : 0,
"inputAbbreviatedPath" : "\/node_modules\/express\/node_modules\/connect\/node_modules\/formidable\/node-gently\/index.js",
"outputStyle" : 1,
"syntaxCheckerStyle" : 1,
"outputAbbreviatedPath" : "\/node_modules\/express\/node_modules\/connect\/node_modules\/formidable\/js\/index-ck.js",
"fileType" : 64
},
"\/node_modules\/express\/node_modules\/connect\/lib\/public\/icons\/page_white_find.png" : {
"ignoreWasSetByUser" : 0,
"ignore" : 0,
"hidden" : 0,
"outputPathIsSetByUser" : 0,
"inputAbbreviatedPath" : "\/node_modules\/express\/node_modules\/connect\/lib\/public\/icons\/page_white_find.png",
"processed" : 1,
"outputAbbreviatedPath" : "\/node_modules\/express\/node_modules\/connect\/lib\/public\/icons\/page_white_find.png",
"initialSize" : 676,
"fileType" : 8192
},
"\/node_modules\/express\/node_modules\/mkdirp\/examples\/pow.js" : {
"ignoreWasSetByUser" : 0,
"ignore" : 0,
"hidden" : 0,
"outputPathIsSetByUser" : 0,
"inputAbbreviatedPath" : "\/node_modules\/express\/node_modules\/mkdirp\/examples\/pow.js",
"outputStyle" : 1,
"syntaxCheckerStyle" : 1,
"outputAbbreviatedPath" : "\/node_modules\/express\/node_modules\/mkdirp\/js\/pow-ck.js",
"fileType" : 64
},
"\/node_modules\/express\/node_modules\/connect\/lib\/middleware\/errorHandler.js" : {
"ignoreWasSetByUser" : 0,
"ignore" : 0,
"hidden" : 0,
"outputPathIsSetByUser" : 0,
"inputAbbreviatedPath" : "\/node_modules\/express\/node_modules\/connect\/lib\/middleware\/errorHandler.js",
"outputStyle" : 1,
"syntaxCheckerStyle" : 1,
"outputAbbreviatedPath" : "\/node_modules\/express\/node_modules\/connect\/lib\/js\/errorHandler-ck.js",
"fileType" : 64
},
"\/node_modules\/express\/lib\/view.js" : {
"ignoreWasSetByUser" : 0,
"ignore" : 0,
"hidden" : 0,
"outputPathIsSetByUser" : 0,
"inputAbbreviatedPath" : "\/node_modules\/express\/lib\/view.js",
"outputStyle" : 1,
"syntaxCheckerStyle" : 1,
"outputAbbreviatedPath" : "\/node_modules\/express\/js\/view-ck.js",
"fileType" : 64
},
"\/node_modules\/express\/node_modules\/connect\/lib\/public\/icons\/page_white_database.png" : {
"ignoreWasSetByUser" : 0,
"ignore" : 0,
"hidden" : 0,
"outputPathIsSetByUser" : 0,
"inputAbbreviatedPath" : "\/node_modules\/express\/node_modules\/connect\/lib\/public\/icons\/page_white_database.png",
"processed" : 1,
"outputAbbreviatedPath" : "\/node_modules\/express\/node_modules\/connect\/lib\/public\/icons\/page_white_database.png",
"initialSize" : 579,
"fileType" : 8192
},
"\/scss\/_mixins.scss" : {
"ignoreWasSetByUser" : 0,
"ignore" : 1,
"hidden" : 0,
"outputPathIsSetByUser" : 0,
"inputAbbreviatedPath" : "\/scss\/_mixins.scss",
"outputStyle" : 3,
"shouldRunBless" : 0,
"outputAbbreviatedPath" : "\/css\/_mixins.css",
"fileType" : 4,
"debugStyle" : 0
},
"\/node_modules\/express\/node_modules\/cookie\/test\/serialize.js" : {
"ignoreWasSetByUser" : 0,
"ignore" : 0,
"hidden" : 0,
"outputPathIsSetByUser" : 0,
"inputAbbreviatedPath" : "\/node_modules\/express\/node_modules\/cookie\/test\/serialize.js",
"outputStyle" : 1,
"syntaxCheckerStyle" : 1,
"outputAbbreviatedPath" : "\/node_modules\/express\/node_modules\/cookie\/js\/serialize-ck.js",
"fileType" : 64
},
"\/sjs\/controller.js" : {
"ignoreWasSetByUser" : 0,
"ignore" : 0,
"hidden" : 0,
"outputPathIsSetByUser" : 0,
"inputAbbreviatedPath" : "\/sjs\/controller.js",
"outputStyle" : 1,
"syntaxCheckerStyle" : 1,
"outputAbbreviatedPath" : "\/js\/controller-ck.js",
"fileType" : 64
},
"\/node_modules\/express\/node_modules\/connect\/lib\/public\/icons\/page_white_add.png" : {
"ignoreWasSetByUser" : 0,
"ignore" : 0,
"hidden" : 0,
"outputPathIsSetByUser" : 0,
"inputAbbreviatedPath" : "\/node_modules\/express\/node_modules\/connect\/lib\/public\/icons\/page_white_add.png",
"processed" : 1,
"outputAbbreviatedPath" : "\/node_modules\/express\/node_modules\/connect\/lib\/public\/icons\/page_white_add.png",
"initialSize" : 512,
"fileType" : 8192
},
"\/sjs\/util.js" : {
"ignoreWasSetByUser" : 0,
"ignore" : 0,
"hidden" : 0,
"outputPathIsSetByUser" : 0,
"inputAbbreviatedPath" : "\/sjs\/util.js",
"outputStyle" : 1,
"syntaxCheckerStyle" : 1,
"outputAbbreviatedPath" : "\/js\/util-ck.js",
"fileType" : 64
},
"\/node_modules\/express\/node_modules\/connect\/node_modules\/formidable\/example\/post.js" : {
"ignoreWasSetByUser" : 0,
"ignore" : 0,
"hidden" : 0,
"outputPathIsSetByUser" : 0,
"inputAbbreviatedPath" : "\/node_modules\/express\/node_modules\/connect\/node_modules\/formidable\/example\/post.js",
"outputStyle" : 1,
"syntaxCheckerStyle" : 1,
"outputAbbreviatedPath" : "\/node_modules\/express\/node_modules\/connect\/node_modules\/formidable\/js\/post-ck.js",
"fileType" : 64
},
"\/node_modules\/express\/node_modules\/connect\/node_modules\/formidable\/lib\/util.js" : {
"ignoreWasSetByUser" : 0,
"ignore" : 0,
"hidden" : 0,
"outputPathIsSetByUser" : 0,
"inputAbbreviatedPath" : "\/node_modules\/express\/node_modules\/connect\/node_modules\/formidable\/lib\/util.js",
"outputStyle" : 1,
"syntaxCheckerStyle" : 1,
"outputAbbreviatedPath" : "\/node_modules\/express\/node_modules\/connect\/node_modules\/formidable\/js\/util-ck.js",
"fileType" : 64
},
"\/scss\/font-awesome.scss" : {
"ignoreWasSetByUser" : 0,
"ignore" : 0,
"hidden" : 0,
"outputPathIsSetByUser" : 0,
"inputAbbreviatedPath" : "\/scss\/font-awesome.scss",
"outputStyle" : 3,
"shouldRunBless" : 0,
"outputAbbreviatedPath" : "\/css\/font-awesome.css",
"fileType" : 4,
"debugStyle" : 0
},
"\/node_modules\/express\/node_modules\/connect\/lib\/public\/icons\/page_find.png" : {
"ignoreWasSetByUser" : 0,
"ignore" : 0,
"hidden" : 0,
"outputPathIsSetByUser" : 0,
"inputAbbreviatedPath" : "\/node_modules\/express\/node_modules\/connect\/lib\/public\/icons\/page_find.png",
"processed" : 1,
"outputAbbreviatedPath" : "\/node_modules\/express\/node_modules\/connect\/lib\/public\/icons\/page_find.png",
"initialSize" : 879,
"fileType" : 8192
},
"\/node_modules\/express\/node_modules\/send\/lib\/utils.js" : {
"ignoreWasSetByUser" : 0,
"ignore" : 0,
"hidden" : 0,
"outputPathIsSetByUser" : 0,
"inputAbbreviatedPath" : "\/node_modules\/express\/node_modules\/send\/lib\/utils.js",
"outputStyle" : 1,
"syntaxCheckerStyle" : 1,
"outputAbbreviatedPath" : "\/node_modules\/express\/node_modules\/send\/js\/utils-ck.js",
"fileType" : 64
},
"\/node_modules\/express\/node_modules\/connect\/lib\/public\/icons\/page_white_compressed.png" : {
"ignoreWasSetByUser" : 0,
"ignore" : 0,
"hidden" : 0,
"outputPathIsSetByUser" : 0,
"inputAbbreviatedPath" : "\/node_modules\/express\/node_modules\/connect\/lib\/public\/icons\/page_white_compressed.png",
"processed" : 1,
"outputAbbreviatedPath" : "\/node_modules\/express\/node_modules\/connect\/lib\/public\/icons\/page_white_compressed.png",
"initialSize" : 724,
"fileType" : 8192
},
"\/node_modules\/express\/node_modules\/connect\/lib\/middleware\/compress.js" : {
"ignoreWasSetByUser" : 0,
"ignore" : 0,
"hidden" : 0,
"outputPathIsSetByUser" : 0,
"inputAbbreviatedPath" : "\/node_modules\/express\/node_modules\/connect\/lib\/middleware\/compress.js",
"outputStyle" : 1,
"syntaxCheckerStyle" : 1,
"outputAbbreviatedPath" : "\/node_modules\/express\/node_modules\/connect\/lib\/js\/compress-ck.js",
"fileType" : 64
},
"\/node_modules\/express\/node_modules\/connect\/lib\/public\/icons\/page_white_link.png" : {
"ignoreWasSetByUser" : 0,
"ignore" : 0,
"hidden" : 0,
"outputPathIsSetByUser" : 0,
"inputAbbreviatedPath" : "\/node_modules\/express\/node_modules\/connect\/lib\/public\/icons\/page_white_link.png",
"processed" : 1,
"outputAbbreviatedPath" : "\/node_modules\/express\/node_modules\/connect\/lib\/public\/icons\/page_white_link.png",
"initialSize" : 614,
"fileType" : 8192
},
"\/node_modules\/express\/node_modules\/mkdirp\/test\/umask.js" : {
"ignoreWasSetByUser" : 0,
"ignore" : 0,
"hidden" : 0,
"outputPathIsSetByUser" : 0,
"inputAbbreviatedPath" : "\/node_modules\/express\/node_modules\/mkdirp\/test\/umask.js",
"outputStyle" : 1,
"syntaxCheckerStyle" : 1,
"outputAbbreviatedPath" : "\/node_modules\/express\/node_modules\/mkdirp\/js\/umask-ck.js",
"fileType" : 64
},
"\/node_modules\/express\/node_modules\/connect\/node_modules\/formidable\/node-gently\/example\/dog.js" : {
"ignoreWasSetByUser" : 0,
"ignore" : 0,
"hidden" : 0,
"outputPathIsSetByUser" : 0,
"inputAbbreviatedPath" : "\/node_modules\/express\/node_modules\/connect\/node_modules\/formidable\/node-gently\/example\/dog.js",
"outputStyle" : 1,
"syntaxCheckerStyle" : 1,
"outputAbbreviatedPath" : "\/node_modules\/express\/node_modules\/connect\/node_modules\/formidable\/node-gently\/js\/dog-ck.js",
"fileType" : 64
},
"\/node_modules\/express\/node_modules\/connect\/lib\/public\/icons\/page_white_edit.png" : {
"ignoreWasSetByUser" : 0,
"ignore" : 0,
"hidden" : 0,
"outputPathIsSetByUser" : 0,
"inputAbbreviatedPath" : "\/node_modules\/express\/node_modules\/connect\/lib\/public\/icons\/page_white_edit.png",
"processed" : 1,
"outputAbbreviatedPath" : "\/node_modules\/express\/node_modules\/connect\/lib\/public\/icons\/page_white_edit.png",
"initialSize" : 618,
"fileType" : 8192
},
"\/node_modules\/express\/node_modules\/debug\/example\/browser.html" : {
"ignoreWasSetByUser" : 0,
"ignore" : 0,
"hidden" : 0,
"outputPathIsSetByUser" : 0,
"inputAbbreviatedPath" : "\/node_modules\/express\/node_modules\/debug\/example\/browser.html",
"outputAbbreviatedPath" : "No Output Path",
"fileType" : 2048
},
"\/node_modules\/express\/node_modules\/connect\/node_modules\/formidable\/test\/legacy\/simple\/test-multipart-parser.js" : {
"ignoreWasSetByUser" : 0,
"ignore" : 0,
"hidden" : 0,
"outputPathIsSetByUser" : 0,
"inputAbbreviatedPath" : "\/node_modules\/express\/node_modules\/connect\/node_modules\/formidable\/test\/legacy\/simple\/test-multipart-parser.js",
"outputStyle" : 1,
"syntaxCheckerStyle" : 1,
"outputAbbreviatedPath" : "\/node_modules\/express\/node_modules\/connect\/node_modules\/formidable\/test\/legacy\/js\/test-multipart-parser-ck.js",
"fileType" : 64
},
"\/node_modules\/express\/node_modules\/connect\/node_modules\/formidable\/test\/legacy\/common.js" : {
"ignoreWasSetByUser" : 0,
"ignore" : 0,
"hidden" : 0,
"outputPathIsSetByUser" : 0,
"inputAbbreviatedPath" : "\/node_modules\/express\/node_modules\/connect\/node_modules\/formidable\/test\/legacy\/common.js",
"outputStyle" : 1,
"syntaxCheckerStyle" : 1,
"outputAbbreviatedPath" : "\/node_modules\/express\/node_modules\/connect\/node_modules\/formidable\/test\/js\/common-ck.js",
"fileType" : 64
},
"\/node_modules\/express\/node_modules\/connect\/lib\/public\/icons\/page_white_powerpoint.png" : {
"ignoreWasSetByUser" : 0,
"ignore" : 0,
"hidden" : 0,
"outputPathIsSetByUser" : 0,
"inputAbbreviatedPath" : "\/node_modules\/express\/node_modules\/connect\/lib\/public\/icons\/page_white_powerpoint.png",
"processed" : 1,
"outputAbbreviatedPath" : "\/node_modules\/express\/node_modules\/connect\/lib\/public\/icons\/page_white_powerpoint.png",
"initialSize" : 588,
"fileType" : 8192
},
"\/node_modules\/express\/node_modules\/connect\/lib\/public\/icons\/page_white_vector.png" : {
"ignoreWasSetByUser" : 0,
"ignore" : 0,
"hidden" : 0,
"outputPathIsSetByUser" : 0,
"inputAbbreviatedPath" : "\/node_modules\/express\/node_modules\/connect\/lib\/public\/icons\/page_white_vector.png",
"processed" : 1,
"outputAbbreviatedPath" : "\/node_modules\/express\/node_modules\/connect\/lib\/public\/icons\/page_white_vector.png",
"initialSize" : 644,
"fileType" : 8192
},
"\/node_modules\/express\/lib\/request.js" : {
"ignoreWasSetByUser" : 0,
"ignore" : 0,
"hidden" : 0,
"outputPathIsSetByUser" : 0,
"inputAbbreviatedPath" : "\/node_modules\/express\/lib\/request.js",
"outputStyle" : 1,
"syntaxCheckerStyle" : 1,
"outputAbbreviatedPath" : "\/node_modules\/express\/js\/request-ck.js",
"fileType" : 64
},
"\/node_modules\/express\/node_modules\/connect\/node_modules\/formidable\/node-gently\/example\/event_emitter.js" : {
"ignoreWasSetByUser" : 0,
"ignore" : 0,
"hidden" : 0,
"outputPathIsSetByUser" : 0,
"inputAbbreviatedPath" : "\/node_modules\/express\/node_modules\/connect\/node_modules\/formidable\/node-gently\/example\/event_emitter.js",
"outputStyle" : 1,
"syntaxCheckerStyle" : 1,
"outputAbbreviatedPath" : "\/node_modules\/express\/node_modules\/connect\/node_modules\/formidable\/node-gently\/js\/event_emitter-ck.js",
"fileType" : 64
},
"\/node_modules\/express\/node_modules\/connect\/lib\/middleware\/basicAuth.js" : {
"ignoreWasSetByUser" : 0,
"ignore" : 0,
"hidden" : 0,
"outputPathIsSetByUser" : 0,
"inputAbbreviatedPath" : "\/node_modules\/express\/node_modules\/connect\/lib\/middleware\/basicAuth.js",
"outputStyle" : 1,
"syntaxCheckerStyle" : 1,
"outputAbbreviatedPath" : "\/node_modules\/express\/node_modules\/connect\/lib\/js\/basicAuth-ck.js",
"fileType" : 64
},
"\/node_modules\/express\/node_modules\/cookie\/test\/parse.js" : {
"ignoreWasSetByUser" : 0,
"ignore" : 0,
"hidden" : 0,
"outputPathIsSetByUser" : 0,
"inputAbbreviatedPath" : "\/node_modules\/express\/node_modules\/cookie\/test\/parse.js",
"outputStyle" : 1,
"syntaxCheckerStyle" : 1,
"outputAbbreviatedPath" : "\/node_modules\/express\/node_modules\/cookie\/js\/parse-ck.js",
"fileType" : 64
},
"\/css\/skeleton3.css" : {
"ignoreWasSetByUser" : 0,
"ignore" : 1,
"hidden" : 0,
"outputPathIsSetByUser" : 0,
"inputAbbreviatedPath" : "\/css\/skeleton3.css",
"outputAbbreviatedPath" : "No Output Path",
"fileType" : 16
},
"\/node_modules\/express\/node_modules\/connect\/lib\/public\/icons\/page_white_medal.png" : {
"ignoreWasSetByUser" : 0,
"ignore" : 0,
"hidden" : 0,
"outputPathIsSetByUser" : 0,
"inputAbbreviatedPath" : "\/node_modules\/express\/node_modules\/connect\/lib\/public\/icons\/page_white_medal.png",
"processed" : 1,
"outputAbbreviatedPath" : "\/node_modules\/express\/node_modules\/connect\/lib\/public\/icons\/page_white_medal.png",
"initialSize" : 706,
"fileType" : 8192
},
"\/node_modules\/express\/node_modules\/fresh\/index.js" : {
"ignoreWasSetByUser" : 0,
"ignore" : 0,
"hidden" : 0,
"outputPathIsSetByUser" : 0,
"inputAbbreviatedPath" : "\/node_modules\/express\/node_modules\/fresh\/index.js",
"outputStyle" : 1,
"syntaxCheckerStyle" : 1,
"outputAbbreviatedPath" : "\/node_modules\/express\/node_modules\/js\/index-ck.js",
"fileType" : 64
},
"\/node_modules\/express\/node_modules\/connect\/lib\/middleware\/methodOverride.js" : {
"ignoreWasSetByUser" : 0,
"ignore" : 0,
"hidden" : 0,
"outputPathIsSetByUser" : 0,
"inputAbbreviatedPath" : "\/node_modules\/express\/node_modules\/connect\/lib\/middleware\/methodOverride.js",
"outputStyle" : 1,
"syntaxCheckerStyle" : 1,
"outputAbbreviatedPath" : "\/node_modules\/express\/node_modules\/connect\/lib\/js\/methodOverride-ck.js",
"fileType" : 64
},
"\/node_modules\/express\/node_modules\/connect\/node_modules\/qs\/index.js" : {
"ignoreWasSetByUser" : 0,
"ignore" : 0,
"hidden" : 0,
"outputPathIsSetByUser" : 0,
"inputAbbreviatedPath" : "\/node_modules\/express\/node_modules\/connect\/node_modules\/qs\/index.js",
"outputStyle" : 1,
"syntaxCheckerStyle" : 1,
"outputAbbreviatedPath" : "\/node_modules\/express\/node_modules\/connect\/node_modules\/js\/index-ck.js",
"fileType" : 64
},
"\/node_modules\/express\/node_modules\/debug\/lib\/debug.js" : {
"ignoreWasSetByUser" : 0,
"ignore" : 0,
"hidden" : 0,
"outputPathIsSetByUser" : 0,
"inputAbbreviatedPath" : "\/node_modules\/express\/node_modules\/debug\/lib\/debug.js",
"outputStyle" : 1,
"syntaxCheckerStyle" : 1,
"outputAbbreviatedPath" : "\/node_modules\/express\/node_modules\/debug\/js\/debug-ck.js",
"fileType" : 64
},
"\/scss\/skeletonStyles.scss" : {
"ignoreWasSetByUser" : 0,
"ignore" : 1,
"hidden" : 0,
"outputPathIsSetByUser" : 0,
"inputAbbreviatedPath" : "\/scss\/skeletonStyles.scss",
"outputStyle" : 3,
"shouldRunBless" : 0,
"outputAbbreviatedPath" : "\/css\/skeletonStyles.css",
"fileType" : 4,
"debugStyle" : 0
},
"\/node_modules\/express\/node_modules\/mkdirp\/test\/sync.js" : {
"ignoreWasSetByUser" : 0,
"ignore" : 0,
"hidden" : 0,
"outputPathIsSetByUser" : 0,
"inputAbbreviatedPath" : "\/node_modules\/express\/node_modules\/mkdirp\/test\/sync.js",
"outputStyle" : 1,
"syntaxCheckerStyle" : 1,
"outputAbbreviatedPath" : "\/node_modules\/express\/node_modules\/mkdirp\/js\/sync-ck.js",
"fileType" : 64
},
"\/node_modules\/express\/node_modules\/connect\/node_modules\/bytes\/index.js" : {
"ignoreWasSetByUser" : 0,
"ignore" : 0,
"hidden" : 0,
"outputPathIsSetByUser" : 0,
"inputAbbreviatedPath" : "\/node_modules\/express\/node_modules\/connect\/node_modules\/bytes\/index.js",
"outputStyle" : 1,
"syntaxCheckerStyle" : 1,
"outputAbbreviatedPath" : "\/node_modules\/express\/node_modules\/connect\/node_modules\/js\/index-ck.js",
"fileType" : 64
},
"\/node_modules\/express\/node_modules\/connect\/lib\/middleware\/session\/session.js" : {
"ignoreWasSetByUser" : 0,
"ignore" : 0,
"hidden" : 0,
"outputPathIsSetByUser" : 0,
"inputAbbreviatedPath" : "\/node_modules\/express\/node_modules\/connect\/lib\/middleware\/session\/session.js",
"outputStyle" : 1,
"syntaxCheckerStyle" : 1,
"outputAbbreviatedPath" : "\/node_modules\/express\/node_modules\/connect\/lib\/middleware\/js\/session-ck.js",
"fileType" : 64
},
"\/node_modules\/express\/node_modules\/connect\/lib\/public\/icons\/page_excel.png" : {
"ignoreWasSetByUser" : 0,
"ignore" : 0,
"hidden" : 0,
"outputPathIsSetByUser" : 0,
"inputAbbreviatedPath" : "\/node_modules\/express\/node_modules\/connect\/lib\/public\/icons\/page_excel.png",
"processed" : 1,
"outputAbbreviatedPath" : "\/node_modules\/express\/node_modules\/connect\/lib\/public\/icons\/page_excel.png",
"initialSize" : 817,
"fileType" : 8192
},
"\/mixpanel.js" : {
"ignoreWasSetByUser" : 0,
"ignore" : 0,
"hidden" : 0,
"outputPathIsSetByUser" : 0,
"inputAbbreviatedPath" : "\/mixpanel.js",
"outputStyle" : 1,
"syntaxCheckerStyle" : 1,
"outputAbbreviatedPath" : "\/js\/mixpanel-ck.js",
"fileType" : 64
},
"\/node_modules\/express\/node_modules\/connect\/node_modules\/qs\/benchmark.js" : {
"ignoreWasSetByUser" : 0,
"ignore" : 0,
"hidden" : 0,
"outputPathIsSetByUser" : 0,
"inputAbbreviatedPath" : "\/node_modules\/express\/node_modules\/connect\/node_modules\/qs\/benchmark.js",
"outputStyle" : 1,
"syntaxCheckerStyle" : 1,
"outputAbbreviatedPath" : "\/node_modules\/express\/node_modules\/connect\/node_modules\/js\/benchmark-ck.js",
"fileType" : 64
},
"\/js\/util-ck.js" : {
"ignoreWasSetByUser" : 0,
"ignore" : 1,
"hidden" : 0,
"outputPathIsSetByUser" : 0,
"inputAbbreviatedPath" : "\/js\/util-ck.js",
"outputStyle" : 1,
"syntaxCheckerStyle" : 1,
"outputAbbreviatedPath" : "\/js\/util-ck-ck.js",
"fileType" : 64
},
"\/node_modules\/express\/node_modules\/connect\/lib\/public\/icons\/page_go.png" : {
"ignoreWasSetByUser" : 0,
"ignore" : 0,
"hidden" : 0,
"outputPathIsSetByUser" : 0,
"inputAbbreviatedPath" : "\/node_modules\/express\/node_modules\/connect\/lib\/public\/icons\/page_go.png",
"processed" : 1,
"outputAbbreviatedPath" : "\/node_modules\/express\/node_modules\/connect\/lib\/public\/icons\/page_go.png",
"initialSize" : 779,
"fileType" : 8192
},
"\/node_modules\/express\/node_modules\/connect\/lib\/public\/icons\/page_green.png" : {
"ignoreWasSetByUser" : 0,
"ignore" : 0,
"hidden" : 0,
"outputPathIsSetByUser" : 0,
"inputAbbreviatedPath" : "\/node_modules\/express\/node_modules\/connect\/lib\/public\/icons\/page_green.png",
"processed" : 1,
"outputAbbreviatedPath" : "\/node_modules\/express\/node_modules\/connect\/lib\/public\/icons\/page_green.png",
"initialSize" : 621,
"fileType" : 8192
},
"\/node_modules\/express\/node_modules\/debug\/tail.js" : {
"ignoreWasSetByUser" : 0,
"ignore" : 0,
"hidden" : 0,
"outputPathIsSetByUser" : 0,
"inputAbbreviatedPath" : "\/node_modules\/express\/node_modules\/debug\/tail.js",
"outputStyle" : 1,
"syntaxCheckerStyle" : 1,
"outputAbbreviatedPath" : "\/node_modules\/express\/node_modules\/js\/tail-ck.js",
"fileType" : 64
},
"\/js\/d3.v2-ck.js" : {
"ignoreWasSetByUser" : 0,
"ignore" : 1,
"hidden" : 0,
"outputPathIsSetByUser" : 0,
"inputAbbreviatedPath" : "\/js\/d3.v2-ck.js",
"outputStyle" : 1,
"syntaxCheckerStyle" : 1,
"outputAbbreviatedPath" : "\/js\/d3.v2-ck-ck.js",
"fileType" : 64
},
"\/node_modules\/express\/node_modules\/connect\/lib\/public\/icons\/page_copy.png" : {
"ignoreWasSetByUser" : 0,
"ignore" : 0,
"hidden" : 0,
"outputPathIsSetByUser" : 0,
"inputAbbreviatedPath" : "\/node_modules\/express\/node_modules\/connect\/lib\/public\/icons\/page_copy.png",
"processed" : 1,
"outputAbbreviatedPath" : "\/node_modules\/express\/node_modules\/connect\/lib\/public\/icons\/page_copy.png",
"initialSize" : 663,
"fileType" : 8192
},
"\/node_modules\/express\/node_modules\/connect\/test.js" : {
"ignoreWasSetByUser" : 0,
"ignore" : 0,
"hidden" : 0,
"outputPathIsSetByUser" : 0,
"inputAbbreviatedPath" : "\/node_modules\/express\/node_modules\/connect\/test.js",
"outputStyle" : 1,
"syntaxCheckerStyle" : 1,
"outputAbbreviatedPath" : "\/node_modules\/express\/node_modules\/js\/test-ck.js",
"fileType" : 64
},
"\/node_modules\/express\/node_modules\/connect\/lib\/middleware\/responseTime.js" : {
"ignoreWasSetByUser" : 0,
"ignore" : 0,
"hidden" : 0,
"outputPathIsSetByUser" : 0,
"inputAbbreviatedPath" : "\/node_modules\/express\/node_modules\/connect\/lib\/middleware\/responseTime.js",
"outputStyle" : 1,
"syntaxCheckerStyle" : 1,
"outputAbbreviatedPath" : "\/node_modules\/express\/node_modules\/connect\/lib\/js\/responseTime-ck.js",
"fileType" : 64
},
"\/node_modules\/express\/node_modules\/connect\/lib\/public\/icons\/page_white.png" : {
"ignoreWasSetByUser" : 0,
"ignore" : 0,
"hidden" : 0,
"outputPathIsSetByUser" : 0,
"inputAbbreviatedPath" : "\/node_modules\/express\/node_modules\/connect\/lib\/public\/icons\/page_white.png",
"processed" : 1,
"outputAbbreviatedPath" : "\/node_modules\/express\/node_modules\/connect\/lib\/public\/icons\/page_white.png",
"initialSize" : 294,
"fileType" : 8192
},
"\/node_modules\/express\/node_modules\/connect\/lib\/index.js" : {
"ignoreWasSetByUser" : 0,
"ignore" : 0,
"hidden" : 0,
"outputPathIsSetByUser" : 0,
"inputAbbreviatedPath" : "\/node_modules\/express\/node_modules\/connect\/lib\/index.js",
"outputStyle" : 1,
"syntaxCheckerStyle" : 1,
"outputAbbreviatedPath" : "\/node_modules\/express\/node_modules\/connect\/js\/index-ck.js",
"fileType" : 64
},
"\/node_modules\/express\/node_modules\/connect\/lib\/public\/icons\/page_white_h.png" : {
"ignoreWasSetByUser" : 0,
"ignore" : 0,
"hidden" : 0,
"outputPathIsSetByUser" : 0,
"inputAbbreviatedPath" : "\/node_modules\/express\/node_modules\/connect\/lib\/public\/icons\/page_white_h.png",
"processed" : 1,
"outputAbbreviatedPath" : "\/node_modules\/express\/node_modules\/connect\/lib\/public\/icons\/page_white_h.png",
"initialSize" : 603,
"fileType" : 8192
},
"\/node_modules\/express\/node_modules\/connect\/lib\/public\/icons\/page_link.png" : {
"ignoreWasSetByUser" : 0,
"ignore" : 0,
"hidden" : 0,
"outputPathIsSetByUser" : 0,
"inputAbbreviatedPath" : "\/node_modules\/express\/node_modules\/connect\/lib\/public\/icons\/page_link.png",
"processed" : 1,
"outputAbbreviatedPath" : "\/node_modules\/express\/node_modules\/connect\/lib\/public\/icons\/page_link.png",
"initialSize" : 830,
"fileType" : 8192
},
"\/node_modules\/express\/node_modules\/connect\/node_modules\/formidable\/test\/legacy\/simple\/test-file.js" : {
"ignoreWasSetByUser" : 0,
"ignore" : 0,
"hidden" : 0,
"outputPathIsSetByUser" : 0,
"inputAbbreviatedPath" : "\/node_modules\/express\/node_modules\/connect\/node_modules\/formidable\/test\/legacy\/simple\/test-file.js",
"outputStyle" : 1,
"syntaxCheckerStyle" : 1,
"outputAbbreviatedPath" : "\/node_modules\/express\/node_modules\/connect\/node_modules\/formidable\/test\/legacy\/js\/test-file-ck.js",
"fileType" : 64
},
"\/node_modules\/express\/node_modules\/connect\/lib\/middleware\/limit.js" : {
"ignoreWasSetByUser" : 0,
"ignore" : 0,
"hidden" : 0,
"outputPathIsSetByUser" : 0,
"inputAbbreviatedPath" : "\/node_modules\/express\/node_modules\/connect\/lib\/middleware\/limit.js",
"outputStyle" : 1,
"syntaxCheckerStyle" : 1,
"outputAbbreviatedPath" : "\/node_modules\/express\/node_modules\/connect\/lib\/js\/limit-ck.js",
"fileType" : 64
},
"\/node_modules\/express\/node_modules\/connect\/lib\/public\/icons\/page_white_cup.png" : {
"ignoreWasSetByUser" : 0,
"ignore" : 0,
"hidden" : 0,
"outputPathIsSetByUser" : 0,
"inputAbbreviatedPath" : "\/node_modules\/express\/node_modules\/connect\/lib\/public\/icons\/page_white_cup.png",
"processed" : 1,
"outputAbbreviatedPath" : "\/node_modules\/express\/node_modules\/connect\/lib\/public\/icons\/page_white_cup.png",
"initialSize" : 639,
"fileType" : 8192
},
"\/node_modules\/express\/node_modules\/connect\/lib\/public\/icons\/page_white_acrobat.png" : {
"ignoreWasSetByUser" : 0,
"ignore" : 0,
"hidden" : 0,
"outputPathIsSetByUser" : 0,
"inputAbbreviatedPath" : "\/node_modules\/express\/node_modules\/connect\/lib\/public\/icons\/page_white_acrobat.png",
"processed" : 1,
"outputAbbreviatedPath" : "\/node_modules\/express\/node_modules\/connect\/lib\/public\/icons\/page_white_acrobat.png",
"initialSize" : 591,
"fileType" : 8192
},
"\/node_modules\/express\/node_modules\/connect\/node_modules\/formidable\/test\/fixture\/js\/no-filename.js" : {
"ignoreWasSetByUser" : 0,
"ignore" : 0,
"hidden" : 0,
"outputPathIsSetByUser" : 0,
"inputAbbreviatedPath" : "\/node_modules\/express\/node_modules\/connect\/node_modules\/formidable\/test\/fixture\/js\/no-filename.js",
"outputStyle" : 1,
"syntaxCheckerStyle" : 1,
"outputAbbreviatedPath" : "\/node_modules\/express\/node_modules\/connect\/node_modules\/formidable\/test\/fixture\/js\/no-filename-ck.js",
"fileType" : 64
},
"\/node_modules\/express\/node_modules\/connect\/node_modules\/formidable\/lib\/multipart_parser.js" : {
"ignoreWasSetByUser" : 0,
"ignore" : 0,
"hidden" : 0,
"outputPathIsSetByUser" : 0,
"inputAbbreviatedPath" : "\/node_modules\/express\/node_modules\/connect\/node_modules\/formidable\/lib\/multipart_parser.js",
"outputStyle" : 1,
"syntaxCheckerStyle" : 1,
"outputAbbreviatedPath" : "\/node_modules\/express\/node_modules\/connect\/node_modules\/formidable\/js\/multipart_parser-ck.js",
"fileType" : 64
},
"\/node_modules\/express\/node_modules\/debug\/index.js" : {
"ignoreWasSetByUser" : 0,
"ignore" : 0,
"hidden" : 0,
"outputPathIsSetByUser" : 0,
"inputAbbreviatedPath" : "\/node_modules\/express\/node_modules\/debug\/index.js",
"outputStyle" : 1,
"syntaxCheckerStyle" : 1,
"outputAbbreviatedPath" : "\/node_modules\/express\/node_modules\/js\/index-ck.js",
"fileType" : 64
},
"\/node_modules\/express\/node_modules\/connect\/lib\/public\/icons\/page_white_c.png" : {
"ignoreWasSetByUser" : 0,
"ignore" : 0,
"hidden" : 0,
"outputPathIsSetByUser" : 0,
"inputAbbreviatedPath" : "\/node_modules\/express\/node_modules\/connect\/lib\/public\/icons\/page_white_c.png",
"processed" : 1,
"outputAbbreviatedPath" : "\/node_modules\/express\/node_modules\/connect\/lib\/public\/icons\/page_white_c.png",
"initialSize" : 587,
"fileType" : 8192
},
"\/sjs\/loading.js" : {
"ignoreWasSetByUser" : 0,
"ignore" : 0,
"hidden" : 0,
"outputPathIsSetByUser" : 0,
"inputAbbreviatedPath" : "\/sjs\/loading.js",
"outputStyle" : 1,
"syntaxCheckerStyle" : 1,
"outputAbbreviatedPath" : "\/js\/loading-ck.js",
"fileType" : 64
},
"\/node_modules\/express\/node_modules\/connect\/lib\/public\/icons\/page_white_delete.png" : {
"ignoreWasSetByUser" : 0,
"ignore" : 0,
"hidden" : 0,
"outputPathIsSetByUser" : 0,
"inputAbbreviatedPath" : "\/node_modules\/express\/node_modules\/connect\/lib\/public\/icons\/page_white_delete.png",
"processed" : 1,
"outputAbbreviatedPath" : "\/node_modules\/express\/node_modules\/connect\/lib\/public\/icons\/page_white_delete.png",
"initialSize" : 536,
"fileType" : 8192
},
"\/node_modules\/express\/node_modules\/connect\/lib\/public\/icons\/page_white_width.png" : {
"ignoreWasSetByUser" : 0,
"ignore" : 0,
"hidden" : 0,
"outputPathIsSetByUser" : 0,
"inputAbbreviatedPath" : "\/node_modules\/express\/node_modules\/connect\/lib\/public\/icons\/page_white_width.png",
"processed" : 1,
"outputAbbreviatedPath" : "\/node_modules\/express\/node_modules\/connect\/lib\/public\/icons\/page_white_width.png",
"initialSize" : 309,
"fileType" : 8192
},
"\/node_modules\/express\/node_modules\/connect\/lib\/public\/icons\/page_white_copy.png" : {
"ignoreWasSetByUser" : 0,
"ignore" : 0,
"hidden" : 0,
"outputPathIsSetByUser" : 0,
"inputAbbreviatedPath" : "\/node_modules\/express\/node_modules\/connect\/lib\/public\/icons\/page_white_copy.png",
"processed" : 1,
"outputAbbreviatedPath" : "\/node_modules\/express\/node_modules\/connect\/lib\/public\/icons\/page_white_copy.png",
"initialSize" : 309,
"fileType" : 8192
},
"\/node_modules\/express\/node_modules\/connect\/lib\/public\/icons\/page.png" : {
"ignoreWasSetByUser" : 0,
"ignore" : 0,
"hidden" : 0,
"outputPathIsSetByUser" : 0,
"inputAbbreviatedPath" : "\/node_modules\/express\/node_modules\/connect\/lib\/public\/icons\/page.png",
"processed" : 1,
"outputAbbreviatedPath" : "\/node_modules\/express\/node_modules\/connect\/lib\/public\/icons\/page.png",
"initialSize" : 635,
"fileType" : 8192
},
"\/node_modules\/express\/node_modules\/connect\/lib\/middleware\/cookieParser.js" : {
"ignoreWasSetByUser" : 0,
"ignore" : 0,
"hidden" : 0,
"outputPathIsSetByUser" : 0,
"inputAbbreviatedPath" : "\/node_modules\/express\/node_modules\/connect\/lib\/middleware\/cookieParser.js",
"outputStyle" : 1,
"syntaxCheckerStyle" : 1,
"outputAbbreviatedPath" : "\/node_modules\/express\/node_modules\/connect\/lib\/js\/cookieParser-ck.js",
"fileType" : 64
},
"\/node_modules\/express\/node_modules\/connect\/lib\/proto.js" : {
"ignoreWasSetByUser" : 0,
"ignore" : 0,
"hidden" : 0,
"outputPathIsSetByUser" : 0,
"inputAbbreviatedPath" : "\/node_modules\/express\/node_modules\/connect\/lib\/proto.js",
"outputStyle" : 1,
"syntaxCheckerStyle" : 1,
"outputAbbreviatedPath" : "\/node_modules\/express\/node_modules\/connect\/js\/proto-ck.js",
"fileType" : 64
},
"\/node_modules\/express\/node_modules\/connect\/lib\/public\/icons\/page_add.png" : {
"ignoreWasSetByUser" : 0,
"ignore" : 0,
"hidden" : 0,
"outputPathIsSetByUser" : 0,
"inputAbbreviatedPath" : "\/node_modules\/express\/node_modules\/connect\/lib\/public\/icons\/page_add.png",
"processed" : 1,
"outputAbbreviatedPath" : "\/node_modules\/express\/node_modules\/connect\/lib\/public\/icons\/page_add.png",
"initialSize" : 739,
"fileType" : 8192
},
"\/node_modules\/express\/node_modules\/connect\/lib\/middleware\/timeout.js" : {
"ignoreWasSetByUser" : 0,
"ignore" : 0,
"hidden" : 0,
"outputPathIsSetByUser" : 0,
"inputAbbreviatedPath" : "\/node_modules\/express\/node_modules\/connect\/lib\/middleware\/timeout.js",
"outputStyle" : 1,
"syntaxCheckerStyle" : 1,
"outputAbbreviatedPath" : "\/node_modules\/express\/node_modules\/connect\/lib\/js\/timeout-ck.js",
"fileType" : 64
},
"\/scss\/skeleton3.scss" : {
"ignoreWasSetByUser" : 0,
"ignore" : 1,
"hidden" : 0,
"outputPathIsSetByUser" : 0,
"inputAbbreviatedPath" : "\/scss\/skeleton3.scss",
"outputStyle" : 3,
"shouldRunBless" : 0,
"outputAbbreviatedPath" : "\/css\/skeleton3.css",
"fileType" : 4,
"debugStyle" : 0
},
"\/node_modules\/express\/node_modules\/connect\/lib\/public\/icons\/page_white_magnify.png" : {
"ignoreWasSetByUser" : 0,
"ignore" : 0,
"hidden" : 0,
"outputPathIsSetByUser" : 0,
"inputAbbreviatedPath" : "\/node_modules\/express\/node_modules\/connect\/lib\/public\/icons\/page_white_magnify.png",
"processed" : 1,
"outputAbbreviatedPath" : "\/node_modules\/express\/node_modules\/connect\/lib\/public\/icons\/page_white_magnify.png",
"initialSize" : 554,
"fileType" : 8192
},
"\/js\/controller-ck.js" : {
"ignoreWasSetByUser" : 0,
"ignore" : 1,
"hidden" : 0,
"outputPathIsSetByUser" : 0,
"inputAbbreviatedPath" : "\/js\/controller-ck.js",
"outputStyle" : 1,
"syntaxCheckerStyle" : 1,
"outputAbbreviatedPath" : "\/js\/controller-ck-ck.js",
"fileType" : 64
},
"\/node_modules\/express\/node_modules\/connect\/lib\/middleware\/session\/memory.js" : {
"ignoreWasSetByUser" : 0,
"ignore" : 0,
"hidden" : 0,
"outputPathIsSetByUser" : 0,
"inputAbbreviatedPath" : "\/node_modules\/express\/node_modules\/connect\/lib\/middleware\/session\/memory.js",
"outputStyle" : 1,
"syntaxCheckerStyle" : 1,
"outputAbbreviatedPath" : "\/node_modules\/express\/node_modules\/connect\/lib\/middleware\/js\/memory-ck.js",
"fileType" : 64
},
"\/node_modules\/express\/node_modules\/connect\/lib\/connect.js" : {
"ignoreWasSetByUser" : 0,
"ignore" : 0,
"hidden" : 0,
"outputPathIsSetByUser" : 0,
"inputAbbreviatedPath" : "\/node_modules\/express\/node_modules\/connect\/lib\/connect.js",
"outputStyle" : 1,
"syntaxCheckerStyle" : 1,
"outputAbbreviatedPath" : "\/node_modules\/express\/node_modules\/connect\/js\/connect-ck.js",
"fileType" : 64
},
"\/node_modules\/express\/node_modules\/connect\/node_modules\/formidable\/test\/fixture\/js\/special-chars-in-filename.js" : {
"ignoreWasSetByUser" : 0,
"ignore" : 0,
"hidden" : 0,
"outputPathIsSetByUser" : 0,
"inputAbbreviatedPath" : "\/node_modules\/express\/node_modules\/connect\/node_modules\/formidable\/test\/fixture\/js\/special-chars-in-filename.js",
"outputStyle" : 1,
"syntaxCheckerStyle" : 1,
"outputAbbreviatedPath" : "\/node_modules\/express\/node_modules\/connect\/node_modules\/formidable\/test\/fixture\/js\/special-chars-in-filename-ck.js",
"fileType" : 64
},
"\/node_modules\/express\/node_modules\/connect\/lib\/public\/icons\/page_white_gear.png" : {
"ignoreWasSetByUser" : 0,
"ignore" : 0,
"hidden" : 0,
"outputPathIsSetByUser" : 0,
"inputAbbreviatedPath" : "\/node_modules\/express\/node_modules\/connect\/lib\/public\/icons\/page_white_gear.png",
"processed" : 1,
"outputAbbreviatedPath" : "\/node_modules\/express\/node_modules\/connect\/lib\/public\/icons\/page_white_gear.png",
"initialSize" : 402,
"fileType" : 8192
},
"\/node_modules\/express\/node_modules\/connect\/lib\/middleware\/vhost.js" : {
"ignoreWasSetByUser" : 0,
"ignore" : 0,
"hidden" : 0,
"outputPathIsSetByUser" : 0,
"inputAbbreviatedPath" : "\/node_modules\/express\/node_modules\/connect\/lib\/middleware\/vhost.js",
"outputStyle" : 1,
"syntaxCheckerStyle" : 1,
"outputAbbreviatedPath" : "\/node_modules\/express\/node_modules\/connect\/lib\/js\/vhost-ck.js",
"fileType" : 64
},
"\/node_modules\/express\/node_modules\/connect\/node_modules\/formidable\/lib\/incoming_form.js" : {
"ignoreWasSetByUser" : 0,
"ignore" : 0,
"hidden" : 0,
"outputPathIsSetByUser" : 0,
"inputAbbreviatedPath" : "\/node_modules\/express\/node_modules\/connect\/node_modules\/formidable\/lib\/incoming_form.js",
"outputStyle" : 1,
"syntaxCheckerStyle" : 1,
"outputAbbreviatedPath" : "\/node_modules\/express\/node_modules\/connect\/node_modules\/formidable\/js\/incoming_form-ck.js",
"fileType" : 64
},
"\/node_modules\/express\/node_modules\/connect\/lib\/cache.js" : {
"ignoreWasSetByUser" : 0,
"ignore" : 0,
"hidden" : 0,
"outputPathIsSetByUser" : 0,
"inputAbbreviatedPath" : "\/node_modules\/express\/node_modules\/connect\/lib\/cache.js",
"outputStyle" : 1,
"syntaxCheckerStyle" : 1,
"outputAbbreviatedPath" : "\/node_modules\/express\/node_modules\/connect\/js\/cache-ck.js",
"fileType" : 64
},
"\/node_modules\/express\/node_modules\/connect\/lib\/public\/icons\/page_white_world.png" : {
"ignoreWasSetByUser" : 0,
"ignore" : 0,
"hidden" : 0,
"outputPathIsSetByUser" : 0,
"inputAbbreviatedPath" : "\/node_modules\/express\/node_modules\/connect\/lib\/public\/icons\/page_white_world.png",
"processed" : 1,
"outputAbbreviatedPath" : "\/node_modules\/express\/node_modules\/connect\/lib\/public\/icons\/page_white_world.png",