-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathnpm-debug.log
More file actions
960 lines (960 loc) · 67.5 KB
/
npm-debug.log
File metadata and controls
960 lines (960 loc) · 67.5 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
0 info it worked if it ends with ok
1 verbose cli [ '/usr/bin/nodejs',
1 verbose cli '/usr/bin/npm',
1 verbose cli 'install',
1 verbose cli '--global',
1 verbose cli 'js2coffee' ]
2 info using npm@1.3.10
3 info using node@v0.10.25
4 verbose cache add [ 'js2coffee', null ]
5 verbose cache add name=undefined spec="js2coffee" args=["js2coffee",null]
6 verbose parsed url { protocol: null,
6 verbose parsed url slashes: null,
6 verbose parsed url auth: null,
6 verbose parsed url host: null,
6 verbose parsed url port: null,
6 verbose parsed url hostname: null,
6 verbose parsed url hash: null,
6 verbose parsed url search: null,
6 verbose parsed url query: null,
6 verbose parsed url pathname: 'js2coffee',
6 verbose parsed url path: 'js2coffee',
6 verbose parsed url href: 'js2coffee' }
7 silly lockFile fe02976f-js2coffee js2coffee
8 verbose lock js2coffee /home/rormuc-01/.npm/fe02976f-js2coffee.lock
9 silly lockFile fe02976f-js2coffee js2coffee
10 silly lockFile fe02976f-js2coffee js2coffee
11 verbose addNamed [ 'js2coffee', '' ]
12 verbose addNamed [ null, '*' ]
13 silly lockFile 5eedc53f-js2coffee js2coffee@
14 verbose lock js2coffee@ /home/rormuc-01/.npm/5eedc53f-js2coffee.lock
15 silly addNameRange { name: 'js2coffee', range: '*', hasData: false }
16 verbose url raw js2coffee
17 verbose url resolving [ 'https://registry.npmjs.org/', './js2coffee' ]
18 verbose url resolved https://registry.npmjs.org/js2coffee
19 info trying registry request attempt 1 at 22:31:00
20 http GET https://registry.npmjs.org/js2coffee
21 http 200 https://registry.npmjs.org/js2coffee
22 silly registry.get cb [ 200,
22 silly registry.get { server: 'CouchDB/1.5.0 (Erlang OTP/R16B03)',
22 silly registry.get etag: '"8G1DJEO9ISLSYN2N2NS0G29HT"',
22 silly registry.get 'content-type': 'application/json',
22 silly registry.get 'cache-control': 'max-age=300',
22 silly registry.get 'content-length': '57394',
22 silly registry.get 'accept-ranges': 'bytes',
22 silly registry.get date: 'Mon, 30 May 2016 20:31:02 GMT',
22 silly registry.get via: '1.1 varnish',
22 silly registry.get age: '0',
22 silly registry.get connection: 'keep-alive',
22 silly registry.get 'x-served-by': 'cache-fra1230-FRA',
22 silly registry.get 'x-cache': 'MISS',
22 silly registry.get 'x-cache-hits': '0',
22 silly registry.get 'x-timer': 'S1464640262.231399,VS0,VE741',
22 silly registry.get vary: 'Accept-Encoding' } ]
23 silly addNameRange number 2 { name: 'js2coffee', range: '*', hasData: true }
24 silly addNameRange versions [ 'js2coffee',
24 silly addNameRange [ '0.0.1',
24 silly addNameRange '0.0.2',
24 silly addNameRange '0.0.3',
24 silly addNameRange '0.0.4',
24 silly addNameRange '0.0.5',
24 silly addNameRange '0.1.0',
24 silly addNameRange '0.1.1',
24 silly addNameRange '0.1.2',
24 silly addNameRange '0.1.3',
24 silly addNameRange '0.1.4',
24 silly addNameRange '0.2.0',
24 silly addNameRange '0.2.1',
24 silly addNameRange '0.2.3',
24 silly addNameRange '0.2.4',
24 silly addNameRange '0.2.5',
24 silly addNameRange '0.2.6',
24 silly addNameRange '0.2.7',
24 silly addNameRange '0.3.0',
24 silly addNameRange '0.3.1',
24 silly addNameRange '0.3.2',
24 silly addNameRange '0.3.3',
24 silly addNameRange '0.3.4',
24 silly addNameRange '0.3.5',
24 silly addNameRange '2.0.0',
24 silly addNameRange '2.0.1',
24 silly addNameRange '2.0.2',
24 silly addNameRange '2.0.3',
24 silly addNameRange '2.0.4',
24 silly addNameRange '2.1.0',
24 silly addNameRange '2.2.0' ] ]
25 verbose addNamed [ 'js2coffee', '2.2.0' ]
26 verbose addNamed [ '2.2.0', '2.2.0' ]
27 silly lockFile 09d803d7-js2coffee-2-2-0 js2coffee@2.2.0
28 verbose lock js2coffee@2.2.0 /home/rormuc-01/.npm/09d803d7-js2coffee-2-2-0.lock
29 silly lockFile c20075eb-rg-js2coffee-js2coffee-2-2-0-tgz https://registry.npmjs.org/js2coffee/-/js2coffee-2.2.0.tgz
30 verbose lock https://registry.npmjs.org/js2coffee/-/js2coffee-2.2.0.tgz /home/rormuc-01/.npm/c20075eb-rg-js2coffee-js2coffee-2-2-0-tgz.lock
31 verbose addRemoteTarball [ 'https://registry.npmjs.org/js2coffee/-/js2coffee-2.2.0.tgz',
31 verbose addRemoteTarball '821aaef62bbee35a29ea8c0475e20fe9f10043c5' ]
32 info retry fetch attempt 1 at 22:31:12
33 verbose fetch to= /home/rormuc-01/tmp/npm-11770-gJrgxqxk/1464640272721-0.5471235641743988/tmp.tgz
34 http GET https://registry.npmjs.org/js2coffee/-/js2coffee-2.2.0.tgz
35 http 200 https://registry.npmjs.org/js2coffee/-/js2coffee-2.2.0.tgz
36 verbose tar unpack /home/rormuc-01/tmp/npm-11770-gJrgxqxk/1464640272721-0.5471235641743988/tmp.tgz
37 silly lockFile 09351a28-72721-0-5471235641743988-package tar:///home/rormuc-01/tmp/npm-11770-gJrgxqxk/1464640272721-0.5471235641743988/package
38 verbose lock tar:///home/rormuc-01/tmp/npm-11770-gJrgxqxk/1464640272721-0.5471235641743988/package /home/rormuc-01/.npm/09351a28-72721-0-5471235641743988-package.lock
39 silly lockFile 7f842f8b-72721-0-5471235641743988-tmp-tgz tar:///home/rormuc-01/tmp/npm-11770-gJrgxqxk/1464640272721-0.5471235641743988/tmp.tgz
40 verbose lock tar:///home/rormuc-01/tmp/npm-11770-gJrgxqxk/1464640272721-0.5471235641743988/tmp.tgz /home/rormuc-01/.npm/7f842f8b-72721-0-5471235641743988-tmp-tgz.lock
41 silly gunzTarPerm modes [ '755', '644' ]
42 silly gunzTarPerm extractEntry package.json
43 silly gunzTarPerm extractEntry .npmignore
44 silly gunzTarPerm extractEntry README.md
45 silly gunzTarPerm extractEntry LICENSE
46 silly gunzTarPerm extractEntry index.js
47 silly gunzTarPerm extractEntry bin/js2coffee
48 silly gunzTarPerm extractEntry Makefile
49 silly gunzTarPerm extractEntry .travis.yml
50 silly gunzTarPerm extractEntry Usage.txt
51 silly gunzTarPerm extractEntry CONTRIBUTING.md
52 silly gunzTarPerm extractEntry dist/js2coffee.js
53 silly gunzTarPerm extractEntry HISTORY.md
54 silly gunzTarPerm extractEntry js2coffee.coffee
55 silly gunzTarPerm extractEntry lib/cli.js
56 silly gunzTarPerm extractEntry lib/builder/base.coffee
57 silly gunzTarPerm extractEntry lib/builder/index.coffee
58 silly gunzTarPerm extractEntry lib/builder/strip_spaces.coffee
59 silly gunzTarPerm extractEntry lib/helpers/index.coffee
60 silly gunzTarPerm extractEntry lib/helpers.coffee
61 silly gunzTarPerm extractEntry lib/support/debug.coffee
62 silly gunzTarPerm extractEntry lib/support/report_notes.coffee
63 silly gunzTarPerm extractEntry lib/support/report_specs.coffee
64 silly gunzTarPerm extractEntry lib/support/specs_iterator.coffee
65 silly gunzTarPerm extractEntry lib/transforms/literals.coffee
66 silly gunzTarPerm extractEntry lib/transforms/base.coffee
67 silly gunzTarPerm extractEntry lib/transforms/blocks.coffee
68 silly gunzTarPerm extractEntry lib/transforms/comments.coffee
69 silly gunzTarPerm extractEntry lib/transforms/empty_statements.coffee
70 silly gunzTarPerm extractEntry lib/transforms/exponents.coffee
71 silly gunzTarPerm extractEntry lib/transforms/functions.coffee
72 silly gunzTarPerm extractEntry lib/transforms/ifs.coffee
73 silly gunzTarPerm extractEntry lib/transforms/iife.coffee
74 silly gunzTarPerm extractEntry lib/transforms/binary.coffee
75 silly gunzTarPerm extractEntry lib/transforms/loops.coffee
76 silly gunzTarPerm extractEntry lib/transforms/members.coffee
77 silly gunzTarPerm extractEntry lib/transforms/objects.coffee
78 silly gunzTarPerm extractEntry lib/transforms/others.coffee
79 silly gunzTarPerm extractEntry lib/transforms/precedence.coffee
80 silly gunzTarPerm extractEntry lib/transforms/returns.coffee
81 silly gunzTarPerm extractEntry lib/transforms/switches.coffee
82 silly gunzTarPerm extractEntry lib/transforms/unsupported.coffee
83 silly gunzTarPerm extractEntry specs/members/identifier_in_brackets.txt
84 silly gunzTarPerm extractEntry specs/members/identifiers.txt
85 silly gunzTarPerm extractEntry specs/members/prototype.txt
86 silly gunzTarPerm extractEntry specs/members/this_prototype.txt
87 silly gunzTarPerm extractEntry specs/arrays/empty_array.txt
88 silly gunzTarPerm extractEntry specs/arrays/multiple_items.txt
89 silly gunzTarPerm extractEntry specs/compatibility_mode/assignment_of_reserved_words.txt
90 silly gunzTarPerm extractEntry specs/compatibility_mode/assignment_of_reserved_words_off.txt
91 silly gunzTarPerm extractEntry specs/compatibility_mode/empty_array_slots.txt
92 silly gunzTarPerm extractEntry specs/compatibility_mode/empty_array_slots_off.txt
93 silly gunzTarPerm extractEntry specs/compatibility_mode/equals.txt
94 silly gunzTarPerm extractEntry specs/compatibility_mode/equals_off.txt
95 silly gunzTarPerm extractEntry specs/compatibility_mode/named_function_expressions.txt
96 silly gunzTarPerm extractEntry specs/compatibility_mode/named_function_expressions_off.txt
97 silly gunzTarPerm extractEntry specs/compatibility_mode/undefined.txt
98 silly gunzTarPerm extractEntry specs/compatibility_mode/undefined_off.txt
99 silly gunzTarPerm extractEntry specs/default_params/mixed_params.txt
100 silly gunzTarPerm extractEntry specs/default_params/mixed_params_2.txt
101 silly gunzTarPerm extractEntry specs/default_params/with_defaults.txt
102 silly gunzTarPerm extractEntry specs/default_params/with_non_literal_defaults.txt
103 silly gunzTarPerm extractEntry specs/errors/breakless_switch.txt
104 silly gunzTarPerm extractEntry specs/errors/reserved_keyword.txt
105 silly gunzTarPerm extractEntry specs/errors/reserved_keyword_in_params.txt
106 silly gunzTarPerm extractEntry specs/errors/reserved_keyword_in_var.txt
107 silly gunzTarPerm extractEntry specs/errors/switch_default_cases.txt
108 silly gunzTarPerm extractEntry specs/errors/with.txt
109 silly gunzTarPerm extractEntry specs/function_calls/call_with_function_expression.txt
110 silly gunzTarPerm extractEntry specs/function_calls/call_with_function_indented.txt
111 silly gunzTarPerm extractEntry specs/function_calls/call_with_function_then_object.txt
112 silly gunzTarPerm extractEntry specs/function_calls/call_with_multiple_objects.txt
113 silly gunzTarPerm extractEntry specs/function_calls/call_with_object.txt
114 silly gunzTarPerm extractEntry specs/function_calls/call_with_param_after_function.txt
115 silly gunzTarPerm extractEntry specs/function_calls/chaining.txt
116 silly gunzTarPerm extractEntry specs/function_calls/expression_with_call.txt
117 silly gunzTarPerm extractEntry specs/function_calls/iife_with_different_argument_names.txt
118 silly gunzTarPerm extractEntry specs/functions/prevent_implicit_returns.txt
119 silly gunzTarPerm extractEntry specs/functions/dont_unpack_returns_in_incomplete_ifs.txt
120 silly gunzTarPerm extractEntry specs/functions/functions_after_var.txt
121 silly gunzTarPerm extractEntry specs/functions/functions_in_ternaries.txt
122 silly gunzTarPerm extractEntry specs/functions/multiple_declarations.txt
123 silly gunzTarPerm extractEntry specs/functions/multiple_expressions.txt
124 silly gunzTarPerm extractEntry specs/functions/named_function_expressions.txt
125 silly gunzTarPerm extractEntry specs/functions/nested_declarations.txt
126 silly gunzTarPerm extractEntry specs/functions/nested_functions_in_object.txt
127 silly gunzTarPerm extractEntry specs/functions/function_reordering.txt
128 silly gunzTarPerm extractEntry specs/functions/return_object.txt
129 silly gunzTarPerm extractEntry specs/functions/return_statement.txt
130 silly gunzTarPerm extractEntry specs/functions/undefined_in_function_expression_parameters.txt
131 silly gunzTarPerm extractEntry specs/functions/undefined_in_parameters.txt
132 silly gunzTarPerm extractEntry specs/functions/unpacking_returns.txt
133 silly gunzTarPerm extractEntry specs/functions/unpacking_returns_in_ifs.txt
134 silly gunzTarPerm extractEntry specs/functions/unpacking_returns_in_ifs_with_elses.txt
135 silly gunzTarPerm extractEntry specs/functions/unpacking_returns_in_nested_ifs.txt
136 silly gunzTarPerm extractEntry specs/functions/with_arguments.txt
137 silly gunzTarPerm extractEntry specs/globals/global_assignment.txt
138 silly gunzTarPerm extractEntry specs/globals/global_assignment_compat.txt
139 silly gunzTarPerm extractEntry specs/globals/in_function_params.txt
140 silly gunzTarPerm extractEntry specs/if/if_with_else.txt
141 silly gunzTarPerm extractEntry specs/if/blank_ifs.txt
142 silly gunzTarPerm extractEntry specs/if/else_if.txt
143 silly gunzTarPerm extractEntry specs/if/escaping_if_functions.txt
144 silly gunzTarPerm extractEntry specs/if/escaping_if_functions_with_indent.txt
145 silly gunzTarPerm extractEntry specs/if/if_blocks.txt
146 silly gunzTarPerm extractEntry specs/if/if_statement.txt
147 silly gunzTarPerm extractEntry specs/if/blank_ifs_with_comments.txt
148 silly gunzTarPerm extractEntry specs/if/if_with_else_if_inside_functions.txt
149 silly gunzTarPerm extractEntry specs/if/if_with_else_inside_functions.txt
150 silly gunzTarPerm extractEntry specs/if/if_with_nesting.txt
151 silly gunzTarPerm extractEntry specs/if/multiple_else_ifs.txt
152 silly gunzTarPerm extractEntry specs/if/non_block_consequents.txt
153 silly gunzTarPerm extractEntry specs/if/ternary_in_if.txt
154 silly gunzTarPerm extractEntry specs/if/ternary_in_if_and_binary.txt
155 silly gunzTarPerm extractEntry specs/iife/iife.txt
156 silly gunzTarPerm extractEntry specs/iife/iife_as_an_expression.txt
157 silly gunzTarPerm extractEntry specs/iife/iife_with_arguments.txt
158 silly gunzTarPerm extractEntry specs/iife/iife_with_multiple_arguments.txt
159 silly gunzTarPerm extractEntry specs/iife/iife_with_non_matching_arguments.txt
160 silly gunzTarPerm extractEntry specs/iife/iife_with_non_matching_literal_arguments.txt
161 silly gunzTarPerm extractEntry specs/indent/spaces_4.txt
162 silly gunzTarPerm extractEntry specs/indent/spaces_8.txt
163 silly gunzTarPerm extractEntry specs/indent/tab.txt
164 silly gunzTarPerm extractEntry specs/legacy/function_order.txt
165 silly gunzTarPerm extractEntry specs/legacy/anon_invocation.txt
166 silly gunzTarPerm extractEntry specs/legacy/assign.txt
167 silly gunzTarPerm extractEntry specs/legacy/bitwise_shift.txt
168 silly gunzTarPerm extractEntry specs/legacy/blank_lines.txt
169 silly gunzTarPerm extractEntry specs/legacy/block_comments.txt
170 silly gunzTarPerm extractEntry specs/legacy/call_statement.txt
171 silly gunzTarPerm extractEntry specs/legacy/crlf.txt
172 silly gunzTarPerm extractEntry specs/legacy/debugger.txt
173 silly gunzTarPerm extractEntry specs/legacy/delete.txt
174 silly gunzTarPerm extractEntry specs/legacy/do.txt
175 silly gunzTarPerm extractEntry specs/legacy/dont_unreserve_property_accessors.txt
176 silly gunzTarPerm extractEntry specs/legacy/empty_function.txt
177 silly gunzTarPerm extractEntry specs/legacy/empty_function_bodies.txt
178 silly gunzTarPerm extractEntry specs/legacy/empty_semicolon.txt
179 silly gunzTarPerm extractEntry specs/legacy/equal_regex.txt
180 silly gunzTarPerm extractEntry specs/legacy/floating_point_numbers.txt
181 silly gunzTarPerm extractEntry specs/legacy/for.txt
182 silly gunzTarPerm extractEntry specs/legacy/for_in.txt
183 silly gunzTarPerm extractEntry specs/legacy/array_literals.txt
184 silly gunzTarPerm extractEntry specs/legacy/function_property.txt
185 silly gunzTarPerm extractEntry specs/legacy/function_with_keyword.txt
186 silly gunzTarPerm extractEntry specs/legacy/if_in.txt
187 silly gunzTarPerm extractEntry specs/legacy/increment_decrement.txt
188 silly gunzTarPerm extractEntry specs/legacy/index.txt
189 silly gunzTarPerm extractEntry specs/legacy/numbers.txt
190 silly gunzTarPerm extractEntry specs/legacy/or.txt
191 silly gunzTarPerm extractEntry specs/legacy/parenthesized_new.txt
192 silly gunzTarPerm extractEntry specs/legacy/return_function.txt
193 silly gunzTarPerm extractEntry specs/legacy/simple_addition.txt
194 silly gunzTarPerm extractEntry specs/legacy/single_line_else.txt
195 silly gunzTarPerm extractEntry specs/legacy/single_return.txt
196 silly gunzTarPerm extractEntry specs/legacy/switch.txt
197 silly gunzTarPerm extractEntry specs/legacy/ternary.txt
198 silly gunzTarPerm extractEntry specs/legacy/this_attribute.txt
199 silly gunzTarPerm extractEntry specs/legacy/this_keyword.txt
200 silly gunzTarPerm extractEntry specs/legacy/throw.txt
201 silly gunzTarPerm extractEntry specs/legacy/unary.txt
202 silly gunzTarPerm extractEntry specs/legacy/var.txt
203 silly gunzTarPerm extractEntry specs/legacy_pending/object_literal_with_function.txt
204 silly gunzTarPerm extractEntry specs/legacy_pending/destructuring_assignment.txt
205 silly gunzTarPerm extractEntry specs/legacy_pending/escape.txt
206 silly gunzTarPerm extractEntry specs/legacy_pending/existence.txt
207 silly gunzTarPerm extractEntry specs/legacy_pending/for_continue.txt
208 silly gunzTarPerm extractEntry specs/legacy_pending/function_chaining.txt
209 silly gunzTarPerm extractEntry specs/legacy_pending/hash.txt
210 silly gunzTarPerm extractEntry specs/legacy_pending/if_return.txt
211 silly gunzTarPerm extractEntry specs/legacy_pending/instanceof.txt
212 silly gunzTarPerm extractEntry specs/legacy_pending/invocation_object_literal_first.txt
213 silly gunzTarPerm extractEntry specs/legacy_pending/jquery_wrapper.txt
214 silly gunzTarPerm extractEntry specs/legacy_pending/loop.txt
215 silly gunzTarPerm extractEntry specs/legacy_pending/no_return.txt
216 silly gunzTarPerm extractEntry specs/legacy_pending/not.txt
217 silly gunzTarPerm extractEntry specs/legacy_pending/not_not.txt
218 silly gunzTarPerm extractEntry specs/legacy_pending/object_literal_at_index.txt
219 silly gunzTarPerm extractEntry specs/legacy_pending/object_literal_return.txt
220 silly gunzTarPerm extractEntry specs/legacy_pending/destructuring_in_functions.txt
221 silly gunzTarPerm extractEntry specs/legacy_pending/object_literals.txt
222 silly gunzTarPerm extractEntry specs/legacy_pending/percent_d.txt
223 silly gunzTarPerm extractEntry specs/legacy_pending/pretty_arrays.txt
224 silly gunzTarPerm extractEntry specs/legacy_pending/prototype.txt
225 silly gunzTarPerm extractEntry specs/legacy_pending/reserve.txt
226 silly gunzTarPerm extractEntry specs/legacy_pending/return_in_if.txt
227 silly gunzTarPerm extractEntry specs/legacy_pending/return_object.txt
228 silly gunzTarPerm extractEntry specs/legacy_pending/return_object_parenthesize.txt
229 silly gunzTarPerm extractEntry specs/legacy_pending/returns.txt
230 silly gunzTarPerm extractEntry specs/legacy_pending/settimeout.txt
231 silly gunzTarPerm extractEntry specs/legacy_pending/single_line_if.txt
232 silly gunzTarPerm extractEntry specs/legacy_pending/single_line_while.txt
233 silly gunzTarPerm extractEntry specs/legacy_pending/single_quotes.txt
234 silly gunzTarPerm extractEntry specs/legacy_pending/switch_gt_two.txt
235 silly gunzTarPerm extractEntry specs/legacy_pending/switch_indent_tab.txt
236 silly gunzTarPerm extractEntry specs/legacy_pending/unless_bug.txt
237 silly gunzTarPerm extractEntry specs/legacy_pending/while.txt
238 silly gunzTarPerm extractEntry specs/loops/for_with_no_arguments.txt
239 silly gunzTarPerm extractEntry specs/loops/continue_statement.txt
240 silly gunzTarPerm extractEntry specs/loops/do_while_with_other_statements.txt
241 silly gunzTarPerm extractEntry specs/loops/empty_while.txt
242 silly gunzTarPerm extractEntry specs/loops/for_in_with_if.txt
243 silly gunzTarPerm extractEntry specs/loops/for_in_with_var.txt
244 silly gunzTarPerm extractEntry specs/loops/for_with_continue.txt
245 silly gunzTarPerm extractEntry specs/loops/for_with_continue_with_switch.txt
246 silly gunzTarPerm extractEntry specs/loops/for_with_continue_without_init.txt
247 silly gunzTarPerm extractEntry specs/loops/for_with_if.txt
248 silly gunzTarPerm extractEntry specs/loops/do_while.txt
249 silly gunzTarPerm extractEntry specs/loops/for_with_no_body.txt
250 silly gunzTarPerm extractEntry specs/loops/for_with_no_init.txt
251 silly gunzTarPerm extractEntry specs/loops/for_with_no_test.txt
252 silly gunzTarPerm extractEntry specs/loops/for_with_no_update.txt
253 silly gunzTarPerm extractEntry specs/loops/forever_loop.txt
254 silly gunzTarPerm extractEntry specs/loops/indented_for.txt
255 silly gunzTarPerm extractEntry specs/loops/simple_for.txt
256 silly gunzTarPerm extractEntry specs/loops/while.txt
257 silly gunzTarPerm extractEntry specs/loops/while_with_break.txt
258 silly gunzTarPerm extractEntry specs/loops/while_with_no_body.txt
259 silly gunzTarPerm extractEntry specs/comments/line_comments_before_function.txt
260 silly gunzTarPerm extractEntry specs/comments/after_block_comment.txt
261 silly gunzTarPerm extractEntry specs/comments/block_comments_in_blocks.txt
262 silly gunzTarPerm extractEntry specs/comments/block_comments_with_space.txt
263 silly gunzTarPerm extractEntry specs/comments/comment_before_function.txt
264 silly gunzTarPerm extractEntry specs/comments/comments_in_if_blocks.txt
265 silly gunzTarPerm extractEntry specs/comments/indented_jsdoc_comments.txt
266 silly gunzTarPerm extractEntry specs/comments/line_comments.txt
267 silly gunzTarPerm extractEntry specs/comments/block_comments.txt
268 silly gunzTarPerm extractEntry specs/comments/multiple_functions_with_multiple_comments.txt
269 silly gunzTarPerm extractEntry specs/comments/program_block_comment_after.txt
270 silly gunzTarPerm extractEntry specs/comments/program_block_comment_before.txt
271 silly gunzTarPerm extractEntry specs/comments/program_block_comment_sole.txt
272 silly gunzTarPerm extractEntry specs/comments/program_with_only_comments.txt
273 silly gunzTarPerm extractEntry specs/comments/sole_block_comment.txt
274 silly gunzTarPerm extractEntry specs/comments/trailing_line_comment.txt
275 silly gunzTarPerm extractEntry specs/new/new_operator.txt
276 silly gunzTarPerm extractEntry specs/new/new_operator_with_arguments.txt
277 silly gunzTarPerm extractEntry specs/new/new_with_complex_callee.txt
278 silly gunzTarPerm extractEntry specs/new/new_with_function_expression.txt
279 silly gunzTarPerm extractEntry specs/new/new_with_function_expression_and_string.txt
280 silly gunzTarPerm extractEntry specs/objects/nesting_into_a_single_line.txt
281 silly gunzTarPerm extractEntry specs/objects/arrray_of_objects.txt
282 silly gunzTarPerm extractEntry specs/objects/multiple_object_expressions.txt
283 silly gunzTarPerm extractEntry specs/objects/multiple_properties.txt
284 silly gunzTarPerm extractEntry specs/objects/nested_objects.txt
285 silly gunzTarPerm extractEntry specs/objects/call_with_object.txt
286 silly gunzTarPerm extractEntry specs/objects/object_with_arrays.txt
287 silly gunzTarPerm extractEntry specs/objects/simple_object.txt
288 silly gunzTarPerm extractEntry specs/objects/single_object_expression.txt
289 silly gunzTarPerm extractEntry specs/objects/singleton_with_methods.txt
290 silly gunzTarPerm extractEntry specs/objects/unusual_identifiers.txt
291 silly gunzTarPerm extractEntry specs/pending/duplicate_functions.txt
292 silly gunzTarPerm extractEntry specs/pending/exports.txt
293 silly gunzTarPerm extractEntry specs/pending/for_in_without_var.txt
294 silly gunzTarPerm extractEntry specs/pending/global.txt
295 silly gunzTarPerm extractEntry specs/pending/object_literal_return.txt
296 silly gunzTarPerm extractEntry specs/pending/shadowing_of_function_names.txt
297 silly gunzTarPerm extractEntry specs/pending/simple_for_loop.txt
298 silly gunzTarPerm extractEntry specs/pending/simple_for_loop_with_lte.txt
299 silly gunzTarPerm extractEntry specs/pending/special_characters.txt
300 silly gunzTarPerm extractEntry specs/precedence/logical_operators.txt
301 silly gunzTarPerm extractEntry specs/precedence/addition_and_multiplication.txt
302 silly gunzTarPerm extractEntry specs/precedence/binary_expressions_with_parens.txt
303 silly gunzTarPerm extractEntry specs/precedence/call_expression.txt
304 silly gunzTarPerm extractEntry specs/precedence/instanceof_and_function_call.txt
305 silly gunzTarPerm extractEntry specs/precedence/intransitive_operations_division.txt
306 silly gunzTarPerm extractEntry specs/precedence/intransitive_operations_subtraction.txt
307 silly gunzTarPerm extractEntry specs/precedence/binary_expressions.txt
308 silly gunzTarPerm extractEntry specs/precedence/nested_new.txt
309 silly gunzTarPerm extractEntry specs/precedence/nested_ternary.txt
310 silly gunzTarPerm extractEntry specs/precedence/nested_ternary_2.txt
311 silly gunzTarPerm extractEntry specs/precedence/parenthesized_classname_in_new.txt
312 silly gunzTarPerm extractEntry specs/precedence/strip_useless_parens.txt
313 silly gunzTarPerm extractEntry specs/precedence/ternary_and_assignment.txt
314 silly gunzTarPerm extractEntry specs/precedence/typeof_and_member_expression.txt
315 silly gunzTarPerm extractEntry specs/regexp/blank_with_flag.txt
316 silly gunzTarPerm extractEntry specs/regexp/equals.txt
317 silly gunzTarPerm extractEntry specs/regexp/equals_with_flag.txt
318 silly gunzTarPerm extractEntry specs/shadowing/var_shadowing.txt
319 silly gunzTarPerm extractEntry specs/simple/index_resolution_witH_this.txt
320 silly gunzTarPerm extractEntry specs/simple/array_newlines.txt
321 silly gunzTarPerm extractEntry specs/simple/booleans.txt
322 silly gunzTarPerm extractEntry specs/simple/call_with_function.txt
323 silly gunzTarPerm extractEntry specs/simple/debugger_statement.txt
324 silly gunzTarPerm extractEntry specs/simple/delete.txt
325 silly gunzTarPerm extractEntry specs/simple/empty_statement.txt
326 silly gunzTarPerm extractEntry specs/simple/empty_statement_with_other_statements.txt
327 silly gunzTarPerm extractEntry specs/simple/exponents.txt
328 silly gunzTarPerm extractEntry specs/simple/exponents_precedence.txt
329 silly gunzTarPerm extractEntry specs/simple/exponents_with_strange_arguments.txt
330 silly gunzTarPerm extractEntry specs/simple/function_call.txt
331 silly gunzTarPerm extractEntry specs/simple/function_call_with_arguments.txt
332 silly gunzTarPerm extractEntry specs/simple/function_in_switch.txt
333 silly gunzTarPerm extractEntry specs/simple/increment.txt
334 silly gunzTarPerm extractEntry specs/simple/indentation_of_parentheses.txt
335 silly gunzTarPerm extractEntry specs/simple/indented_throw.txt
336 silly gunzTarPerm extractEntry specs/simple/index_resolution.txt
337 silly gunzTarPerm extractEntry specs/simple/index_resolution_of_expression.txt
338 silly gunzTarPerm extractEntry specs/simple/index_resolution_of_strings.txt
339 silly gunzTarPerm extractEntry specs/simple/binary_operators.txt
340 silly gunzTarPerm extractEntry specs/simple/inline_assignment.txt
341 silly gunzTarPerm extractEntry specs/simple/logical_expressions.txt
342 silly gunzTarPerm extractEntry specs/simple/multiple_unary_operators.txt
343 silly gunzTarPerm extractEntry specs/simple/nested_function_calls.txt
344 silly gunzTarPerm extractEntry specs/simple/nesting_if_and_assignment.txt
345 silly gunzTarPerm extractEntry specs/simple/null_check.txt
346 silly gunzTarPerm extractEntry specs/simple/prefix_increment.txt
347 silly gunzTarPerm extractEntry specs/simple/prototype.txt
348 silly gunzTarPerm extractEntry specs/simple/recursing_into_new_functions.txt
349 silly gunzTarPerm extractEntry specs/simple/return_nothing.txt
350 silly gunzTarPerm extractEntry specs/simple/scientific_notation.txt
351 silly gunzTarPerm extractEntry specs/simple/sequence_expression.txt
352 silly gunzTarPerm extractEntry specs/simple/sequence_expression_with_indent.txt
353 silly gunzTarPerm extractEntry specs/simple/standalone_this.txt
354 silly gunzTarPerm extractEntry specs/simple/ternary_operator.txt
355 silly gunzTarPerm extractEntry specs/simple/ternary_operator_nesting.txt
356 silly gunzTarPerm extractEntry specs/simple/this_prefix.txt
357 silly gunzTarPerm extractEntry specs/simple/throw.txt
358 silly gunzTarPerm extractEntry specs/simple/void_0.txt
359 silly gunzTarPerm extractEntry specs/spacing/block_comments.txt
360 silly gunzTarPerm extractEntry specs/spacing/collapsing_extra_newlines.txt
361 silly gunzTarPerm extractEntry specs/special_cases/assignment_in_condition.txt
362 silly gunzTarPerm extractEntry specs/special_cases/browserify_standalone_wrapper.txt
363 silly gunzTarPerm extractEntry specs/special_cases/browserify_wrapper.txt
364 silly gunzTarPerm extractEntry specs/special_cases/unary_and_object_expression.txt
365 silly gunzTarPerm extractEntry specs/special_cases/unary_and_object_with_call.txt
366 silly gunzTarPerm extractEntry specs/strings/empty_string.txt
367 silly gunzTarPerm extractEntry specs/strings/prevent_interpolation.txt
368 silly gunzTarPerm extractEntry specs/strings/simple_string.txt
369 silly gunzTarPerm extractEntry specs/strings/single_quotes.txt
370 silly gunzTarPerm extractEntry specs/strings/string_with_escapes.txt
371 silly gunzTarPerm extractEntry specs/strings/unicode.txt
372 silly gunzTarPerm extractEntry specs/switch/case_consolidation.txt
373 silly gunzTarPerm extractEntry specs/switch/case_consolidation_with_default.txt
374 silly gunzTarPerm extractEntry specs/switch/switch.txt
375 silly gunzTarPerm extractEntry specs/switch/switch_with_comments.txt
376 silly gunzTarPerm extractEntry specs/switch/switch_with_conditional_expression.txt
377 silly gunzTarPerm extractEntry specs/switch/switch_with_continue.txt
378 silly gunzTarPerm extractEntry specs/switch/switch_with_return.txt
379 silly gunzTarPerm extractEntry specs/try/no_finally.txt
380 silly gunzTarPerm extractEntry specs/try/try_catch_finally.txt
381 silly gunzTarPerm extractEntry specs/try/try_with_indent.txt
382 silly gunzTarPerm extractEntry specs/var/mixed_var_declarations.txt
383 silly gunzTarPerm extractEntry specs/var/multiple_var_declaration.txt
384 silly gunzTarPerm extractEntry specs/var/multiple_var_declarations_with_indent.txt
385 silly gunzTarPerm extractEntry specs/var/var_declaration.txt
386 silly gunzTarPerm extractEntry specs/var/var_without_initializer.txt
387 silly gunzTarPerm extractEntry specs/warnings/equals.txt
388 silly gunzTarPerm extractEntry specs/warnings/for_in_without_var.txt
389 silly gunzTarPerm extractEntry specs/warnings/shadowing.txt
390 silly gunzTarPerm extractEntry notes/AST.md
391 silly gunzTarPerm extractEntry notes/About_redux.md
392 silly gunzTarPerm extractEntry notes/Goals.md
393 silly gunzTarPerm extractEntry notes/Hacking.md
394 silly gunzTarPerm extractEntry notes/Migration_guide.md
395 silly gunzTarPerm extractEntry notes/New_in_2.0.md
396 silly gunzTarPerm extractEntry notes/Precedence.md
397 silly gunzTarPerm extractEntry notes/Redux_history.md
398 silly gunzTarPerm extractEntry notes/Special_cases.md
399 silly gunzTarPerm extractEntry notes/Specs.md
400 silly gunzTarPerm extractEntry test/precedence.coffee
401 silly gunzTarPerm extractEntry test/build.coffee
402 silly gunzTarPerm extractEntry test/errors.coffee
403 silly gunzTarPerm extractEntry test/helpers.coffee
404 silly gunzTarPerm extractEntry test/mocha.opts
405 silly gunzTarPerm extractEntry test/builder_base.coffee
406 silly gunzTarPerm extractEntry test/setup.coffee
407 silly gunzTarPerm extractEntry test/specs.coffee
408 silly gunzTarPerm extractEntry test/unsupported.coffee
409 silly gunzTarPerm extractEntry test/version.coffee
410 silly gunzTarPerm extractEntry test/warnings.coffee
411 silly lockFile 09351a28-72721-0-5471235641743988-package tar:///home/rormuc-01/tmp/npm-11770-gJrgxqxk/1464640272721-0.5471235641743988/package
412 silly lockFile 09351a28-72721-0-5471235641743988-package tar:///home/rormuc-01/tmp/npm-11770-gJrgxqxk/1464640272721-0.5471235641743988/package
413 silly lockFile 7f842f8b-72721-0-5471235641743988-tmp-tgz tar:///home/rormuc-01/tmp/npm-11770-gJrgxqxk/1464640272721-0.5471235641743988/tmp.tgz
414 silly lockFile 7f842f8b-72721-0-5471235641743988-tmp-tgz tar:///home/rormuc-01/tmp/npm-11770-gJrgxqxk/1464640272721-0.5471235641743988/tmp.tgz
415 verbose tar pack [ '/home/rormuc-01/.npm/js2coffee/2.2.0/package.tgz',
415 verbose tar pack '/home/rormuc-01/tmp/npm-11770-gJrgxqxk/1464640272721-0.5471235641743988/package' ]
416 verbose tarball /home/rormuc-01/.npm/js2coffee/2.2.0/package.tgz
417 verbose folder /home/rormuc-01/tmp/npm-11770-gJrgxqxk/1464640272721-0.5471235641743988/package
418 silly lockFile 09351a28-72721-0-5471235641743988-package tar:///home/rormuc-01/tmp/npm-11770-gJrgxqxk/1464640272721-0.5471235641743988/package
419 verbose lock tar:///home/rormuc-01/tmp/npm-11770-gJrgxqxk/1464640272721-0.5471235641743988/package /home/rormuc-01/.npm/09351a28-72721-0-5471235641743988-package.lock
420 silly lockFile af6fd64b--npm-js2coffee-2-2-0-package-tgz tar:///home/rormuc-01/.npm/js2coffee/2.2.0/package.tgz
421 verbose lock tar:///home/rormuc-01/.npm/js2coffee/2.2.0/package.tgz /home/rormuc-01/.npm/af6fd64b--npm-js2coffee-2-2-0-package-tgz.lock
422 silly lockFile 09351a28-72721-0-5471235641743988-package tar:///home/rormuc-01/tmp/npm-11770-gJrgxqxk/1464640272721-0.5471235641743988/package
423 silly lockFile 09351a28-72721-0-5471235641743988-package tar:///home/rormuc-01/tmp/npm-11770-gJrgxqxk/1464640272721-0.5471235641743988/package
424 silly lockFile af6fd64b--npm-js2coffee-2-2-0-package-tgz tar:///home/rormuc-01/.npm/js2coffee/2.2.0/package.tgz
425 silly lockFile af6fd64b--npm-js2coffee-2-2-0-package-tgz tar:///home/rormuc-01/.npm/js2coffee/2.2.0/package.tgz
426 silly lockFile 343ab25b-c-01-npm-js2coffee-2-2-0-package /home/rormuc-01/.npm/js2coffee/2.2.0/package
427 verbose lock /home/rormuc-01/.npm/js2coffee/2.2.0/package /home/rormuc-01/.npm/343ab25b-c-01-npm-js2coffee-2-2-0-package.lock
428 silly lockFile 343ab25b-c-01-npm-js2coffee-2-2-0-package /home/rormuc-01/.npm/js2coffee/2.2.0/package
429 silly lockFile 343ab25b-c-01-npm-js2coffee-2-2-0-package /home/rormuc-01/.npm/js2coffee/2.2.0/package
430 verbose tar unpack /home/rormuc-01/.npm/js2coffee/2.2.0/package.tgz
431 silly lockFile d2df102d-c-01-npm-js2coffee-2-2-0-package tar:///home/rormuc-01/.npm/js2coffee/2.2.0/package
432 verbose lock tar:///home/rormuc-01/.npm/js2coffee/2.2.0/package /home/rormuc-01/.npm/d2df102d-c-01-npm-js2coffee-2-2-0-package.lock
433 silly lockFile af6fd64b--npm-js2coffee-2-2-0-package-tgz tar:///home/rormuc-01/.npm/js2coffee/2.2.0/package.tgz
434 verbose lock tar:///home/rormuc-01/.npm/js2coffee/2.2.0/package.tgz /home/rormuc-01/.npm/af6fd64b--npm-js2coffee-2-2-0-package-tgz.lock
435 silly gunzTarPerm modes [ '755', '644' ]
436 silly gunzTarPerm extractEntry package.json
437 silly gunzTarPerm extractEntry .npmignore
438 silly gunzTarPerm extractEntry README.md
439 silly gunzTarPerm extractEntry LICENSE
440 silly gunzTarPerm extractEntry index.js
441 silly gunzTarPerm extractEntry Makefile
442 silly gunzTarPerm extractEntry CONTRIBUTING.md
443 silly gunzTarPerm extractEntry Usage.txt
444 silly gunzTarPerm extractEntry .travis.yml
445 silly gunzTarPerm extractEntry dist/js2coffee.js
446 silly gunzTarPerm extractEntry HISTORY.md
447 silly gunzTarPerm extractEntry js2coffee.coffee
448 silly gunzTarPerm extractEntry lib/cli.js
449 silly gunzTarPerm extractEntry lib/builder/base.coffee
450 silly gunzTarPerm extractEntry lib/builder/index.coffee
451 silly gunzTarPerm extractEntry lib/builder/strip_spaces.coffee
452 silly gunzTarPerm extractEntry lib/helpers/index.coffee
453 silly gunzTarPerm extractEntry lib/helpers.coffee
454 silly gunzTarPerm extractEntry lib/support/debug.coffee
455 silly gunzTarPerm extractEntry lib/support/report_notes.coffee
456 silly gunzTarPerm extractEntry lib/support/report_specs.coffee
457 silly gunzTarPerm extractEntry lib/support/specs_iterator.coffee
458 silly gunzTarPerm extractEntry lib/transforms/literals.coffee
459 silly gunzTarPerm extractEntry lib/transforms/base.coffee
460 silly gunzTarPerm extractEntry lib/transforms/blocks.coffee
461 silly gunzTarPerm extractEntry lib/transforms/comments.coffee
462 silly gunzTarPerm extractEntry lib/transforms/empty_statements.coffee
463 silly gunzTarPerm extractEntry lib/transforms/exponents.coffee
464 silly gunzTarPerm extractEntry lib/transforms/functions.coffee
465 silly gunzTarPerm extractEntry lib/transforms/ifs.coffee
466 silly gunzTarPerm extractEntry lib/transforms/iife.coffee
467 silly gunzTarPerm extractEntry lib/transforms/binary.coffee
468 silly gunzTarPerm extractEntry lib/transforms/loops.coffee
469 silly gunzTarPerm extractEntry lib/transforms/members.coffee
470 silly gunzTarPerm extractEntry lib/transforms/objects.coffee
471 silly gunzTarPerm extractEntry lib/transforms/others.coffee
472 silly gunzTarPerm extractEntry lib/transforms/precedence.coffee
473 silly gunzTarPerm extractEntry lib/transforms/returns.coffee
474 silly gunzTarPerm extractEntry lib/transforms/switches.coffee
475 silly gunzTarPerm extractEntry lib/transforms/unsupported.coffee
476 silly gunzTarPerm extractEntry notes/AST.md
477 silly gunzTarPerm extractEntry notes/About_redux.md
478 silly gunzTarPerm extractEntry notes/Goals.md
479 silly gunzTarPerm extractEntry notes/Hacking.md
480 silly gunzTarPerm extractEntry notes/Migration_guide.md
481 silly gunzTarPerm extractEntry notes/New_in_2.0.md
482 silly gunzTarPerm extractEntry notes/Precedence.md
483 silly gunzTarPerm extractEntry notes/Redux_history.md
484 silly gunzTarPerm extractEntry notes/Special_cases.md
485 silly gunzTarPerm extractEntry notes/Specs.md
486 silly gunzTarPerm extractEntry test/precedence.coffee
487 silly gunzTarPerm extractEntry test/build.coffee
488 silly gunzTarPerm extractEntry test/errors.coffee
489 silly gunzTarPerm extractEntry test/helpers.coffee
490 silly gunzTarPerm extractEntry test/mocha.opts
491 silly gunzTarPerm extractEntry test/builder_base.coffee
492 silly gunzTarPerm extractEntry test/setup.coffee
493 silly gunzTarPerm extractEntry test/specs.coffee
494 silly gunzTarPerm extractEntry test/unsupported.coffee
495 silly gunzTarPerm extractEntry test/version.coffee
496 silly gunzTarPerm extractEntry test/warnings.coffee
497 silly gunzTarPerm extractEntry specs/members/identifier_in_brackets.txt
498 silly gunzTarPerm extractEntry specs/members/identifiers.txt
499 silly gunzTarPerm extractEntry specs/members/prototype.txt
500 silly gunzTarPerm extractEntry specs/members/this_prototype.txt
501 silly gunzTarPerm extractEntry specs/arrays/empty_array.txt
502 silly gunzTarPerm extractEntry specs/arrays/multiple_items.txt
503 silly gunzTarPerm extractEntry specs/compatibility_mode/assignment_of_reserved_words.txt
504 silly gunzTarPerm extractEntry specs/compatibility_mode/assignment_of_reserved_words_off.txt
505 silly gunzTarPerm extractEntry specs/compatibility_mode/empty_array_slots.txt
506 silly gunzTarPerm extractEntry specs/compatibility_mode/empty_array_slots_off.txt
507 silly gunzTarPerm extractEntry specs/compatibility_mode/equals.txt
508 silly gunzTarPerm extractEntry specs/compatibility_mode/equals_off.txt
509 silly gunzTarPerm extractEntry specs/compatibility_mode/named_function_expressions.txt
510 silly gunzTarPerm extractEntry specs/compatibility_mode/named_function_expressions_off.txt
511 silly gunzTarPerm extractEntry specs/compatibility_mode/undefined.txt
512 silly gunzTarPerm extractEntry specs/compatibility_mode/undefined_off.txt
513 silly gunzTarPerm extractEntry specs/default_params/mixed_params.txt
514 silly gunzTarPerm extractEntry specs/default_params/mixed_params_2.txt
515 silly gunzTarPerm extractEntry specs/default_params/with_defaults.txt
516 silly gunzTarPerm extractEntry specs/default_params/with_non_literal_defaults.txt
517 silly gunzTarPerm extractEntry specs/errors/breakless_switch.txt
518 silly gunzTarPerm extractEntry specs/errors/reserved_keyword.txt
519 silly gunzTarPerm extractEntry specs/errors/reserved_keyword_in_params.txt
520 silly gunzTarPerm extractEntry specs/errors/reserved_keyword_in_var.txt
521 silly gunzTarPerm extractEntry specs/errors/switch_default_cases.txt
522 silly gunzTarPerm extractEntry specs/errors/with.txt
523 silly gunzTarPerm extractEntry specs/function_calls/call_with_function_expression.txt
524 silly gunzTarPerm extractEntry specs/function_calls/call_with_function_indented.txt
525 silly gunzTarPerm extractEntry specs/function_calls/call_with_function_then_object.txt
526 silly gunzTarPerm extractEntry specs/function_calls/call_with_multiple_objects.txt
527 silly gunzTarPerm extractEntry specs/function_calls/call_with_object.txt
528 silly gunzTarPerm extractEntry specs/function_calls/call_with_param_after_function.txt
529 silly gunzTarPerm extractEntry specs/function_calls/chaining.txt
530 silly gunzTarPerm extractEntry specs/function_calls/expression_with_call.txt
531 silly gunzTarPerm extractEntry specs/function_calls/iife_with_different_argument_names.txt
532 silly gunzTarPerm extractEntry specs/functions/prevent_implicit_returns.txt
533 silly gunzTarPerm extractEntry specs/functions/dont_unpack_returns_in_incomplete_ifs.txt
534 silly gunzTarPerm extractEntry specs/functions/functions_after_var.txt
535 silly gunzTarPerm extractEntry specs/functions/functions_in_ternaries.txt
536 silly gunzTarPerm extractEntry specs/functions/multiple_declarations.txt
537 silly gunzTarPerm extractEntry specs/functions/multiple_expressions.txt
538 silly gunzTarPerm extractEntry specs/functions/named_function_expressions.txt
539 silly gunzTarPerm extractEntry specs/functions/nested_declarations.txt
540 silly gunzTarPerm extractEntry specs/functions/nested_functions_in_object.txt
541 silly gunzTarPerm extractEntry specs/functions/function_reordering.txt
542 silly gunzTarPerm extractEntry specs/functions/return_object.txt
543 silly gunzTarPerm extractEntry specs/functions/return_statement.txt
544 silly gunzTarPerm extractEntry specs/functions/undefined_in_function_expression_parameters.txt
545 silly gunzTarPerm extractEntry specs/functions/undefined_in_parameters.txt
546 silly gunzTarPerm extractEntry specs/functions/unpacking_returns.txt
547 silly gunzTarPerm extractEntry specs/functions/unpacking_returns_in_ifs.txt
548 silly gunzTarPerm extractEntry specs/functions/unpacking_returns_in_ifs_with_elses.txt
549 silly gunzTarPerm extractEntry specs/functions/unpacking_returns_in_nested_ifs.txt
550 silly gunzTarPerm extractEntry specs/functions/with_arguments.txt
551 silly gunzTarPerm extractEntry specs/globals/global_assignment.txt
552 silly gunzTarPerm extractEntry specs/globals/global_assignment_compat.txt
553 silly gunzTarPerm extractEntry specs/globals/in_function_params.txt
554 silly gunzTarPerm extractEntry specs/if/if_with_else.txt
555 silly gunzTarPerm extractEntry specs/if/blank_ifs.txt
556 silly gunzTarPerm extractEntry specs/if/else_if.txt
557 silly gunzTarPerm extractEntry specs/if/escaping_if_functions.txt
558 silly gunzTarPerm extractEntry specs/if/escaping_if_functions_with_indent.txt
559 silly gunzTarPerm extractEntry specs/if/if_blocks.txt
560 silly gunzTarPerm extractEntry specs/if/if_statement.txt
561 silly gunzTarPerm extractEntry specs/if/blank_ifs_with_comments.txt
562 silly gunzTarPerm extractEntry specs/if/if_with_else_if_inside_functions.txt
563 silly gunzTarPerm extractEntry specs/if/if_with_else_inside_functions.txt
564 silly gunzTarPerm extractEntry specs/if/if_with_nesting.txt
565 silly gunzTarPerm extractEntry specs/if/multiple_else_ifs.txt
566 silly gunzTarPerm extractEntry specs/if/non_block_consequents.txt
567 silly gunzTarPerm extractEntry specs/if/ternary_in_if.txt
568 silly gunzTarPerm extractEntry specs/if/ternary_in_if_and_binary.txt
569 silly gunzTarPerm extractEntry specs/iife/iife.txt
570 silly gunzTarPerm extractEntry specs/iife/iife_as_an_expression.txt
571 silly gunzTarPerm extractEntry specs/iife/iife_with_arguments.txt
572 silly gunzTarPerm extractEntry specs/iife/iife_with_multiple_arguments.txt
573 silly gunzTarPerm extractEntry specs/iife/iife_with_non_matching_arguments.txt
574 silly gunzTarPerm extractEntry specs/iife/iife_with_non_matching_literal_arguments.txt
575 silly gunzTarPerm extractEntry specs/indent/spaces_4.txt
576 silly gunzTarPerm extractEntry specs/indent/spaces_8.txt
577 silly gunzTarPerm extractEntry specs/indent/tab.txt
578 silly gunzTarPerm extractEntry specs/legacy/function_order.txt
579 silly gunzTarPerm extractEntry specs/legacy/anon_invocation.txt
580 silly gunzTarPerm extractEntry specs/legacy/assign.txt
581 silly gunzTarPerm extractEntry specs/legacy/bitwise_shift.txt
582 silly gunzTarPerm extractEntry specs/legacy/blank_lines.txt
583 silly gunzTarPerm extractEntry specs/legacy/block_comments.txt
584 silly gunzTarPerm extractEntry specs/legacy/call_statement.txt
585 silly gunzTarPerm extractEntry specs/legacy/crlf.txt
586 silly gunzTarPerm extractEntry specs/legacy/debugger.txt
587 silly gunzTarPerm extractEntry specs/legacy/delete.txt
588 silly gunzTarPerm extractEntry specs/legacy/do.txt
589 silly gunzTarPerm extractEntry specs/legacy/dont_unreserve_property_accessors.txt
590 silly gunzTarPerm extractEntry specs/legacy/empty_function.txt
591 silly gunzTarPerm extractEntry specs/legacy/empty_function_bodies.txt
592 silly gunzTarPerm extractEntry specs/legacy/empty_semicolon.txt
593 silly gunzTarPerm extractEntry specs/legacy/equal_regex.txt
594 silly gunzTarPerm extractEntry specs/legacy/floating_point_numbers.txt
595 silly gunzTarPerm extractEntry specs/legacy/for.txt
596 silly gunzTarPerm extractEntry specs/legacy/for_in.txt
597 silly gunzTarPerm extractEntry specs/legacy/array_literals.txt
598 silly gunzTarPerm extractEntry specs/legacy/function_property.txt
599 silly gunzTarPerm extractEntry specs/legacy/function_with_keyword.txt
600 silly gunzTarPerm extractEntry specs/legacy/if_in.txt
601 silly gunzTarPerm extractEntry specs/legacy/increment_decrement.txt
602 silly gunzTarPerm extractEntry specs/legacy/index.txt
603 silly gunzTarPerm extractEntry specs/legacy/numbers.txt
604 silly gunzTarPerm extractEntry specs/legacy/or.txt
605 silly gunzTarPerm extractEntry specs/legacy/parenthesized_new.txt
606 silly gunzTarPerm extractEntry specs/legacy/return_function.txt
607 silly gunzTarPerm extractEntry specs/legacy/simple_addition.txt
608 silly gunzTarPerm extractEntry specs/legacy/single_line_else.txt
609 silly gunzTarPerm extractEntry specs/legacy/single_return.txt
610 silly gunzTarPerm extractEntry specs/legacy/switch.txt
611 silly gunzTarPerm extractEntry specs/legacy/ternary.txt
612 silly gunzTarPerm extractEntry specs/legacy/this_attribute.txt
613 silly gunzTarPerm extractEntry specs/legacy/this_keyword.txt
614 silly gunzTarPerm extractEntry specs/legacy/throw.txt
615 silly gunzTarPerm extractEntry specs/legacy/unary.txt
616 silly gunzTarPerm extractEntry specs/legacy/var.txt
617 silly gunzTarPerm extractEntry specs/legacy_pending/object_literal_with_function.txt
618 silly gunzTarPerm extractEntry specs/legacy_pending/destructuring_assignment.txt
619 silly gunzTarPerm extractEntry specs/legacy_pending/escape.txt
620 silly gunzTarPerm extractEntry specs/legacy_pending/existence.txt
621 silly gunzTarPerm extractEntry specs/legacy_pending/for_continue.txt
622 silly gunzTarPerm extractEntry specs/legacy_pending/function_chaining.txt
623 silly gunzTarPerm extractEntry specs/legacy_pending/hash.txt
624 silly gunzTarPerm extractEntry specs/legacy_pending/if_return.txt
625 silly gunzTarPerm extractEntry specs/legacy_pending/instanceof.txt
626 silly gunzTarPerm extractEntry specs/legacy_pending/invocation_object_literal_first.txt
627 silly gunzTarPerm extractEntry specs/legacy_pending/jquery_wrapper.txt
628 silly gunzTarPerm extractEntry specs/legacy_pending/loop.txt
629 silly gunzTarPerm extractEntry specs/legacy_pending/no_return.txt
630 silly gunzTarPerm extractEntry specs/legacy_pending/not.txt
631 silly gunzTarPerm extractEntry specs/legacy_pending/not_not.txt
632 silly gunzTarPerm extractEntry specs/legacy_pending/object_literal_at_index.txt
633 silly gunzTarPerm extractEntry specs/legacy_pending/object_literal_return.txt
634 silly gunzTarPerm extractEntry specs/legacy_pending/destructuring_in_functions.txt
635 silly gunzTarPerm extractEntry specs/legacy_pending/object_literals.txt
636 silly gunzTarPerm extractEntry specs/legacy_pending/percent_d.txt
637 silly gunzTarPerm extractEntry specs/legacy_pending/pretty_arrays.txt
638 silly gunzTarPerm extractEntry specs/legacy_pending/prototype.txt
639 silly gunzTarPerm extractEntry specs/legacy_pending/reserve.txt
640 silly gunzTarPerm extractEntry specs/legacy_pending/return_in_if.txt
641 silly gunzTarPerm extractEntry specs/legacy_pending/return_object.txt
642 silly gunzTarPerm extractEntry specs/legacy_pending/return_object_parenthesize.txt
643 silly gunzTarPerm extractEntry specs/legacy_pending/returns.txt
644 silly gunzTarPerm extractEntry specs/legacy_pending/settimeout.txt
645 silly gunzTarPerm extractEntry specs/legacy_pending/single_line_if.txt
646 silly gunzTarPerm extractEntry specs/legacy_pending/single_line_while.txt
647 silly gunzTarPerm extractEntry specs/legacy_pending/single_quotes.txt
648 silly gunzTarPerm extractEntry specs/legacy_pending/switch_gt_two.txt
649 silly gunzTarPerm extractEntry specs/legacy_pending/switch_indent_tab.txt
650 silly gunzTarPerm extractEntry specs/legacy_pending/unless_bug.txt
651 silly gunzTarPerm extractEntry specs/legacy_pending/while.txt
652 silly gunzTarPerm extractEntry specs/loops/for_with_no_arguments.txt
653 silly gunzTarPerm extractEntry specs/loops/continue_statement.txt
654 silly gunzTarPerm extractEntry specs/loops/do_while_with_other_statements.txt
655 silly gunzTarPerm extractEntry specs/loops/empty_while.txt
656 silly gunzTarPerm extractEntry specs/loops/for_in_with_if.txt
657 silly gunzTarPerm extractEntry specs/loops/for_in_with_var.txt
658 silly gunzTarPerm extractEntry specs/loops/for_with_continue.txt
659 silly gunzTarPerm extractEntry specs/loops/for_with_continue_with_switch.txt
660 silly gunzTarPerm extractEntry specs/loops/for_with_continue_without_init.txt
661 silly gunzTarPerm extractEntry specs/loops/for_with_if.txt
662 silly gunzTarPerm extractEntry specs/loops/do_while.txt
663 silly gunzTarPerm extractEntry specs/loops/for_with_no_body.txt
664 silly gunzTarPerm extractEntry specs/loops/for_with_no_init.txt
665 silly gunzTarPerm extractEntry specs/loops/for_with_no_test.txt
666 silly gunzTarPerm extractEntry specs/loops/for_with_no_update.txt
667 silly gunzTarPerm extractEntry specs/loops/forever_loop.txt
668 silly gunzTarPerm extractEntry specs/loops/indented_for.txt
669 silly gunzTarPerm extractEntry specs/loops/simple_for.txt
670 silly gunzTarPerm extractEntry specs/loops/while.txt
671 silly gunzTarPerm extractEntry specs/loops/while_with_break.txt
672 silly gunzTarPerm extractEntry specs/loops/while_with_no_body.txt
673 silly gunzTarPerm extractEntry specs/comments/line_comments_before_function.txt
674 silly gunzTarPerm extractEntry specs/comments/after_block_comment.txt
675 silly gunzTarPerm extractEntry specs/comments/block_comments_in_blocks.txt
676 silly gunzTarPerm extractEntry specs/comments/block_comments_with_space.txt
677 silly gunzTarPerm extractEntry specs/comments/comment_before_function.txt
678 silly gunzTarPerm extractEntry specs/comments/comments_in_if_blocks.txt
679 silly gunzTarPerm extractEntry specs/comments/indented_jsdoc_comments.txt
680 silly gunzTarPerm extractEntry specs/comments/line_comments.txt
681 silly gunzTarPerm extractEntry specs/comments/block_comments.txt
682 silly gunzTarPerm extractEntry specs/comments/multiple_functions_with_multiple_comments.txt
683 silly gunzTarPerm extractEntry specs/comments/program_block_comment_after.txt
684 silly gunzTarPerm extractEntry specs/comments/program_block_comment_before.txt
685 silly gunzTarPerm extractEntry specs/comments/program_block_comment_sole.txt
686 silly gunzTarPerm extractEntry specs/comments/program_with_only_comments.txt
687 silly gunzTarPerm extractEntry specs/comments/sole_block_comment.txt
688 silly gunzTarPerm extractEntry specs/comments/trailing_line_comment.txt
689 silly gunzTarPerm extractEntry specs/new/new_operator.txt
690 silly gunzTarPerm extractEntry specs/new/new_operator_with_arguments.txt
691 silly gunzTarPerm extractEntry specs/new/new_with_complex_callee.txt
692 silly gunzTarPerm extractEntry specs/new/new_with_function_expression.txt
693 silly gunzTarPerm extractEntry specs/new/new_with_function_expression_and_string.txt
694 silly gunzTarPerm extractEntry specs/objects/nesting_into_a_single_line.txt
695 silly gunzTarPerm extractEntry specs/objects/arrray_of_objects.txt
696 silly gunzTarPerm extractEntry specs/objects/multiple_object_expressions.txt
697 silly gunzTarPerm extractEntry specs/objects/multiple_properties.txt
698 silly gunzTarPerm extractEntry specs/objects/nested_objects.txt
699 silly gunzTarPerm extractEntry specs/objects/call_with_object.txt
700 silly gunzTarPerm extractEntry specs/objects/object_with_arrays.txt
701 silly gunzTarPerm extractEntry specs/objects/simple_object.txt
702 silly gunzTarPerm extractEntry specs/objects/single_object_expression.txt
703 silly gunzTarPerm extractEntry specs/objects/singleton_with_methods.txt
704 silly gunzTarPerm extractEntry specs/objects/unusual_identifiers.txt
705 silly gunzTarPerm extractEntry specs/pending/duplicate_functions.txt
706 silly gunzTarPerm extractEntry specs/pending/exports.txt
707 silly gunzTarPerm extractEntry specs/pending/for_in_without_var.txt
708 silly gunzTarPerm extractEntry specs/pending/global.txt
709 silly gunzTarPerm extractEntry specs/pending/object_literal_return.txt
710 silly gunzTarPerm extractEntry specs/pending/shadowing_of_function_names.txt
711 silly gunzTarPerm extractEntry specs/pending/simple_for_loop.txt
712 silly gunzTarPerm extractEntry specs/pending/simple_for_loop_with_lte.txt
713 silly gunzTarPerm extractEntry specs/pending/special_characters.txt
714 silly gunzTarPerm extractEntry specs/precedence/logical_operators.txt
715 silly gunzTarPerm extractEntry specs/precedence/addition_and_multiplication.txt
716 silly gunzTarPerm extractEntry specs/precedence/binary_expressions_with_parens.txt
717 silly gunzTarPerm extractEntry specs/precedence/call_expression.txt
718 silly gunzTarPerm extractEntry specs/precedence/instanceof_and_function_call.txt
719 silly gunzTarPerm extractEntry specs/precedence/intransitive_operations_division.txt
720 silly gunzTarPerm extractEntry specs/precedence/intransitive_operations_subtraction.txt
721 silly gunzTarPerm extractEntry specs/precedence/binary_expressions.txt
722 silly gunzTarPerm extractEntry specs/precedence/nested_new.txt
723 silly gunzTarPerm extractEntry specs/precedence/nested_ternary.txt
724 silly gunzTarPerm extractEntry specs/precedence/nested_ternary_2.txt
725 silly gunzTarPerm extractEntry specs/precedence/parenthesized_classname_in_new.txt
726 silly gunzTarPerm extractEntry specs/precedence/strip_useless_parens.txt
727 silly gunzTarPerm extractEntry specs/precedence/ternary_and_assignment.txt
728 silly gunzTarPerm extractEntry specs/precedence/typeof_and_member_expression.txt
729 silly gunzTarPerm extractEntry specs/regexp/blank_with_flag.txt
730 silly gunzTarPerm extractEntry specs/regexp/equals.txt
731 silly gunzTarPerm extractEntry specs/regexp/equals_with_flag.txt
732 silly gunzTarPerm extractEntry specs/shadowing/var_shadowing.txt
733 silly gunzTarPerm extractEntry specs/simple/index_resolution_witH_this.txt
734 silly gunzTarPerm extractEntry specs/simple/array_newlines.txt
735 silly gunzTarPerm extractEntry specs/simple/booleans.txt
736 silly gunzTarPerm extractEntry specs/simple/call_with_function.txt
737 silly gunzTarPerm extractEntry specs/simple/debugger_statement.txt
738 silly gunzTarPerm extractEntry specs/simple/delete.txt
739 silly gunzTarPerm extractEntry specs/simple/empty_statement.txt
740 silly gunzTarPerm extractEntry specs/simple/empty_statement_with_other_statements.txt
741 silly gunzTarPerm extractEntry specs/simple/exponents.txt
742 silly gunzTarPerm extractEntry specs/simple/exponents_precedence.txt
743 silly gunzTarPerm extractEntry specs/simple/exponents_with_strange_arguments.txt
744 silly gunzTarPerm extractEntry specs/simple/function_call.txt
745 silly gunzTarPerm extractEntry specs/simple/function_call_with_arguments.txt
746 silly gunzTarPerm extractEntry specs/simple/function_in_switch.txt
747 silly gunzTarPerm extractEntry specs/simple/increment.txt
748 silly gunzTarPerm extractEntry specs/simple/indentation_of_parentheses.txt
749 silly gunzTarPerm extractEntry specs/simple/indented_throw.txt
750 silly gunzTarPerm extractEntry specs/simple/index_resolution.txt
751 silly gunzTarPerm extractEntry specs/simple/index_resolution_of_expression.txt
752 silly gunzTarPerm extractEntry specs/simple/index_resolution_of_strings.txt
753 silly gunzTarPerm extractEntry specs/simple/binary_operators.txt
754 silly gunzTarPerm extractEntry specs/simple/inline_assignment.txt
755 silly gunzTarPerm extractEntry specs/simple/logical_expressions.txt
756 silly gunzTarPerm extractEntry specs/simple/multiple_unary_operators.txt
757 silly gunzTarPerm extractEntry specs/simple/nested_function_calls.txt
758 silly gunzTarPerm extractEntry specs/simple/nesting_if_and_assignment.txt
759 silly gunzTarPerm extractEntry specs/simple/null_check.txt
760 silly gunzTarPerm extractEntry specs/simple/prefix_increment.txt
761 silly gunzTarPerm extractEntry specs/simple/prototype.txt
762 silly gunzTarPerm extractEntry specs/simple/recursing_into_new_functions.txt
763 silly gunzTarPerm extractEntry specs/simple/return_nothing.txt
764 silly gunzTarPerm extractEntry specs/simple/scientific_notation.txt
765 silly gunzTarPerm extractEntry specs/simple/sequence_expression.txt
766 silly gunzTarPerm extractEntry specs/simple/sequence_expression_with_indent.txt
767 silly gunzTarPerm extractEntry specs/simple/standalone_this.txt
768 silly gunzTarPerm extractEntry specs/simple/ternary_operator.txt
769 silly gunzTarPerm extractEntry specs/simple/ternary_operator_nesting.txt
770 silly gunzTarPerm extractEntry specs/simple/this_prefix.txt
771 silly gunzTarPerm extractEntry specs/simple/throw.txt
772 silly gunzTarPerm extractEntry specs/simple/void_0.txt
773 silly gunzTarPerm extractEntry specs/spacing/block_comments.txt
774 silly gunzTarPerm extractEntry specs/spacing/collapsing_extra_newlines.txt
775 silly gunzTarPerm extractEntry specs/special_cases/assignment_in_condition.txt
776 silly gunzTarPerm extractEntry specs/special_cases/browserify_standalone_wrapper.txt
777 silly gunzTarPerm extractEntry specs/special_cases/browserify_wrapper.txt
778 silly gunzTarPerm extractEntry specs/special_cases/unary_and_object_expression.txt
779 silly gunzTarPerm extractEntry specs/special_cases/unary_and_object_with_call.txt
780 silly gunzTarPerm extractEntry specs/strings/empty_string.txt
781 silly gunzTarPerm extractEntry specs/strings/prevent_interpolation.txt
782 silly gunzTarPerm extractEntry specs/strings/simple_string.txt
783 silly gunzTarPerm extractEntry specs/strings/single_quotes.txt
784 silly gunzTarPerm extractEntry specs/strings/string_with_escapes.txt
785 silly gunzTarPerm extractEntry specs/strings/unicode.txt
786 silly gunzTarPerm extractEntry specs/switch/case_consolidation.txt
787 silly gunzTarPerm extractEntry specs/switch/case_consolidation_with_default.txt
788 silly gunzTarPerm extractEntry specs/switch/switch.txt
789 silly gunzTarPerm extractEntry specs/switch/switch_with_comments.txt
790 silly gunzTarPerm extractEntry specs/switch/switch_with_conditional_expression.txt
791 silly gunzTarPerm extractEntry specs/switch/switch_with_continue.txt
792 silly gunzTarPerm extractEntry specs/switch/switch_with_return.txt
793 silly gunzTarPerm extractEntry specs/try/no_finally.txt
794 silly gunzTarPerm extractEntry specs/try/try_catch_finally.txt
795 silly gunzTarPerm extractEntry specs/try/try_with_indent.txt
796 silly gunzTarPerm extractEntry specs/var/mixed_var_declarations.txt
797 silly gunzTarPerm extractEntry specs/var/multiple_var_declaration.txt
798 silly gunzTarPerm extractEntry specs/var/multiple_var_declarations_with_indent.txt
799 silly gunzTarPerm extractEntry specs/var/var_declaration.txt
800 silly gunzTarPerm extractEntry specs/var/var_without_initializer.txt
801 silly gunzTarPerm extractEntry specs/warnings/equals.txt
802 silly gunzTarPerm extractEntry specs/warnings/for_in_without_var.txt
803 silly gunzTarPerm extractEntry specs/warnings/shadowing.txt
804 silly gunzTarPerm extractEntry bin/js2coffee
805 silly lockFile d2df102d-c-01-npm-js2coffee-2-2-0-package tar:///home/rormuc-01/.npm/js2coffee/2.2.0/package
806 silly lockFile d2df102d-c-01-npm-js2coffee-2-2-0-package tar:///home/rormuc-01/.npm/js2coffee/2.2.0/package
807 silly lockFile af6fd64b--npm-js2coffee-2-2-0-package-tgz tar:///home/rormuc-01/.npm/js2coffee/2.2.0/package.tgz
808 silly lockFile af6fd64b--npm-js2coffee-2-2-0-package-tgz tar:///home/rormuc-01/.npm/js2coffee/2.2.0/package.tgz
809 verbose chmod /home/rormuc-01/.npm/js2coffee/2.2.0/package.tgz 644
810 verbose chown /home/rormuc-01/.npm/js2coffee/2.2.0/package.tgz [ 1000, 1000 ]
811 silly lockFile c20075eb-rg-js2coffee-js2coffee-2-2-0-tgz https://registry.npmjs.org/js2coffee/-/js2coffee-2.2.0.tgz
812 silly lockFile c20075eb-rg-js2coffee-js2coffee-2-2-0-tgz https://registry.npmjs.org/js2coffee/-/js2coffee-2.2.0.tgz
813 silly lockFile 09d803d7-js2coffee-2-2-0 js2coffee@2.2.0
814 silly lockFile 09d803d7-js2coffee-2-2-0 js2coffee@2.2.0
815 silly lockFile 5eedc53f-js2coffee js2coffee@
816 silly lockFile 5eedc53f-js2coffee js2coffee@
817 silly resolved [ { name: 'js2coffee',
817 silly resolved version: '2.2.0',
817 silly resolved description: 'JavaScript to CoffeeScript compiler',
817 silly resolved homepage: 'http://js2.coffee',
817 silly resolved main: 'dist/js2coffee.js',
817 silly resolved keywords: [ 'javascript', 'coffeescript', 'language', 'compiler' ],
817 silly resolved scripts:
817 silly resolved { test: 'mocha',
817 silly resolved autotest: 'mocha -R min -b --watch',
817 silly resolved prepublish: 'mocha >/dev/null && make -B dist' },
817 silly resolved author: { name: 'Rico Sta. Cruz', email: 'hi@ricostacruz.com' },
817 silly resolved license: 'MIT',
817 silly resolved bugs: { url: 'https://github.com/js2coffee/js2coffee/issues' },
817 silly resolved repository:
817 silly resolved { type: 'git',
817 silly resolved url: 'https://github.com/js2coffee/js2coffee.git' },
817 silly resolved browser: 'js2coffee.coffee',
817 silly resolved bin: { js2coffee: './bin/js2coffee' },
817 silly resolved dependencies:
817 silly resolved { escodegen: '^1.6.0',
817 silly resolved esprima: '^2.5.0',
817 silly resolved estraverse: '^4.1.1',
817 silly resolved minimist: '^1.1.0',
817 silly resolved 'read-input': '^0.3.1',
817 silly resolved 'source-map': '^0.5.2' },
817 silly resolved devDependencies:
817 silly resolved { browserify: '13.0.0',
817 silly resolved chai: '^3.4.0',
817 silly resolved 'coffee-script': '^1.8.0',
817 silly resolved coffeeify: '^2.0.1',
817 silly resolved coffeelint: '^1.6.0',
817 silly resolved glob: '^7.0.0',
817 silly resolved 'js-yaml': '^3.2.1',
817 silly resolved mocha: '^2.1.0',
817 silly resolved 'mocha-clean': '^1.0.0',
817 silly resolved 'uglify-js': '^2.4.16',
817 silly resolved underscore: '^1.7.0' },
817 silly resolved readme: '# <img src="http://js2.coffee/assets/logo-white.svg" width="250" alt="js2coffee">\n\nCompile JavaScript into CoffeeScript.\n\n[](http://js2.coffee)\n\n[](https://travis-ci.org/js2coffee/js2coffee) \n\nThis 2.0 release is a complete rewrite featuring a better parser ([Esprima]).\nSee **[what\'s new in 2.0](notes/New_in_2.0.md)** for an overview of new features\nand consult the [migration guide](notes/Migration_guide.md) for info on\nupdating from 0.x.\n\n<br>\n\n## Install\n\nAvailable on npm and bower.\n\n```sh\nnpm install --global js2coffee\njs2coffee --help\n```\n\n[](https://npmjs.org/package/js2coffee "View this project on npm")\n\nAlso available via CDN (`window.js2coffee`):\n\n> [](#version) `https://cdn.rawgit.com/js2coffee/js2coffee/v2.1.0/dist/js2coffee.js`\n\n<br>\n\n## Command line\n\nThe command line utility accepts both filenames or stdin.\n\n```sh\n$ js2coffee file.js [file2.js ...]\n$ cat file.js | js2coffee\n```\n\n<br>\n\n## JavaScript API\n\nAvailable via npm (`require(\'js2coffee\')`), or via CDN in the browser (as `window.js2coffee`):\n\n```js\nresult = js2coffee.build(source);\n\nresult.code // code string\nresult.ast // transformed AST\nresult.map // source map\nresult.warnings // array of warnings\n```\n\nErrors are in this format:\n\n```js\ncatch (e) {\n e.message // "index.js:3:1: Unexpected INDENT\\n\\n 3 var\\n ---^"\n e.description // "Unexpected INDENT"\n e.start // { line: 1, column: 4 }\n e.end // { line: 1, column: 10 }\n e.sourcePreview // \'...\'\n}\n```\n\nWarnings are in this format:\n\n```js\nresult.warnings.forEach((warn) => {\n warn.description // "Variable \'x\' defined twice\n warn.start // { line: 1, column: 4 }\n warn.end // { line: 1, column: 9 }\n warn.filename // "index.js"\n})\n```\n\n<br>\n\n## Docs\n\n - [Migration guide](notes/Migration_guide.md) - guide for migrating from 0.x.\n\n - [Hacking guide](notes/Hacking.md) - want to contribute? here are tips to get you started.\n\n - [AST format](notes/AST.md) - technical description of the CoffeeScript AST format.\n\n - [Special cases](notes/Special_cases.md) - a list of edge cases that js2coffee accounts for.\n\n - [Compatibility mode](notes/Special_cases.md#compatibilitymode) - list of tweaks that compatibility mode (`--compat`) addresses.\n\n - [Goals](notes/Goals.md) - outline of the project\'s goals.\n\n - [Specs](notes/Specs.md) - examples of how JavaScript compiles to CoffeeScript.\n\n<br>\n\n## Thanks\n\n**js2coffee** © 2012+, Rico Sta. Cruz. Released under the [MIT] License.<br>\nAuthored by Rico Sta. Cruz with help from co-maintainers and contributors ([list][contributors]).\n\nMaintainers:\n\n * Rico Sta. Cruz ([@rstacruz](https://github.com/rstacruz)) —\n [ricostacruz.com](http://ricostacruz.com) · twitter [@rstacruz](https://twitter.com/rstacruz)\n\n * Anton Wilhelm ([@timaschew](https://github.com/timaschew)) — twitter [@timaschew](https://twitter.com/timaschew)\n\n * Benjamin Lupton ([@balupton](https://github.com/balupton)) —\n [balupton.com](http://balupton.com) · twitter [@balupton](https://twitter.com/balupton)\n\n[MIT]: http://mit-license.org/\n[contributors]: http://github.com/rstacruz/js2coffee/contributors\n[Esprima]: http://esprima.org/\n',
817 silly resolved readmeFilename: 'README.md',
817 silly resolved _id: 'js2coffee@2.2.0',
817 silly resolved dist: { shasum: '876c0c8f122cc94a3844758a23bb8ab819b4d3cd' },
817 silly resolved _from: 'js2coffee@',
817 silly resolved _resolved: 'https://registry.npmjs.org/js2coffee/-/js2coffee-2.2.0.tgz' } ]
818 info install js2coffee@2.2.0 into /usr/local/lib
819 info installOne js2coffee@2.2.0
820 info /usr/local/lib/node_modules/js2coffee unbuild
821 verbose tar unpack /home/rormuc-01/.npm/js2coffee/2.2.0/package.tgz
822 silly lockFile 67b848bf-local-lib-node-modules-js2coffee tar:///usr/local/lib/node_modules/js2coffee
823 verbose lock tar:///usr/local/lib/node_modules/js2coffee /home/rormuc-01/.npm/67b848bf-local-lib-node-modules-js2coffee.lock
824 silly lockFile af6fd64b--npm-js2coffee-2-2-0-package-tgz tar:///home/rormuc-01/.npm/js2coffee/2.2.0/package.tgz
825 verbose lock tar:///home/rormuc-01/.npm/js2coffee/2.2.0/package.tgz /home/rormuc-01/.npm/af6fd64b--npm-js2coffee-2-2-0-package-tgz.lock
826 silly gunzTarPerm modes [ '755', '644' ]
827 error Error: EACCES, mkdir '/usr/local/lib/node_modules'
827 error { [Error: EACCES, mkdir '/usr/local/lib/node_modules']
827 error errno: 3,
827 error code: 'EACCES',
827 error path: '/usr/local/lib/node_modules',
827 error fstream_type: 'Directory',
827 error fstream_path: '/usr/local/lib/node_modules/js2coffee',
827 error fstream_class: 'DirWriter',
827 error fstream_stack:
827 error [ '/usr/lib/nodejs/fstream/lib/writer.js:171:23',
827 error '/usr/lib/nodejs/mkdirp/index.js:37:53',
827 error 'Object.oncomplete (fs.js:107:15)' ] }
828 error Please try running this command again as root/Administrator.
829 error System Linux 3.19.0-59-generic
830 error command "/usr/bin/nodejs" "/usr/bin/npm" "install" "--global" "js2coffee"
831 error cwd /home/rormuc-01/Desktop/codeRuby/learnruby
832 error node -v v0.10.25
833 error npm -v 1.3.10
834 error path /usr/local/lib/node_modules
835 error fstream_path /usr/local/lib/node_modules/js2coffee
836 error fstream_type Directory
837 error fstream_class DirWriter
838 error code EACCES
839 error errno 3
840 error stack Error: EACCES, mkdir '/usr/local/lib/node_modules'
841 error fstream_stack /usr/lib/nodejs/fstream/lib/writer.js:171:23
841 error fstream_stack /usr/lib/nodejs/mkdirp/index.js:37:53
841 error fstream_stack Object.oncomplete (fs.js:107:15)
842 verbose exit [ 3, true ]