hooch 0.0.5 → 0.0.6

Sign up to get free protection for your applications and to get access to all the features.
Files changed (3176) hide show
  1. checksums.yaml +4 -4
  2. data/Rakefile +12 -0
  3. data/app/assets/javascripts/hooch.js +52 -13
  4. data/hooch.gemspec +5 -0
  5. data/jasmine/.DS_Store +0 -0
  6. data/jasmine/MIT.LICENSE +20 -0
  7. data/jasmine/SpecRunner.html +27 -0
  8. data/jasmine/inheritance.js +63 -0
  9. data/jasmine/jasmine-fixture-1.3.1/.gitignore +8 -0
  10. data/jasmine/jasmine-fixture-1.3.1/.npmignore +8 -0
  11. data/jasmine/jasmine-fixture-1.3.1/.travis.yml +10 -0
  12. data/jasmine/jasmine-fixture-1.3.1/Gruntfile.js +4 -0
  13. data/jasmine/jasmine-fixture-1.3.1/LICENSE.txt +24 -0
  14. data/jasmine/jasmine-fixture-1.3.1/README.md +118 -0
  15. data/jasmine/jasmine-fixture-1.3.1/app/js/.gitkeep +0 -0
  16. data/jasmine/jasmine-fixture-1.3.1/app/js/jasmine-fixture.coffee +320 -0
  17. data/jasmine/jasmine-fixture-1.3.1/config/application.coffee +46 -0
  18. data/jasmine/jasmine-fixture-1.3.1/config/bower-template.json +19 -0
  19. data/jasmine/jasmine-fixture-1.3.1/config/files.coffee +28 -0
  20. data/jasmine/jasmine-fixture-1.3.1/config/lib.json +4 -0
  21. data/jasmine/jasmine-fixture-1.3.1/config/spec-jasmine2.json +11 -0
  22. data/jasmine/jasmine-fixture-1.3.1/config/spec-jq-1.11.json +11 -0
  23. data/jasmine/jasmine-fixture-1.3.1/config/spec-jq-2.1.json +11 -0
  24. data/jasmine/jasmine-fixture-1.3.1/config/spec.json +11 -0
  25. data/jasmine/jasmine-fixture-1.3.1/dist/jasmine-fixture.js +433 -0
  26. data/jasmine/jasmine-fixture-1.3.1/dist/jasmine-fixture.min.js +5 -0
  27. data/jasmine/jasmine-fixture-1.3.1/package.json +39 -0
  28. data/jasmine/jasmine-fixture-1.3.1/spec-e2e/basic-usage-spec.coffee +14 -0
  29. data/jasmine/jasmine-fixture-1.3.1/spec-e2e/helpers/invariants.coffee +17 -0
  30. data/jasmine/jasmine-fixture-1.3.1/spec-e2e/helpers/spec-within-a-spec.coffee +24 -0
  31. data/jasmine/jasmine-fixture-1.3.1/spec-e2e/helpers/tmp-files.coffee +8 -0
  32. data/jasmine/jasmine-fixture-1.3.1/spec-e2e/support/jasmine1-testem-config.json +11 -0
  33. data/jasmine/jasmine-fixture-1.3.1/spec-e2e/support/jasmine2-testem-config.json +11 -0
  34. data/jasmine/jasmine-fixture-1.3.1/spec/helpers/helper.js +33 -0
  35. data/jasmine/jasmine-fixture-1.3.1/spec/helpers/jasmine-given.js +379 -0
  36. data/jasmine/jasmine-fixture-1.3.1/spec/jasmine-fixture-spec.coffee +82 -0
  37. data/jasmine/jasmine-fixture-1.3.1/spec/no-conflict-spec.js +37 -0
  38. data/jasmine/jasmine-fixture-1.3.1/spec/prereq/conflict.js +1 -0
  39. data/jasmine/jasmine-fixture-1.3.1/tasks/.gitkeep +0 -0
  40. data/jasmine/jasmine-fixture-1.3.1/vendor/js/jquery-1.11.0.js +10337 -0
  41. data/jasmine/jasmine-fixture-1.3.1/vendor/js/jquery-1.8.3.js +9472 -0
  42. data/jasmine/jasmine-fixture-1.3.1/vendor/js/jquery-2.1.0.js +9111 -0
  43. data/jasmine/jquery.js +5 -0
  44. data/jasmine/karma.conf.js +69 -0
  45. data/jasmine/lib/jasmine-2.3.4/boot.js +121 -0
  46. data/jasmine/lib/jasmine-2.3.4/console.js +190 -0
  47. data/jasmine/lib/jasmine-2.3.4/jasmine-html.js +446 -0
  48. data/jasmine/lib/jasmine-2.3.4/jasmine.css +58 -0
  49. data/jasmine/lib/jasmine-2.3.4/jasmine.js +3298 -0
  50. data/jasmine/lib/jasmine-2.3.4/jasmine_favicon.png +0 -0
  51. data/jasmine/node_modules/.bin/r.js +29003 -0
  52. data/jasmine/node_modules/jasmine-core/.npmignore +28 -0
  53. data/jasmine/node_modules/jasmine-core/CONTRIBUTING.md +130 -0
  54. data/jasmine/node_modules/jasmine-core/GOALS_2.0.md +64 -0
  55. data/jasmine/node_modules/jasmine-core/MANIFEST.in +5 -0
  56. data/jasmine/node_modules/jasmine-core/MIT.LICENSE +20 -0
  57. data/jasmine/node_modules/jasmine-core/README.md +73 -0
  58. data/jasmine/node_modules/jasmine-core/RELEASE.md +73 -0
  59. data/jasmine/node_modules/jasmine-core/images/jasmine-horizontal.png +0 -0
  60. data/jasmine/node_modules/jasmine-core/images/jasmine-horizontal.svg +102 -0
  61. data/jasmine/node_modules/jasmine-core/images/jasmine_favicon.png +0 -0
  62. data/jasmine/node_modules/jasmine-core/lib/console/console.js +190 -0
  63. data/jasmine/node_modules/jasmine-core/lib/jasmine-core.js +37 -0
  64. data/jasmine/node_modules/jasmine-core/lib/jasmine-core/boot.js +143 -0
  65. data/jasmine/node_modules/jasmine-core/lib/jasmine-core/example/node_example/lib/jasmine_examples/Player.js +24 -0
  66. data/jasmine/node_modules/jasmine-core/lib/jasmine-core/example/node_example/lib/jasmine_examples/Song.js +9 -0
  67. data/jasmine/node_modules/jasmine-core/lib/jasmine-core/example/node_example/spec/helpers/jasmine_examples/SpecHelper.js +15 -0
  68. data/jasmine/node_modules/jasmine-core/lib/jasmine-core/example/node_example/spec/jasmine_examples/PlayerSpec.js +60 -0
  69. data/jasmine/node_modules/jasmine-core/lib/jasmine-core/example/spec/PlayerSpec.js +58 -0
  70. data/jasmine/node_modules/jasmine-core/lib/jasmine-core/example/spec/SpecHelper.js +15 -0
  71. data/jasmine/node_modules/jasmine-core/lib/jasmine-core/example/src/Player.js +22 -0
  72. data/jasmine/node_modules/jasmine-core/lib/jasmine-core/example/src/Song.js +7 -0
  73. data/jasmine/node_modules/jasmine-core/lib/jasmine-core/jasmine-html.js +446 -0
  74. data/jasmine/node_modules/jasmine-core/lib/jasmine-core/jasmine.css +58 -0
  75. data/jasmine/node_modules/jasmine-core/lib/jasmine-core/jasmine.js +3298 -0
  76. data/jasmine/node_modules/jasmine-core/lib/jasmine-core/json2.js +489 -0
  77. data/jasmine/node_modules/jasmine-core/lib/jasmine-core/node_boot.js +41 -0
  78. data/jasmine/node_modules/jasmine-core/package.json +63 -0
  79. data/jasmine/node_modules/jasmine-core/requirements.txt +1 -0
  80. data/jasmine/node_modules/karma-jasmine/LICENSE +20 -0
  81. data/jasmine/node_modules/karma-jasmine/README.md +89 -0
  82. data/jasmine/node_modules/karma-jasmine/integration-tests.sh +14 -0
  83. data/jasmine/node_modules/karma-jasmine/lib/adapter.js +325 -0
  84. data/jasmine/node_modules/karma-jasmine/lib/boot.js +43 -0
  85. data/jasmine/node_modules/karma-jasmine/lib/index.js +18 -0
  86. data/jasmine/node_modules/karma-jasmine/package.json +123 -0
  87. data/jasmine/node_modules/karma-phantomjs-launcher/LICENSE +20 -0
  88. data/jasmine/node_modules/karma-phantomjs-launcher/index.js +74 -0
  89. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/.bin/phantomjs +42 -0
  90. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/.jshintrc +3 -0
  91. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/.npmignore +5 -0
  92. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/.travis.yml +7 -0
  93. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/LICENSE.txt +194 -0
  94. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/README.md +199 -0
  95. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/bin/phantomjs +42 -0
  96. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/install.js +354 -0
  97. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/lib/location.js +1 -0
  98. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/lib/phantom/ChangeLog +368 -0
  99. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/lib/phantom/LICENSE.BSD +22 -0
  100. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/lib/phantom/README.md +45 -0
  101. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/lib/phantom/bin/phantomjs +0 -0
  102. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/lib/phantom/examples/arguments.coffee +7 -0
  103. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/lib/phantom/examples/arguments.js +9 -0
  104. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/lib/phantom/examples/child_process-examples.coffee +20 -0
  105. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/lib/phantom/examples/child_process-examples.js +27 -0
  106. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/lib/phantom/examples/colorwheel.coffee +46 -0
  107. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/lib/phantom/examples/colorwheel.js +51 -0
  108. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/lib/phantom/examples/countdown.coffee +8 -0
  109. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/lib/phantom/examples/countdown.js +9 -0
  110. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/lib/phantom/examples/detectsniff.coffee +42 -0
  111. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/lib/phantom/examples/detectsniff.js +59 -0
  112. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/lib/phantom/examples/direction.coffee +30 -0
  113. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/lib/phantom/examples/direction.js +35 -0
  114. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/lib/phantom/examples/echoToFile.coffee +19 -0
  115. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/lib/phantom/examples/echoToFile.js +23 -0
  116. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/lib/phantom/examples/features.coffee +23 -0
  117. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/lib/phantom/examples/features.js +30 -0
  118. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/lib/phantom/examples/fibo.coffee +8 -0
  119. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/lib/phantom/examples/fibo.js +9 -0
  120. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/lib/phantom/examples/follow.coffee +33 -0
  121. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/lib/phantom/examples/follow.js +38 -0
  122. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/lib/phantom/examples/hello.coffee +2 -0
  123. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/lib/phantom/examples/hello.js +2 -0
  124. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/lib/phantom/examples/imagebin.coffee +20 -0
  125. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/lib/phantom/examples/imagebin.js +23 -0
  126. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/lib/phantom/examples/injectme.coffee +23 -0
  127. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/lib/phantom/examples/injectme.js +25 -0
  128. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/lib/phantom/examples/ipgeocode.coffee +13 -0
  129. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/lib/phantom/examples/ipgeocode.js +14 -0
  130. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/lib/phantom/examples/loadspeed.coffee +18 -0
  131. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/lib/phantom/examples/loadspeed.js +23 -0
  132. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/lib/phantom/examples/loadurlwithoutcss.coffee +20 -0
  133. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/lib/phantom/examples/loadurlwithoutcss.js +25 -0
  134. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/lib/phantom/examples/modernizr.js +1116 -0
  135. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/lib/phantom/examples/module.coffee +4 -0
  136. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/lib/phantom/examples/module.js +4 -0
  137. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/lib/phantom/examples/movies.coffee +13 -0
  138. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/lib/phantom/examples/movies.js +14 -0
  139. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/lib/phantom/examples/netlog.coffee +18 -0
  140. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/lib/phantom/examples/netlog.js +25 -0
  141. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/lib/phantom/examples/netsniff.coffee +114 -0
  142. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/lib/phantom/examples/netsniff.js +143 -0
  143. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/lib/phantom/examples/outputEncoding.coffee +12 -0
  144. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/lib/phantom/examples/outputEncoding.js +16 -0
  145. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/lib/phantom/examples/page_events.coffee +132 -0
  146. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/lib/phantom/examples/page_events.js +142 -0
  147. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/lib/phantom/examples/pagecallback.coffee +16 -0
  148. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/lib/phantom/examples/pagecallback.js +17 -0
  149. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/lib/phantom/examples/phantomwebintro.coffee +13 -0
  150. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/lib/phantom/examples/phantomwebintro.js +19 -0
  151. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/lib/phantom/examples/pizza.coffee +18 -0
  152. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/lib/phantom/examples/pizza.js +20 -0
  153. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/lib/phantom/examples/post.coffee +12 -0
  154. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/lib/phantom/examples/post.js +14 -0
  155. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/lib/phantom/examples/postserver.coffee +25 -0
  156. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/lib/phantom/examples/postserver.js +34 -0
  157. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/lib/phantom/examples/printenv.coffee +6 -0
  158. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/lib/phantom/examples/printenv.js +10 -0
  159. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/lib/phantom/examples/printheaderfooter.coffee +88 -0
  160. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/lib/phantom/examples/printheaderfooter.js +89 -0
  161. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/lib/phantom/examples/printmargins.coffee +33 -0
  162. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/lib/phantom/examples/printmargins.js +35 -0
  163. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/lib/phantom/examples/rasterize.coffee +23 -0
  164. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/lib/phantom/examples/rasterize.js +32 -0
  165. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/lib/phantom/examples/render_multi_url.coffee +60 -0
  166. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/lib/phantom/examples/render_multi_url.js +73 -0
  167. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/lib/phantom/examples/run-jasmine.coffee +61 -0
  168. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/lib/phantom/examples/run-jasmine.js +86 -0
  169. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/lib/phantom/examples/run-qunit.coffee +64 -0
  170. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/lib/phantom/examples/run-qunit.js +76 -0
  171. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/lib/phantom/examples/scandir.coffee +16 -0
  172. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/lib/phantom/examples/scandir.js +22 -0
  173. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/lib/phantom/examples/seasonfood.coffee +17 -0
  174. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/lib/phantom/examples/seasonfood.js +19 -0
  175. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/lib/phantom/examples/server.coffee +45 -0
  176. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/lib/phantom/examples/server.js +43 -0
  177. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/lib/phantom/examples/serverkeepalive.coffee +32 -0
  178. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/lib/phantom/examples/serverkeepalive.js +34 -0
  179. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/lib/phantom/examples/simpleserver.coffee +38 -0
  180. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/lib/phantom/examples/simpleserver.js +42 -0
  181. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/lib/phantom/examples/sleepsort.coffee +20 -0
  182. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/lib/phantom/examples/sleepsort.js +25 -0
  183. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/lib/phantom/examples/stdin-stdout-stderr.coffee +18 -0
  184. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/lib/phantom/examples/stdin-stdout-stderr.js +18 -0
  185. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/lib/phantom/examples/technews.coffee +17 -0
  186. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/lib/phantom/examples/technews.js +16 -0
  187. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/lib/phantom/examples/tweets.coffee +31 -0
  188. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/lib/phantom/examples/tweets.js +37 -0
  189. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/lib/phantom/examples/universe.js +10 -0
  190. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/lib/phantom/examples/unrandomize.coffee +18 -0
  191. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/lib/phantom/examples/unrandomize.js +24 -0
  192. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/lib/phantom/examples/useragent.coffee +11 -0
  193. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/lib/phantom/examples/useragent.js +14 -0
  194. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/lib/phantom/examples/version.coffee +5 -0
  195. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/lib/phantom/examples/version.js +5 -0
  196. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/lib/phantom/examples/waitfor.coffee +48 -0
  197. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/lib/phantom/examples/waitfor.js +57 -0
  198. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/lib/phantom/examples/walk_through_frames.coffee +66 -0
  199. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/lib/phantom/examples/walk_through_frames.js +73 -0
  200. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/lib/phantom/examples/weather.coffee +29 -0
  201. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/lib/phantom/examples/weather.js +37 -0
  202. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/lib/phantom/third-party.txt +48 -0
  203. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/lib/phantomjs.js +61 -0
  204. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/.bin/which +14 -0
  205. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/adm-zip/.idea/scopes/scope_settings.xml +5 -0
  206. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/adm-zip/MIT-LICENSE.txt +21 -0
  207. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/adm-zip/README.md +64 -0
  208. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/adm-zip/adm-zip.js +404 -0
  209. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/adm-zip/headers/entryHeader.js +261 -0
  210. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/adm-zip/headers/index.js +2 -0
  211. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/adm-zip/headers/mainHeader.js +80 -0
  212. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/adm-zip/methods/deflater.js +1578 -0
  213. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/adm-zip/methods/index.js +2 -0
  214. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/adm-zip/methods/inflater.js +448 -0
  215. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/adm-zip/package.json +56 -0
  216. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/adm-zip/test/assets/attributes_test.zip +0 -0
  217. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/adm-zip/test/assets/attributes_test/New folder/hidden.txt +17 -0
  218. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/adm-zip/test/assets/attributes_test/New folder/hidden_readonly.txt +17 -0
  219. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/adm-zip/test/assets/attributes_test/New folder/readonly.txt +17 -0
  220. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/adm-zip/test/assets/attributes_test/New folder/somefile.txt +17 -0
  221. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/adm-zip/test/assets/attributes_test/asd/New Text Document.txt b/data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/adm-zip/test/assets/attributes_test/asd/New Text → Document.txt +0 -0
  222. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/adm-zip/test/assets/attributes_test/blank file.txt b/data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/adm-zip/test/assets/attributes_test/blank → file.txt +0 -0
  223. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/adm-zip/test/assets/fast.zip +0 -0
  224. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/adm-zip/test/assets/fastest.zip +0 -0
  225. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/adm-zip/test/assets/linux_arc.zip +0 -0
  226. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/adm-zip/test/assets/maximum.zip +0 -0
  227. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/adm-zip/test/assets/normal.zip +0 -0
  228. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/adm-zip/test/assets/store.zip +0 -0
  229. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/adm-zip/test/assets/ultra.zip +0 -0
  230. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/adm-zip/test/index.js +5 -0
  231. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/adm-zip/util/constants.js +84 -0
  232. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/adm-zip/util/errors.js +35 -0
  233. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/adm-zip/util/fattr.js +84 -0
  234. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/adm-zip/util/index.js +4 -0
  235. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/adm-zip/util/utils.js +145 -0
  236. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/adm-zip/zipEntry.js +224 -0
  237. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/adm-zip/zipFile.js +311 -0
  238. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/fs-extra/.npmignore +3 -0
  239. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/fs-extra/CHANGELOG.md +191 -0
  240. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/fs-extra/LICENSE +15 -0
  241. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/fs-extra/README.md +411 -0
  242. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/fs-extra/lib/_copy.js +250 -0
  243. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/fs-extra/lib/copy.js +99 -0
  244. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/fs-extra/lib/create.js +39 -0
  245. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/fs-extra/lib/index.js +90 -0
  246. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/fs-extra/lib/json.js +31 -0
  247. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/fs-extra/lib/mkdir.js +103 -0
  248. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/fs-extra/lib/move.js +136 -0
  249. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/fs-extra/lib/output.js +34 -0
  250. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/fs-extra/lib/remove.js +14 -0
  251. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/fs-extra/node_modules/.bin/rimraf +33 -0
  252. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/fs-extra/node_modules/graceful-fs/.npmignore +1 -0
  253. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/fs-extra/node_modules/graceful-fs/LICENSE +27 -0
  254. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/fs-extra/node_modules/graceful-fs/README.md +36 -0
  255. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/fs-extra/node_modules/graceful-fs/fs.js +11 -0
  256. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/fs-extra/node_modules/graceful-fs/graceful-fs.js +158 -0
  257. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/fs-extra/node_modules/graceful-fs/package.json +72 -0
  258. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/fs-extra/node_modules/graceful-fs/polyfills.js +255 -0
  259. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/fs-extra/node_modules/graceful-fs/test/max-open.js +69 -0
  260. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/fs-extra/node_modules/graceful-fs/test/open.js +39 -0
  261. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/fs-extra/node_modules/graceful-fs/test/readdir-sort.js +20 -0
  262. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/fs-extra/node_modules/graceful-fs/test/write-then-read.js +45 -0
  263. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/fs-extra/node_modules/jsonfile/.npmignore +2 -0
  264. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/fs-extra/node_modules/jsonfile/CHANGELOG.md +32 -0
  265. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/fs-extra/node_modules/jsonfile/LICENSE +15 -0
  266. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/fs-extra/node_modules/jsonfile/README.md +126 -0
  267. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/fs-extra/node_modules/jsonfile/lib/jsonfile.js +59 -0
  268. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/fs-extra/node_modules/jsonfile/package.json +60 -0
  269. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/fs-extra/node_modules/rimraf/LICENSE +23 -0
  270. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/fs-extra/node_modules/rimraf/README.md +36 -0
  271. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/fs-extra/node_modules/rimraf/bin.js +33 -0
  272. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/fs-extra/node_modules/rimraf/node_modules/glob/LICENSE +15 -0
  273. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/fs-extra/node_modules/rimraf/node_modules/glob/README.md +369 -0
  274. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/fs-extra/node_modules/rimraf/node_modules/glob/common.js +237 -0
  275. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/fs-extra/node_modules/rimraf/node_modules/glob/glob.js +740 -0
  276. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/fs-extra/node_modules/rimraf/node_modules/glob/node_modules/inflight/.eslintrc +17 -0
  277. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/fs-extra/node_modules/rimraf/node_modules/glob/node_modules/inflight/LICENSE +15 -0
  278. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/fs-extra/node_modules/rimraf/node_modules/glob/node_modules/inflight/README.md +37 -0
  279. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/fs-extra/node_modules/rimraf/node_modules/glob/node_modules/inflight/inflight.js +44 -0
  280. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/fs-extra/node_modules/rimraf/node_modules/glob/node_modules/inflight/node_modules/wrappy/LICENSE +15 -0
  281. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/fs-extra/node_modules/rimraf/node_modules/glob/node_modules/inflight/node_modules/wrappy/README.md +36 -0
  282. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/fs-extra/node_modules/rimraf/node_modules/glob/node_modules/inflight/node_modules/wrappy/package.json +52 -0
  283. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/fs-extra/node_modules/rimraf/node_modules/glob/node_modules/inflight/node_modules/wrappy/test/basic.js +51 -0
  284. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/fs-extra/node_modules/rimraf/node_modules/glob/node_modules/inflight/node_modules/wrappy/wrappy.js +33 -0
  285. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/fs-extra/node_modules/rimraf/node_modules/glob/node_modules/inflight/package.json +61 -0
  286. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/fs-extra/node_modules/rimraf/node_modules/glob/node_modules/inflight/test.js +97 -0
  287. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/fs-extra/node_modules/rimraf/node_modules/glob/node_modules/inherits/LICENSE +16 -0
  288. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/fs-extra/node_modules/rimraf/node_modules/glob/node_modules/inherits/README.md +42 -0
  289. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/fs-extra/node_modules/rimraf/node_modules/glob/node_modules/inherits/inherits.js +1 -0
  290. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/fs-extra/node_modules/rimraf/node_modules/glob/node_modules/inherits/inherits_browser.js +23 -0
  291. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/fs-extra/node_modules/rimraf/node_modules/glob/node_modules/inherits/package.json +50 -0
  292. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/fs-extra/node_modules/rimraf/node_modules/glob/node_modules/inherits/test.js +25 -0
  293. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/fs-extra/node_modules/rimraf/node_modules/glob/node_modules/minimatch/LICENSE +23 -0
  294. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/fs-extra/node_modules/rimraf/node_modules/glob/node_modules/minimatch/README.md +216 -0
  295. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/fs-extra/node_modules/rimraf/node_modules/glob/node_modules/minimatch/browser.js +1113 -0
  296. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/fs-extra/node_modules/rimraf/node_modules/glob/node_modules/minimatch/minimatch.js +867 -0
  297. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/fs-extra/node_modules/rimraf/node_modules/glob/node_modules/minimatch/node_modules/brace-expansion/.npmignore +2 -0
  298. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/fs-extra/node_modules/rimraf/node_modules/glob/node_modules/minimatch/node_modules/brace-expansion/.travis.yml +3 -0
  299. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/fs-extra/node_modules/rimraf/node_modules/glob/node_modules/minimatch/node_modules/brace-expansion/README.md +121 -0
  300. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/fs-extra/node_modules/rimraf/node_modules/glob/node_modules/minimatch/node_modules/brace-expansion/example.js +8 -0
  301. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/fs-extra/node_modules/rimraf/node_modules/glob/node_modules/minimatch/node_modules/brace-expansion/index.js +191 -0
  302. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/fs-extra/node_modules/rimraf/node_modules/glob/node_modules/minimatch/node_modules/brace-expansion/node_modules/balanced-match/.npmignore +2 -0
  303. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/fs-extra/node_modules/rimraf/node_modules/glob/node_modules/minimatch/node_modules/brace-expansion/node_modules/balanced-match/.travis.yml +4 -0
  304. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/fs-extra/node_modules/rimraf/node_modules/glob/node_modules/minimatch/node_modules/brace-expansion/node_modules/balanced-match/Makefile +6 -0
  305. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/fs-extra/node_modules/rimraf/node_modules/glob/node_modules/minimatch/node_modules/brace-expansion/node_modules/balanced-match/README.md +80 -0
  306. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/fs-extra/node_modules/rimraf/node_modules/glob/node_modules/minimatch/node_modules/brace-expansion/node_modules/balanced-match/example.js +5 -0
  307. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/fs-extra/node_modules/rimraf/node_modules/glob/node_modules/minimatch/node_modules/brace-expansion/node_modules/balanced-match/index.js +38 -0
  308. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/fs-extra/node_modules/rimraf/node_modules/glob/node_modules/minimatch/node_modules/brace-expansion/node_modules/balanced-match/package.json +73 -0
  309. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/fs-extra/node_modules/rimraf/node_modules/glob/node_modules/minimatch/node_modules/brace-expansion/node_modules/balanced-match/test/balanced.js +56 -0
  310. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/fs-extra/node_modules/rimraf/node_modules/glob/node_modules/minimatch/node_modules/brace-expansion/node_modules/concat-map/.travis.yml +4 -0
  311. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/fs-extra/node_modules/rimraf/node_modules/glob/node_modules/minimatch/node_modules/brace-expansion/node_modules/concat-map/LICENSE +18 -0
  312. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/fs-extra/node_modules/rimraf/node_modules/glob/node_modules/minimatch/node_modules/brace-expansion/node_modules/concat-map/README.markdown +62 -0
  313. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/fs-extra/node_modules/rimraf/node_modules/glob/node_modules/minimatch/node_modules/brace-expansion/node_modules/concat-map/example/map.js +6 -0
  314. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/fs-extra/node_modules/rimraf/node_modules/glob/node_modules/minimatch/node_modules/brace-expansion/node_modules/concat-map/index.js +13 -0
  315. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/fs-extra/node_modules/rimraf/node_modules/glob/node_modules/minimatch/node_modules/brace-expansion/node_modules/concat-map/package.json +83 -0
  316. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/fs-extra/node_modules/rimraf/node_modules/glob/node_modules/minimatch/node_modules/brace-expansion/node_modules/concat-map/test/map.js +39 -0
  317. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/fs-extra/node_modules/rimraf/node_modules/glob/node_modules/minimatch/node_modules/brace-expansion/package.json +75 -0
  318. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/fs-extra/node_modules/rimraf/node_modules/glob/node_modules/minimatch/node_modules/brace-expansion/test/bash-comparison.js +32 -0
  319. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/fs-extra/node_modules/rimraf/node_modules/glob/node_modules/minimatch/node_modules/brace-expansion/test/bash-results.txt +1075 -0
  320. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/fs-extra/node_modules/rimraf/node_modules/glob/node_modules/minimatch/node_modules/brace-expansion/test/cases.txt +182 -0
  321. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/fs-extra/node_modules/rimraf/node_modules/glob/node_modules/minimatch/node_modules/brace-expansion/test/dollar.js +9 -0
  322. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/fs-extra/node_modules/rimraf/node_modules/glob/node_modules/minimatch/node_modules/brace-expansion/test/empty-option.js +10 -0
  323. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/fs-extra/node_modules/rimraf/node_modules/glob/node_modules/minimatch/node_modules/brace-expansion/test/generate.sh +24 -0
  324. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/fs-extra/node_modules/rimraf/node_modules/glob/node_modules/minimatch/node_modules/brace-expansion/test/negative-increment.js +15 -0
  325. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/fs-extra/node_modules/rimraf/node_modules/glob/node_modules/minimatch/node_modules/brace-expansion/test/nested.js +16 -0
  326. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/fs-extra/node_modules/rimraf/node_modules/glob/node_modules/minimatch/node_modules/brace-expansion/test/order.js +10 -0
  327. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/fs-extra/node_modules/rimraf/node_modules/glob/node_modules/minimatch/node_modules/brace-expansion/test/pad.js +13 -0
  328. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/fs-extra/node_modules/rimraf/node_modules/glob/node_modules/minimatch/node_modules/brace-expansion/test/same-type.js +7 -0
  329. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/fs-extra/node_modules/rimraf/node_modules/glob/node_modules/minimatch/node_modules/brace-expansion/test/sequence.js +50 -0
  330. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/fs-extra/node_modules/rimraf/node_modules/glob/node_modules/minimatch/package.json +66 -0
  331. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/fs-extra/node_modules/rimraf/node_modules/glob/node_modules/once/LICENSE +15 -0
  332. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/fs-extra/node_modules/rimraf/node_modules/glob/node_modules/once/README.md +51 -0
  333. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/fs-extra/node_modules/rimraf/node_modules/glob/node_modules/once/node_modules/wrappy/LICENSE +15 -0
  334. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/fs-extra/node_modules/rimraf/node_modules/glob/node_modules/once/node_modules/wrappy/README.md +36 -0
  335. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/fs-extra/node_modules/rimraf/node_modules/glob/node_modules/once/node_modules/wrappy/package.json +52 -0
  336. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/fs-extra/node_modules/rimraf/node_modules/glob/node_modules/once/node_modules/wrappy/test/basic.js +51 -0
  337. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/fs-extra/node_modules/rimraf/node_modules/glob/node_modules/once/node_modules/wrappy/wrappy.js +33 -0
  338. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/fs-extra/node_modules/rimraf/node_modules/glob/node_modules/once/once.js +21 -0
  339. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/fs-extra/node_modules/rimraf/node_modules/glob/node_modules/once/package.json +60 -0
  340. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/fs-extra/node_modules/rimraf/node_modules/glob/node_modules/once/test/once.js +23 -0
  341. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/fs-extra/node_modules/rimraf/node_modules/glob/package.json +72 -0
  342. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/fs-extra/node_modules/rimraf/node_modules/glob/sync.js +457 -0
  343. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/fs-extra/node_modules/rimraf/package.json +61 -0
  344. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/fs-extra/node_modules/rimraf/rimraf.js +331 -0
  345. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/fs-extra/package.json +88 -0
  346. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/kew/.npmignore +15 -0
  347. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/kew/LICENSE.TXT +194 -0
  348. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/kew/README.md +296 -0
  349. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/kew/kew.js +724 -0
  350. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/kew/package.json +70 -0
  351. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/kew/test/chain.js +428 -0
  352. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/kew/test/closure_test.js +119 -0
  353. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/kew/test/context.js +89 -0
  354. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/kew/test/defer.js +120 -0
  355. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/kew/test/externs_node.js +9 -0
  356. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/kew/test/scopes.js +54 -0
  357. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/kew/test/static.js +322 -0
  358. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/npmconf/.npmignore +3 -0
  359. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/npmconf/LICENSE +27 -0
  360. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/npmconf/README.md +33 -0
  361. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/npmconf/config-defs.js +381 -0
  362. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/npmconf/lib/find-prefix.js +56 -0
  363. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/npmconf/lib/get-credentials-by-uri.js +73 -0
  364. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/npmconf/lib/load-cafile.js +31 -0
  365. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/npmconf/lib/load-prefix.js +49 -0
  366. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/npmconf/lib/load-uid.js +15 -0
  367. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/npmconf/lib/nerf-dart.js +21 -0
  368. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/npmconf/lib/set-credentials-by-uri.js +42 -0
  369. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/npmconf/lib/set-user.js +30 -0
  370. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/npmconf/node_modules/.bin/mkdirp +33 -0
  371. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/npmconf/node_modules/.bin/nopt +54 -0
  372. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/npmconf/node_modules/.bin/semver +133 -0
  373. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/npmconf/node_modules/config-chain/.npmignore +3 -0
  374. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/npmconf/node_modules/config-chain/LICENCE +22 -0
  375. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/npmconf/node_modules/config-chain/index.js +282 -0
  376. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/npmconf/node_modules/config-chain/node_modules/proto-list/LICENSE +23 -0
  377. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/npmconf/node_modules/config-chain/node_modules/proto-list/README.md +3 -0
  378. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/npmconf/node_modules/config-chain/node_modules/proto-list/package.json +51 -0
  379. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/npmconf/node_modules/config-chain/node_modules/proto-list/proto-list.js +88 -0
  380. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/npmconf/node_modules/config-chain/node_modules/proto-list/test/basic.js +61 -0
  381. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/npmconf/node_modules/config-chain/package.json +54 -0
  382. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/npmconf/node_modules/config-chain/readme.markdown +228 -0
  383. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/npmconf/node_modules/config-chain/test/broken.js +10 -0
  384. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/npmconf/node_modules/config-chain/test/broken.json +21 -0
  385. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/npmconf/node_modules/config-chain/test/chain-class.js +100 -0
  386. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/npmconf/node_modules/config-chain/test/env.js +10 -0
  387. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/npmconf/node_modules/config-chain/test/find-file.js +13 -0
  388. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/npmconf/node_modules/config-chain/test/get.js +15 -0
  389. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/npmconf/node_modules/config-chain/test/ignore-unfound-file.js +5 -0
  390. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/npmconf/node_modules/config-chain/test/ini.js +18 -0
  391. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/npmconf/node_modules/config-chain/test/save.js +59 -0
  392. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/npmconf/node_modules/inherits/LICENSE +16 -0
  393. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/npmconf/node_modules/inherits/README.md +42 -0
  394. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/npmconf/node_modules/inherits/inherits.js +1 -0
  395. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/npmconf/node_modules/inherits/inherits_browser.js +23 -0
  396. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/npmconf/node_modules/inherits/package.json +50 -0
  397. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/npmconf/node_modules/inherits/test.js +25 -0
  398. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/npmconf/node_modules/ini/.npmignore +1 -0
  399. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/npmconf/node_modules/ini/LICENSE +15 -0
  400. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/npmconf/node_modules/ini/README.md +102 -0
  401. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/npmconf/node_modules/ini/ini.js +190 -0
  402. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/npmconf/node_modules/ini/package.json +53 -0
  403. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/npmconf/node_modules/ini/test/bar.js +23 -0
  404. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/npmconf/node_modules/ini/test/fixtures/foo.ini +65 -0
  405. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/npmconf/node_modules/ini/test/foo.js +107 -0
  406. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/npmconf/node_modules/mkdirp/.travis.yml +8 -0
  407. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/npmconf/node_modules/mkdirp/LICENSE +21 -0
  408. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/npmconf/node_modules/mkdirp/bin/cmd.js +33 -0
  409. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/npmconf/node_modules/mkdirp/bin/usage.txt +12 -0
  410. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/npmconf/node_modules/mkdirp/examples/pow.js +6 -0
  411. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/npmconf/node_modules/mkdirp/index.js +98 -0
  412. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/npmconf/node_modules/mkdirp/node_modules/minimist/.travis.yml +4 -0
  413. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/npmconf/node_modules/mkdirp/node_modules/minimist/LICENSE +18 -0
  414. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/npmconf/node_modules/mkdirp/node_modules/minimist/example/parse.js +2 -0
  415. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/npmconf/node_modules/mkdirp/node_modules/minimist/index.js +187 -0
  416. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/npmconf/node_modules/mkdirp/node_modules/minimist/package.json +67 -0
  417. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/npmconf/node_modules/mkdirp/node_modules/minimist/readme.markdown +73 -0
  418. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/npmconf/node_modules/mkdirp/node_modules/minimist/test/dash.js +24 -0
  419. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/npmconf/node_modules/mkdirp/node_modules/minimist/test/default_bool.js +20 -0
  420. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/npmconf/node_modules/mkdirp/node_modules/minimist/test/dotted.js +16 -0
  421. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/npmconf/node_modules/mkdirp/node_modules/minimist/test/long.js +31 -0
  422. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/npmconf/node_modules/mkdirp/node_modules/minimist/test/parse.js +318 -0
  423. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/npmconf/node_modules/mkdirp/node_modules/minimist/test/parse_modified.js +9 -0
  424. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/npmconf/node_modules/mkdirp/node_modules/minimist/test/short.js +67 -0
  425. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/npmconf/node_modules/mkdirp/node_modules/minimist/test/whitespace.js +8 -0
  426. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/npmconf/node_modules/mkdirp/package.json +60 -0
  427. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/npmconf/node_modules/mkdirp/readme.markdown +100 -0
  428. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/npmconf/node_modules/mkdirp/test/chmod.js +41 -0
  429. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/npmconf/node_modules/mkdirp/test/clobber.js +38 -0
  430. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/npmconf/node_modules/mkdirp/test/mkdirp.js +28 -0
  431. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/npmconf/node_modules/mkdirp/test/opts_fs.js +29 -0
  432. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/npmconf/node_modules/mkdirp/test/opts_fs_sync.js +27 -0
  433. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/npmconf/node_modules/mkdirp/test/perm.js +32 -0
  434. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/npmconf/node_modules/mkdirp/test/perm_sync.js +36 -0
  435. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/npmconf/node_modules/mkdirp/test/race.js +37 -0
  436. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/npmconf/node_modules/mkdirp/test/rel.js +32 -0
  437. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/npmconf/node_modules/mkdirp/test/return.js +25 -0
  438. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/npmconf/node_modules/mkdirp/test/return_sync.js +24 -0
  439. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/npmconf/node_modules/mkdirp/test/root.js +19 -0
  440. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/npmconf/node_modules/mkdirp/test/sync.js +32 -0
  441. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/npmconf/node_modules/mkdirp/test/umask.js +28 -0
  442. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/npmconf/node_modules/mkdirp/test/umask_sync.js +32 -0
  443. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/npmconf/node_modules/nopt/.npmignore +1 -0
  444. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/npmconf/node_modules/nopt/LICENSE +23 -0
  445. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/npmconf/node_modules/nopt/README.md +209 -0
  446. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/npmconf/node_modules/nopt/bin/nopt.js +54 -0
  447. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/npmconf/node_modules/nopt/examples/my-program.js +30 -0
  448. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/npmconf/node_modules/nopt/lib/nopt.js +414 -0
  449. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/npmconf/node_modules/nopt/node_modules/abbrev/CONTRIBUTING.md +3 -0
  450. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/npmconf/node_modules/nopt/node_modules/abbrev/LICENSE +23 -0
  451. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/npmconf/node_modules/nopt/node_modules/abbrev/README.md +23 -0
  452. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/npmconf/node_modules/nopt/node_modules/abbrev/abbrev.js +62 -0
  453. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/npmconf/node_modules/nopt/node_modules/abbrev/package.json +46 -0
  454. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/npmconf/node_modules/nopt/node_modules/abbrev/test.js +47 -0
  455. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/npmconf/node_modules/nopt/package.json +57 -0
  456. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/npmconf/node_modules/nopt/test/basic.js +251 -0
  457. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/npmconf/node_modules/once/LICENSE +15 -0
  458. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/npmconf/node_modules/once/README.md +51 -0
  459. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/npmconf/node_modules/once/node_modules/wrappy/LICENSE +15 -0
  460. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/npmconf/node_modules/once/node_modules/wrappy/README.md +36 -0
  461. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/npmconf/node_modules/once/node_modules/wrappy/package.json +52 -0
  462. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/npmconf/node_modules/once/node_modules/wrappy/test/basic.js +51 -0
  463. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/npmconf/node_modules/once/node_modules/wrappy/wrappy.js +33 -0
  464. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/npmconf/node_modules/once/once.js +21 -0
  465. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/npmconf/node_modules/once/package.json +60 -0
  466. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/npmconf/node_modules/once/test/once.js +23 -0
  467. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/npmconf/node_modules/osenv/.npmignore +13 -0
  468. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/npmconf/node_modules/osenv/LICENSE +27 -0
  469. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/npmconf/node_modules/osenv/README.md +63 -0
  470. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/npmconf/node_modules/osenv/osenv.js +73 -0
  471. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/npmconf/node_modules/osenv/package.json +63 -0
  472. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/npmconf/node_modules/osenv/test/unix.js +71 -0
  473. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/npmconf/node_modules/osenv/test/windows.js +75 -0
  474. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/npmconf/node_modules/semver/.npmignore +1 -0
  475. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/npmconf/node_modules/semver/LICENSE +15 -0
  476. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/npmconf/node_modules/semver/Makefile +24 -0
  477. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/npmconf/node_modules/semver/README.md +303 -0
  478. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/npmconf/node_modules/semver/bin/semver +133 -0
  479. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/npmconf/node_modules/semver/foot.js.txt +6 -0
  480. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/npmconf/node_modules/semver/head.js.txt +2 -0
  481. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/npmconf/node_modules/semver/package.json +55 -0
  482. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/npmconf/node_modules/semver/semver.browser.js +1198 -0
  483. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/npmconf/node_modules/semver/semver.browser.js.gz +0 -0
  484. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/npmconf/node_modules/semver/semver.js +1202 -0
  485. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/npmconf/node_modules/semver/semver.min.js +1 -0
  486. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/npmconf/node_modules/semver/semver.min.js.gz +0 -0
  487. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/npmconf/node_modules/semver/test/amd.js +15 -0
  488. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/npmconf/node_modules/semver/test/big-numbers.js +31 -0
  489. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/npmconf/node_modules/semver/test/clean.js +29 -0
  490. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/npmconf/node_modules/semver/test/gtr.js +173 -0
  491. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/npmconf/node_modules/semver/test/index.js +684 -0
  492. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/npmconf/node_modules/semver/test/ltr.js +181 -0
  493. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/npmconf/node_modules/semver/test/major-minor-patch.js +72 -0
  494. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/npmconf/node_modules/semver/test/no-module.js +19 -0
  495. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/npmconf/node_modules/uid-number/LICENSE +15 -0
  496. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/npmconf/node_modules/uid-number/README.md +17 -0
  497. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/npmconf/node_modules/uid-number/get-uid-gid.js +24 -0
  498. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/npmconf/node_modules/uid-number/package.json +47 -0
  499. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/npmconf/node_modules/uid-number/uid-number.js +54 -0
  500. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/npmconf/npmconf.js +415 -0
  501. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/npmconf/package.json +73 -0
  502. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/npmconf/test/00-setup.js +67 -0
  503. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/npmconf/test/basic.js +58 -0
  504. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/npmconf/test/builtin.js +63 -0
  505. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/npmconf/test/certfile.js +17 -0
  506. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/npmconf/test/credentials.js +295 -0
  507. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/npmconf/test/fixtures/.npmrc +1 -0
  508. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/npmconf/test/fixtures/builtin +1 -0
  509. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/npmconf/test/fixtures/globalconfig +1 -0
  510. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/npmconf/test/fixtures/multi-ca +32 -0
  511. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/npmconf/test/fixtures/package.json +0 -0
  512. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/npmconf/test/fixtures/userconfig +23 -0
  513. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/npmconf/test/project.js +60 -0
  514. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/npmconf/test/save.js +84 -0
  515. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/npmconf/test/semver-tag.js +65 -0
  516. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/progress/.npmignore +4 -0
  517. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/progress/History.md +77 -0
  518. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/progress/LICENSE +22 -0
  519. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/progress/Makefile +8 -0
  520. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/progress/Readme.md +103 -0
  521. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/progress/index.js +1 -0
  522. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/progress/lib/node-progress.js +180 -0
  523. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/progress/package.json +67 -0
  524. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request-progress/.editorconfig +12 -0
  525. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request-progress/.jshintrc +63 -0
  526. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request-progress/.npmignore +2 -0
  527. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request-progress/.travis.yml +4 -0
  528. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request-progress/LICENSE +19 -0
  529. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request-progress/README.md +47 -0
  530. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request-progress/index.js +80 -0
  531. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request-progress/node_modules/throttleit/.npmignore +2 -0
  532. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request-progress/node_modules/throttleit/History.md +11 -0
  533. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request-progress/node_modules/throttleit/Makefile +11 -0
  534. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request-progress/node_modules/throttleit/Readme.md +16 -0
  535. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request-progress/node_modules/throttleit/component.json +13 -0
  536. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request-progress/node_modules/throttleit/example.js +14 -0
  537. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request-progress/node_modules/throttleit/index.js +30 -0
  538. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request-progress/node_modules/throttleit/package.json +47 -0
  539. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request-progress/package.json +61 -0
  540. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request-progress/test/test.js +1 -0
  541. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/.npmignore +2 -0
  542. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/.travis.yml +12 -0
  543. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/CHANGELOG.md +954 -0
  544. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/CONTRIBUTING.md +29 -0
  545. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/LICENSE +55 -0
  546. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/README.md +544 -0
  547. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/disabled.appveyor.yml +36 -0
  548. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/index.js +166 -0
  549. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/lib/cookies.js +40 -0
  550. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/lib/copy.js +8 -0
  551. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/lib/debug.js +9 -0
  552. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/lib/helpers.js +46 -0
  553. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/lib/optional.js +13 -0
  554. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/.bin/uuid +26 -0
  555. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/aws-sign2/LICENSE +55 -0
  556. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/aws-sign2/README.md +4 -0
  557. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/aws-sign2/index.js +202 -0
  558. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/aws-sign2/package.json +46 -0
  559. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/bl/.jshintrc +59 -0
  560. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/bl/.npmignore +1 -0
  561. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/bl/.travis.yml +11 -0
  562. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/bl/LICENSE.md +13 -0
  563. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/bl/README.md +198 -0
  564. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/bl/bl.js +216 -0
  565. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/bl/node_modules/readable-stream/.npmignore +5 -0
  566. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/bl/node_modules/readable-stream/LICENSE +18 -0
  567. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/bl/node_modules/readable-stream/README.md +15 -0
  568. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/bl/node_modules/readable-stream/duplex.js +1 -0
  569. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/bl/node_modules/readable-stream/lib/_stream_duplex.js +89 -0
  570. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/bl/node_modules/readable-stream/lib/_stream_passthrough.js +46 -0
  571. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/bl/node_modules/readable-stream/lib/_stream_readable.js +982 -0
  572. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/bl/node_modules/readable-stream/lib/_stream_transform.js +210 -0
  573. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/bl/node_modules/readable-stream/lib/_stream_writable.js +386 -0
  574. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/bl/node_modules/readable-stream/node_modules/core-util-is/README.md +3 -0
  575. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/bl/node_modules/readable-stream/node_modules/core-util-is/float.patch +604 -0
  576. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/bl/node_modules/readable-stream/node_modules/core-util-is/lib/util.js +107 -0
  577. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/bl/node_modules/readable-stream/node_modules/core-util-is/package.json +53 -0
  578. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/bl/node_modules/readable-stream/node_modules/core-util-is/util.js +106 -0
  579. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/bl/node_modules/readable-stream/node_modules/inherits/LICENSE +16 -0
  580. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/bl/node_modules/readable-stream/node_modules/inherits/README.md +42 -0
  581. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/bl/node_modules/readable-stream/node_modules/inherits/inherits.js +1 -0
  582. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/bl/node_modules/readable-stream/node_modules/inherits/inherits_browser.js +23 -0
  583. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/bl/node_modules/readable-stream/node_modules/inherits/package.json +50 -0
  584. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/bl/node_modules/readable-stream/node_modules/inherits/test.js +25 -0
  585. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/bl/node_modules/readable-stream/node_modules/isarray/README.md +54 -0
  586. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/bl/node_modules/readable-stream/node_modules/isarray/build/build.js +209 -0
  587. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/bl/node_modules/readable-stream/node_modules/isarray/component.json +19 -0
  588. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/bl/node_modules/readable-stream/node_modules/isarray/index.js +3 -0
  589. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/bl/node_modules/readable-stream/node_modules/isarray/package.json +53 -0
  590. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/bl/node_modules/readable-stream/node_modules/string_decoder/.npmignore +2 -0
  591. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/bl/node_modules/readable-stream/node_modules/string_decoder/LICENSE +20 -0
  592. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/bl/node_modules/readable-stream/node_modules/string_decoder/README.md +7 -0
  593. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/bl/node_modules/readable-stream/node_modules/string_decoder/index.js +221 -0
  594. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/bl/node_modules/readable-stream/node_modules/string_decoder/package.json +54 -0
  595. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/bl/node_modules/readable-stream/package.json +70 -0
  596. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/bl/node_modules/readable-stream/passthrough.js +1 -0
  597. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/bl/node_modules/readable-stream/readable.js +8 -0
  598. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/bl/node_modules/readable-stream/transform.js +1 -0
  599. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/bl/node_modules/readable-stream/writable.js +1 -0
  600. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/bl/package.json +62 -0
  601. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/bl/test/basic-test.js +541 -0
  602. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/bl/test/sauce.js +38 -0
  603. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/bl/test/test.js +9 -0
  604. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/caseless/README.md +45 -0
  605. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/caseless/index.js +65 -0
  606. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/caseless/package.json +52 -0
  607. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/caseless/test.js +33 -0
  608. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/forever-agent/LICENSE +55 -0
  609. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/forever-agent/README.md +4 -0
  610. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/forever-agent/index.js +119 -0
  611. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/forever-agent/package.json +45 -0
  612. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/form-data/License +19 -0
  613. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/form-data/Readme.md +175 -0
  614. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/form-data/lib/form_data.js +351 -0
  615. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/form-data/node_modules/async/.travis.yml +3 -0
  616. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/form-data/node_modules/async/LICENSE +19 -0
  617. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/form-data/node_modules/async/README.md +1646 -0
  618. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/form-data/node_modules/async/component.json +11 -0
  619. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/form-data/node_modules/async/lib/async.js +1123 -0
  620. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/form-data/node_modules/async/package.json +60 -0
  621. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/form-data/node_modules/combined-stream/License +19 -0
  622. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/form-data/node_modules/combined-stream/Readme.md +132 -0
  623. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/form-data/node_modules/combined-stream/lib/combined_stream.js +188 -0
  624. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/form-data/node_modules/combined-stream/node_modules/delayed-stream/.npmignore +2 -0
  625. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/form-data/node_modules/combined-stream/node_modules/delayed-stream/License +19 -0
  626. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/form-data/node_modules/combined-stream/node_modules/delayed-stream/Makefile +7 -0
  627. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/form-data/node_modules/combined-stream/node_modules/delayed-stream/Readme.md +154 -0
  628. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/form-data/node_modules/combined-stream/node_modules/delayed-stream/lib/delayed_stream.js +99 -0
  629. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/form-data/node_modules/combined-stream/node_modules/delayed-stream/package.json +42 -0
  630. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/form-data/node_modules/combined-stream/node_modules/delayed-stream/test/common.js +6 -0
  631. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/form-data/node_modules/combined-stream/node_modules/delayed-stream/test/integration/test-delayed-http-upload.js +38 -0
  632. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/form-data/node_modules/combined-stream/node_modules/delayed-stream/test/integration/test-delayed-stream-auto-pause.js +21 -0
  633. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/form-data/node_modules/combined-stream/node_modules/delayed-stream/test/integration/test-delayed-stream-pause.js +14 -0
  634. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/form-data/node_modules/combined-stream/node_modules/delayed-stream/test/integration/test-delayed-stream.js +48 -0
  635. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/form-data/node_modules/combined-stream/node_modules/delayed-stream/test/integration/test-handle-source-errors.js +15 -0
  636. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/form-data/node_modules/combined-stream/node_modules/delayed-stream/test/integration/test-max-data-size.js +18 -0
  637. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/form-data/node_modules/combined-stream/node_modules/delayed-stream/test/integration/test-pipe-resumes.js +13 -0
  638. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/form-data/node_modules/combined-stream/node_modules/delayed-stream/test/integration/test-proxy-readable.js +13 -0
  639. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/form-data/node_modules/combined-stream/node_modules/delayed-stream/test/run.js +7 -0
  640. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/form-data/node_modules/combined-stream/package.json +60 -0
  641. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/form-data/node_modules/mime/LICENSE +19 -0
  642. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/form-data/node_modules/mime/README.md +66 -0
  643. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/form-data/node_modules/mime/mime.js +114 -0
  644. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/form-data/node_modules/mime/package.json +57 -0
  645. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/form-data/node_modules/mime/test.js +84 -0
  646. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/form-data/node_modules/mime/types/mime.types +1588 -0
  647. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/form-data/node_modules/mime/types/node.types +77 -0
  648. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/form-data/package.json +80 -0
  649. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/hawk/.npmignore +18 -0
  650. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/hawk/.travis.yml +5 -0
  651. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/hawk/LICENSE +24 -0
  652. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/hawk/Makefile +10 -0
  653. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/hawk/README.md +625 -0
  654. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/hawk/example/usage.js +78 -0
  655. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/hawk/images/hawk.png +0 -0
  656. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/hawk/images/logo.png +0 -0
  657. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/hawk/index.js +1 -0
  658. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/hawk/lib/browser.js +507 -0
  659. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/hawk/lib/client.js +371 -0
  660. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/hawk/lib/crypto.js +118 -0
  661. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/hawk/lib/index.js +15 -0
  662. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/hawk/lib/server.js +523 -0
  663. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/hawk/lib/utils.js +183 -0
  664. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/hawk/node_modules/boom/.npmignore +18 -0
  665. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/hawk/node_modules/boom/.travis.yml +5 -0
  666. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/hawk/node_modules/boom/LICENSE +24 -0
  667. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/hawk/node_modules/boom/Makefile +11 -0
  668. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/hawk/node_modules/boom/README.md +6 -0
  669. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/hawk/node_modules/boom/images/boom.png +0 -0
  670. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/hawk/node_modules/boom/index.js +1 -0
  671. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/hawk/node_modules/boom/lib/index.js +207 -0
  672. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/hawk/node_modules/boom/package.json +64 -0
  673. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/hawk/node_modules/boom/test/index.js +245 -0
  674. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/hawk/node_modules/cryptiles/.npmignore +18 -0
  675. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/hawk/node_modules/cryptiles/.travis.yml +5 -0
  676. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/hawk/node_modules/cryptiles/LICENSE +24 -0
  677. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/hawk/node_modules/cryptiles/Makefile +11 -0
  678. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/hawk/node_modules/cryptiles/README.md +6 -0
  679. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/hawk/node_modules/cryptiles/index.js +1 -0
  680. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/hawk/node_modules/cryptiles/lib/index.js +68 -0
  681. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/hawk/node_modules/cryptiles/package.json +65 -0
  682. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/hawk/node_modules/cryptiles/test/index.js +101 -0
  683. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/hawk/node_modules/hoek/.npmignore +18 -0
  684. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/hawk/node_modules/hoek/.travis.yml +5 -0
  685. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/hawk/node_modules/hoek/LICENSE +33 -0
  686. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/hawk/node_modules/hoek/Makefile +10 -0
  687. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/hawk/node_modules/hoek/README.md +436 -0
  688. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/hawk/node_modules/hoek/images/hoek.png +0 -0
  689. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/hawk/node_modules/hoek/index.js +1 -0
  690. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/hawk/node_modules/hoek/lib/escape.js +132 -0
  691. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/hawk/node_modules/hoek/lib/index.js +585 -0
  692. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/hawk/node_modules/hoek/package.json +70 -0
  693. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/hawk/node_modules/hoek/test/escaper.js +86 -0
  694. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/hawk/node_modules/hoek/test/index.js +1078 -0
  695. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/hawk/node_modules/hoek/test/modules/test1.js +1 -0
  696. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/hawk/node_modules/hoek/test/modules/test2.js +1 -0
  697. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/hawk/node_modules/hoek/test/modules/test3.js +1 -0
  698. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/hawk/node_modules/sntp/.npmignore +18 -0
  699. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/hawk/node_modules/sntp/.travis.yml +5 -0
  700. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/hawk/node_modules/sntp/LICENSE +24 -0
  701. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/hawk/node_modules/sntp/Makefile +11 -0
  702. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/hawk/node_modules/sntp/README.md +68 -0
  703. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/hawk/node_modules/sntp/examples/offset.js +16 -0
  704. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/hawk/node_modules/sntp/examples/time.js +25 -0
  705. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/hawk/node_modules/sntp/index.js +1 -0
  706. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/hawk/node_modules/sntp/lib/index.js +409 -0
  707. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/hawk/node_modules/sntp/package.json +65 -0
  708. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/hawk/node_modules/sntp/test/index.js +359 -0
  709. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/hawk/package.json +70 -0
  710. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/hawk/test/browser.js +817 -0
  711. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/hawk/test/client.js +206 -0
  712. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/hawk/test/crypto.js +86 -0
  713. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/hawk/test/index.js +316 -0
  714. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/hawk/test/message.js +246 -0
  715. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/hawk/test/readme.js +98 -0
  716. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/hawk/test/server.js +686 -0
  717. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/hawk/test/uri.js +456 -0
  718. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/hawk/test/utils.js +120 -0
  719. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/http-signature/.dir-locals.el +6 -0
  720. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/http-signature/.npmignore +7 -0
  721. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/http-signature/LICENSE +18 -0
  722. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/http-signature/README.md +79 -0
  723. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/http-signature/http_signing.md +296 -0
  724. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/http-signature/lib/index.js +26 -0
  725. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/http-signature/lib/parser.js +304 -0
  726. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/http-signature/lib/signer.js +178 -0
  727. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/http-signature/lib/util.js +304 -0
  728. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/http-signature/lib/verify.js +42 -0
  729. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/http-signature/node_modules/asn1/.npmignore +2 -0
  730. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/http-signature/node_modules/asn1/LICENSE +19 -0
  731. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/http-signature/node_modules/asn1/README.md +50 -0
  732. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/http-signature/node_modules/asn1/lib/ber/errors.js +13 -0
  733. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/http-signature/node_modules/asn1/lib/ber/index.js +27 -0
  734. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/http-signature/node_modules/asn1/lib/ber/reader.js +267 -0
  735. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/http-signature/node_modules/asn1/lib/ber/types.js +36 -0
  736. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/http-signature/node_modules/asn1/lib/ber/writer.js +317 -0
  737. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/http-signature/node_modules/asn1/lib/index.js +20 -0
  738. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/http-signature/node_modules/asn1/package.json +63 -0
  739. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/http-signature/node_modules/asn1/tst/ber/reader.test.js +172 -0
  740. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/http-signature/node_modules/asn1/tst/ber/writer.test.js +296 -0
  741. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/http-signature/node_modules/assert-plus/README.md +126 -0
  742. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/http-signature/node_modules/assert-plus/assert.js +245 -0
  743. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/http-signature/node_modules/assert-plus/package.json +45 -0
  744. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/http-signature/node_modules/ctype/.npmignore +1 -0
  745. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/http-signature/node_modules/ctype/CHANGELOG +78 -0
  746. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/http-signature/node_modules/ctype/LICENSE +24 -0
  747. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/http-signature/node_modules/ctype/README +82 -0
  748. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/http-signature/node_modules/ctype/README.old +298 -0
  749. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/http-signature/node_modules/ctype/ctf.js +245 -0
  750. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/http-signature/node_modules/ctype/ctio.js +1485 -0
  751. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/http-signature/node_modules/ctype/ctype.js +944 -0
  752. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/http-signature/node_modules/ctype/man/man3ctype/ctio.3ctype +241 -0
  753. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/http-signature/node_modules/ctype/package.json +42 -0
  754. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/http-signature/node_modules/ctype/tools/jsl.conf +129 -0
  755. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/http-signature/node_modules/ctype/tools/jsstyle +839 -0
  756. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/http-signature/package.json +72 -0
  757. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/json-stringify-safe/LICENSE +27 -0
  758. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/json-stringify-safe/README.md +49 -0
  759. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/json-stringify-safe/package.json +50 -0
  760. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/json-stringify-safe/stringify.js +39 -0
  761. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/json-stringify-safe/test.js +128 -0
  762. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/mime-types/.npmignore +14 -0
  763. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/mime-types/.travis.yml +12 -0
  764. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/mime-types/LICENSE +22 -0
  765. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/mime-types/Makefile +9 -0
  766. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/mime-types/README.md +101 -0
  767. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/mime-types/SOURCES.md +17 -0
  768. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/mime-types/component.json +16 -0
  769. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/mime-types/lib/custom.json +27 -0
  770. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/mime-types/lib/index.js +75 -0
  771. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/mime-types/lib/mime.json +3317 -0
  772. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/mime-types/lib/node.json +55 -0
  773. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/mime-types/package.json +69 -0
  774. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/node-uuid/.npmignore +2 -0
  775. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/node-uuid/LICENSE.md +21 -0
  776. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/node-uuid/README.md +243 -0
  777. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/node-uuid/benchmark/README.md +53 -0
  778. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/node-uuid/benchmark/bench.gnu +174 -0
  779. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/node-uuid/benchmark/bench.sh +34 -0
  780. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/node-uuid/benchmark/benchmark-native.c +34 -0
  781. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/node-uuid/benchmark/benchmark.js +84 -0
  782. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/node-uuid/bin/uuid +26 -0
  783. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/node-uuid/component.json +18 -0
  784. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/node-uuid/package.json +65 -0
  785. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/node-uuid/test/compare_v1.js +63 -0
  786. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/node-uuid/test/test.html +17 -0
  787. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/node-uuid/test/test.js +228 -0
  788. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/node-uuid/uuid.js +247 -0
  789. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/oauth-sign/LICENSE +55 -0
  790. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/oauth-sign/README.md +4 -0
  791. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/oauth-sign/index.js +81 -0
  792. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/oauth-sign/package.json +48 -0
  793. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/oauth-sign/test.js +63 -0
  794. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/qs/.jshintignore +1 -0
  795. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/qs/.jshintrc +10 -0
  796. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/qs/.npmignore +18 -0
  797. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/qs/.travis.yml +4 -0
  798. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/qs/CONTRIBUTING.md +1 -0
  799. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/qs/LICENSE +28 -0
  800. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/qs/Makefile +8 -0
  801. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/qs/README.md +192 -0
  802. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/qs/index.js +1 -0
  803. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/qs/lib/index.js +15 -0
  804. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/qs/lib/parse.js +155 -0
  805. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/qs/lib/stringify.js +55 -0
  806. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/qs/lib/utils.js +133 -0
  807. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/qs/package.json +61 -0
  808. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/qs/test/parse.js +301 -0
  809. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/qs/test/stringify.js +129 -0
  810. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/stringstream/.npmignore +15 -0
  811. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/stringstream/.travis.yml +4 -0
  812. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/stringstream/LICENSE.txt +4 -0
  813. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/stringstream/README.md +38 -0
  814. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/stringstream/example.js +27 -0
  815. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/stringstream/package.json +48 -0
  816. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/stringstream/stringstream.js +102 -0
  817. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/tough-cookie/.editorconfig +12 -0
  818. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/tough-cookie/.jshintrc +70 -0
  819. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/tough-cookie/.npmignore +4 -0
  820. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/tough-cookie/.travis.yml +9 -0
  821. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/tough-cookie/CONTRIBUTING.md +9 -0
  822. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/tough-cookie/LICENSE +74 -0
  823. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/tough-cookie/README.md +423 -0
  824. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/tough-cookie/generate-pubsuffix.js +293 -0
  825. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/tough-cookie/lib/cookie.js +1137 -0
  826. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/tough-cookie/lib/memstore.js +143 -0
  827. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/tough-cookie/lib/pubsuffix.js +98 -0
  828. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/tough-cookie/lib/store.js +67 -0
  829. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/tough-cookie/package.json +66 -0
  830. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/tough-cookie/public-suffix.txt +10079 -0
  831. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/tough-cookie/test/api_test.js +372 -0
  832. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/tough-cookie/test/cookie_jar_test.js +468 -0
  833. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/tough-cookie/test/cookie_sorting_test.js +90 -0
  834. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/tough-cookie/test/cookie_to_json_test.js +164 -0
  835. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/tough-cookie/test/cookie_to_string_test.js +162 -0
  836. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/tough-cookie/test/date_test.js +79 -0
  837. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/tough-cookie/test/domain_and_path_test.js +201 -0
  838. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/tough-cookie/test/ietf_data/dates/bsd-examples.json +168 -0
  839. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/tough-cookie/test/ietf_data/dates/examples.json +48 -0
  840. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/tough-cookie/test/ietf_data/parser.json +1959 -0
  841. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/tough-cookie/test/ietf_test.js +106 -0
  842. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/tough-cookie/test/lifetime_test.js +97 -0
  843. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/tough-cookie/test/parsing_test.js +294 -0
  844. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/tough-cookie/test/regression_test.js +143 -0
  845. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/tough-cookie/tough-cookie-deps.tsv +6 -0
  846. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/tunnel-agent/.jshintrc +5 -0
  847. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/tunnel-agent/LICENSE +55 -0
  848. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/tunnel-agent/README.md +4 -0
  849. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/tunnel-agent/index.js +236 -0
  850. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/node_modules/tunnel-agent/package.json +45 -0
  851. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/package.json +81 -0
  852. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/request/request.js +1493 -0
  853. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/which/LICENSE +15 -0
  854. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/which/README.md +5 -0
  855. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/which/bin/which +14 -0
  856. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/which/package.json +47 -0
  857. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/node_modules/which/which.js +101 -0
  858. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/package.json +81 -0
  859. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/test/exit.js +1 -0
  860. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/test/loadspeed.js +25 -0
  861. data/jasmine/node_modules/karma-phantomjs-launcher/node_modules/phantomjs/test/tests.js +66 -0
  862. data/jasmine/node_modules/karma-phantomjs-launcher/package.json +102 -0
  863. data/jasmine/node_modules/karma-requirejs/LICENSE +20 -0
  864. data/jasmine/node_modules/karma-requirejs/README.md +16 -0
  865. data/jasmine/node_modules/karma-requirejs/lib/adapter.js +53 -0
  866. data/jasmine/node_modules/karma-requirejs/lib/index.js +18 -0
  867. data/jasmine/node_modules/karma-requirejs/package.json +82 -0
  868. data/jasmine/node_modules/karma-spec-reporter/.npmignore +1 -0
  869. data/jasmine/node_modules/karma-spec-reporter/LICENSE +7 -0
  870. data/jasmine/node_modules/karma-spec-reporter/README.md +35 -0
  871. data/jasmine/node_modules/karma-spec-reporter/index.js +132 -0
  872. data/jasmine/node_modules/karma-spec-reporter/node_modules/colors/MIT-LICENSE.txt +22 -0
  873. data/jasmine/node_modules/karma-spec-reporter/node_modules/colors/ReadMe.md +77 -0
  874. data/jasmine/node_modules/karma-spec-reporter/node_modules/colors/colors.js +342 -0
  875. data/jasmine/node_modules/karma-spec-reporter/node_modules/colors/example.html +76 -0
  876. data/jasmine/node_modules/karma-spec-reporter/node_modules/colors/example.js +77 -0
  877. data/jasmine/node_modules/karma-spec-reporter/node_modules/colors/package.json +46 -0
  878. data/jasmine/node_modules/karma-spec-reporter/node_modules/colors/test.js +70 -0
  879. data/jasmine/node_modules/karma-spec-reporter/node_modules/colors/themes/winston-dark.js +12 -0
  880. data/jasmine/node_modules/karma-spec-reporter/node_modules/colors/themes/winston-light.js +12 -0
  881. data/jasmine/node_modules/karma-spec-reporter/package.json +53 -0
  882. data/jasmine/node_modules/karma/CHANGELOG.md +1127 -0
  883. data/jasmine/node_modules/karma/LICENSE +20 -0
  884. data/jasmine/node_modules/karma/README.md +115 -0
  885. data/jasmine/node_modules/karma/bin/karma +3 -0
  886. data/jasmine/node_modules/karma/config.tpl.coffee +66 -0
  887. data/jasmine/node_modules/karma/config.tpl.js +63 -0
  888. data/jasmine/node_modules/karma/config.tpl.ls +66 -0
  889. data/jasmine/node_modules/karma/karma-completion.sh +50 -0
  890. data/jasmine/node_modules/karma/lib/browser.js +248 -0
  891. data/jasmine/node_modules/karma/lib/browser_collection.js +106 -0
  892. data/jasmine/node_modules/karma/lib/browser_result.js +25 -0
  893. data/jasmine/node_modules/karma/lib/cli.js +247 -0
  894. data/jasmine/node_modules/karma/lib/completion.js +163 -0
  895. data/jasmine/node_modules/karma/lib/config.js +300 -0
  896. data/jasmine/node_modules/karma/lib/constants.js +30 -0
  897. data/jasmine/node_modules/karma/lib/emitter_wrapper.js +31 -0
  898. data/jasmine/node_modules/karma/lib/events.js +92 -0
  899. data/jasmine/node_modules/karma/lib/executor.js +56 -0
  900. data/jasmine/node_modules/karma/lib/file_list.js +425 -0
  901. data/jasmine/node_modules/karma/lib/helper.js +97 -0
  902. data/jasmine/node_modules/karma/lib/index.js +6 -0
  903. data/jasmine/node_modules/karma/lib/init.js +279 -0
  904. data/jasmine/node_modules/karma/lib/init/color_schemes.js +29 -0
  905. data/jasmine/node_modules/karma/lib/init/formatters.js +132 -0
  906. data/jasmine/node_modules/karma/lib/init/state_machine.js +143 -0
  907. data/jasmine/node_modules/karma/lib/launcher.js +177 -0
  908. data/jasmine/node_modules/karma/lib/launchers/base.js +130 -0
  909. data/jasmine/node_modules/karma/lib/launchers/capture_timeout.js +43 -0
  910. data/jasmine/node_modules/karma/lib/launchers/process.js +147 -0
  911. data/jasmine/node_modules/karma/lib/launchers/retry.js +32 -0
  912. data/jasmine/node_modules/karma/lib/logger.js +79 -0
  913. data/jasmine/node_modules/karma/lib/middleware/common.js +93 -0
  914. data/jasmine/node_modules/karma/lib/middleware/karma.js +170 -0
  915. data/jasmine/node_modules/karma/lib/middleware/proxy.js +129 -0
  916. data/jasmine/node_modules/karma/lib/middleware/runner.js +92 -0
  917. data/jasmine/node_modules/karma/lib/middleware/source_files.js +61 -0
  918. data/jasmine/node_modules/karma/lib/middleware/strip_host.js +18 -0
  919. data/jasmine/node_modules/karma/lib/plugin.js +51 -0
  920. data/jasmine/node_modules/karma/lib/preprocessor.js +103 -0
  921. data/jasmine/node_modules/karma/lib/reporter.js +108 -0
  922. data/jasmine/node_modules/karma/lib/reporters/base.js +151 -0
  923. data/jasmine/node_modules/karma/lib/reporters/base_color.js +25 -0
  924. data/jasmine/node_modules/karma/lib/reporters/dots.js +51 -0
  925. data/jasmine/node_modules/karma/lib/reporters/dots_color.js +12 -0
  926. data/jasmine/node_modules/karma/lib/reporters/multi.js +21 -0
  927. data/jasmine/node_modules/karma/lib/reporters/progress.js +66 -0
  928. data/jasmine/node_modules/karma/lib/reporters/progress_color.js +12 -0
  929. data/jasmine/node_modules/karma/lib/runner.js +70 -0
  930. data/jasmine/node_modules/karma/lib/server.js +315 -0
  931. data/jasmine/node_modules/karma/lib/temp_dir.js +31 -0
  932. data/jasmine/node_modules/karma/lib/watcher.js +113 -0
  933. data/jasmine/node_modules/karma/lib/web-server.js +74 -0
  934. data/jasmine/node_modules/karma/node_modules/.bin/node-http-proxy +113 -0
  935. data/jasmine/node_modules/karma/node_modules/.bin/rimraf +33 -0
  936. data/jasmine/node_modules/karma/node_modules/chokidar/CHANGELOG.md +197 -0
  937. data/jasmine/node_modules/karma/node_modules/chokidar/README.md +224 -0
  938. data/jasmine/node_modules/karma/node_modules/chokidar/index.js +482 -0
  939. data/jasmine/node_modules/karma/node_modules/chokidar/lib/fsevents-handler.js +361 -0
  940. data/jasmine/node_modules/karma/node_modules/chokidar/lib/nodefs-handler.js +476 -0
  941. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/anymatch/LICENSE +15 -0
  942. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/anymatch/README.md +91 -0
  943. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/anymatch/index.js +64 -0
  944. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/anymatch/node_modules/micromatch/LICENSE +21 -0
  945. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/anymatch/node_modules/micromatch/README.md +504 -0
  946. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/anymatch/node_modules/micromatch/index.js +411 -0
  947. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/anymatch/node_modules/micromatch/lib/chars.js +81 -0
  948. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/anymatch/node_modules/micromatch/lib/expand.js +376 -0
  949. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/anymatch/node_modules/micromatch/lib/glob.js +210 -0
  950. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/anymatch/node_modules/micromatch/lib/utils.js +86 -0
  951. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/anymatch/node_modules/micromatch/node_modules/arr-diff/LICENSE-MIT +24 -0
  952. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/anymatch/node_modules/micromatch/node_modules/arr-diff/README.md +81 -0
  953. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/anymatch/node_modules/micromatch/node_modules/arr-diff/benchmark/check.js +22 -0
  954. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/anymatch/node_modules/micromatch/node_modules/arr-diff/benchmark/code/array-differ.js +3 -0
  955. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/anymatch/node_modules/micromatch/node_modules/arr-diff/benchmark/code/current.js +3 -0
  956. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/anymatch/node_modules/micromatch/node_modules/arr-diff/benchmark/code/filter.js +7 -0
  957. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/anymatch/node_modules/micromatch/node_modules/arr-diff/benchmark/code/for-lefthand.js +14 -0
  958. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/anymatch/node_modules/micromatch/node_modules/arr-diff/benchmark/code/for-negative.js +13 -0
  959. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/anymatch/node_modules/micromatch/node_modules/arr-diff/benchmark/code/for-reverse.js +14 -0
  960. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/anymatch/node_modules/micromatch/node_modules/arr-diff/benchmark/code/for.js +13 -0
  961. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/anymatch/node_modules/micromatch/node_modules/arr-diff/benchmark/code/forEach-2.js +12 -0
  962. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/anymatch/node_modules/micromatch/node_modules/arr-diff/benchmark/code/forEach.js +13 -0
  963. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/anymatch/node_modules/micromatch/node_modules/arr-diff/benchmark/code/reduce.js +10 -0
  964. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/anymatch/node_modules/micromatch/node_modules/arr-diff/benchmark/code/while-indexof.js +15 -0
  965. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/anymatch/node_modules/micromatch/node_modules/arr-diff/benchmark/code/while-multi-unshift.js +26 -0
  966. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/anymatch/node_modules/micromatch/node_modules/arr-diff/benchmark/code/while-multi.js +26 -0
  967. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/anymatch/node_modules/micromatch/node_modules/arr-diff/benchmark/code/while-splice.js +10 -0
  968. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/anymatch/node_modules/micromatch/node_modules/arr-diff/benchmark/code/while-unshift.js +13 -0
  969. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/anymatch/node_modules/micromatch/node_modules/arr-diff/benchmark/code/while.js +13 -0
  970. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/anymatch/node_modules/micromatch/node_modules/arr-diff/benchmark/fixtures/med.js +2 -0
  971. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/anymatch/node_modules/micromatch/node_modules/arr-diff/benchmark/fixtures/short.js +1 -0
  972. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/anymatch/node_modules/micromatch/node_modules/arr-diff/benchmark/index.js +11 -0
  973. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/anymatch/node_modules/micromatch/node_modules/arr-diff/index.js +59 -0
  974. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/anymatch/node_modules/micromatch/node_modules/arr-diff/node_modules/array-slice/LICENSE +21 -0
  975. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/anymatch/node_modules/micromatch/node_modules/arr-diff/node_modules/array-slice/README.md +54 -0
  976. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/anymatch/node_modules/micromatch/node_modules/arr-diff/node_modules/array-slice/index.js +36 -0
  977. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/anymatch/node_modules/micromatch/node_modules/arr-diff/node_modules/array-slice/package.json +65 -0
  978. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/anymatch/node_modules/micromatch/node_modules/arr-diff/package.json +66 -0
  979. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/anymatch/node_modules/micromatch/node_modules/arr-diff/test.js +41 -0
  980. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/anymatch/node_modules/micromatch/node_modules/braces/LICENSE +24 -0
  981. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/anymatch/node_modules/micromatch/node_modules/braces/README.md +242 -0
  982. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/anymatch/node_modules/micromatch/node_modules/braces/index.js +401 -0
  983. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/anymatch/node_modules/micromatch/node_modules/braces/node_modules/expand-range/LICENSE +24 -0
  984. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/anymatch/node_modules/micromatch/node_modules/braces/node_modules/expand-range/README.md +107 -0
  985. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/anymatch/node_modules/micromatch/node_modules/braces/node_modules/expand-range/index.js +43 -0
  986. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/anymatch/node_modules/micromatch/node_modules/braces/node_modules/expand-range/node_modules/fill-range/LICENSE +21 -0
  987. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/anymatch/node_modules/micromatch/node_modules/braces/node_modules/expand-range/node_modules/fill-range/README.md +290 -0
  988. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/anymatch/node_modules/micromatch/node_modules/braces/node_modules/expand-range/node_modules/fill-range/index.js +408 -0
  989. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/anymatch/node_modules/micromatch/node_modules/braces/node_modules/expand-range/node_modules/fill-range/node_modules/is-number/LICENSE +21 -0
  990. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/anymatch/node_modules/micromatch/node_modules/braces/node_modules/expand-range/node_modules/fill-range/node_modules/is-number/README.md +104 -0
  991. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/anymatch/node_modules/micromatch/node_modules/braces/node_modules/expand-range/node_modules/fill-range/node_modules/is-number/index.js +14 -0
  992. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/anymatch/node_modules/micromatch/node_modules/braces/node_modules/expand-range/node_modules/fill-range/node_modules/is-number/package.json +75 -0
  993. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/anymatch/node_modules/micromatch/node_modules/braces/node_modules/expand-range/node_modules/fill-range/node_modules/isobject/LICENSE +21 -0
  994. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/anymatch/node_modules/micromatch/node_modules/braces/node_modules/expand-range/node_modules/fill-range/node_modules/isobject/README.md +72 -0
  995. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/anymatch/node_modules/micromatch/node_modules/braces/node_modules/expand-range/node_modules/fill-range/node_modules/isobject/index.js +13 -0
  996. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/anymatch/node_modules/micromatch/node_modules/braces/node_modules/expand-range/node_modules/fill-range/node_modules/isobject/package.json +69 -0
  997. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/anymatch/node_modules/micromatch/node_modules/braces/node_modules/expand-range/node_modules/fill-range/node_modules/randomatic/README.md +138 -0
  998. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/anymatch/node_modules/micromatch/node_modules/braces/node_modules/expand-range/node_modules/fill-range/node_modules/randomatic/index.js +86 -0
  999. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/anymatch/node_modules/micromatch/node_modules/braces/node_modules/expand-range/node_modules/fill-range/node_modules/randomatic/package.json +71 -0
  1000. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/anymatch/node_modules/micromatch/node_modules/braces/node_modules/expand-range/node_modules/fill-range/node_modules/repeat-string/LICENSE +24 -0
  1001. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/anymatch/node_modules/micromatch/node_modules/braces/node_modules/expand-range/node_modules/fill-range/node_modules/repeat-string/README.md +94 -0
  1002. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/anymatch/node_modules/micromatch/node_modules/braces/node_modules/expand-range/node_modules/fill-range/node_modules/repeat-string/index.js +66 -0
  1003. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/anymatch/node_modules/micromatch/node_modules/braces/node_modules/expand-range/node_modules/fill-range/node_modules/repeat-string/package.json +78 -0
  1004. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/anymatch/node_modules/micromatch/node_modules/braces/node_modules/expand-range/node_modules/fill-range/package.json +90 -0
  1005. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/anymatch/node_modules/micromatch/node_modules/braces/node_modules/expand-range/package.json +81 -0
  1006. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/anymatch/node_modules/micromatch/node_modules/braces/node_modules/preserve/.gitattributes +14 -0
  1007. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/anymatch/node_modules/micromatch/node_modules/braces/node_modules/preserve/.jshintrc +24 -0
  1008. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/anymatch/node_modules/micromatch/node_modules/braces/node_modules/preserve/.npmignore +53 -0
  1009. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/anymatch/node_modules/micromatch/node_modules/braces/node_modules/preserve/.travis.yml +3 -0
  1010. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/anymatch/node_modules/micromatch/node_modules/braces/node_modules/preserve/.verb.md +59 -0
  1011. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/anymatch/node_modules/micromatch/node_modules/braces/node_modules/preserve/LICENSE +24 -0
  1012. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/anymatch/node_modules/micromatch/node_modules/braces/node_modules/preserve/README.md +90 -0
  1013. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/anymatch/node_modules/micromatch/node_modules/braces/node_modules/preserve/index.js +54 -0
  1014. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/anymatch/node_modules/micromatch/node_modules/braces/node_modules/preserve/package.json +69 -0
  1015. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/anymatch/node_modules/micromatch/node_modules/braces/node_modules/preserve/test.js +48 -0
  1016. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/anymatch/node_modules/micromatch/node_modules/braces/node_modules/repeat-element/LICENSE +21 -0
  1017. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/anymatch/node_modules/micromatch/node_modules/braces/node_modules/repeat-element/README.md +71 -0
  1018. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/anymatch/node_modules/micromatch/node_modules/braces/node_modules/repeat-element/index.js +18 -0
  1019. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/anymatch/node_modules/micromatch/node_modules/braces/node_modules/repeat-element/package.json +66 -0
  1020. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/anymatch/node_modules/micromatch/node_modules/braces/package.json +91 -0
  1021. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/anymatch/node_modules/micromatch/node_modules/debug/.jshintrc +3 -0
  1022. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/anymatch/node_modules/micromatch/node_modules/debug/.npmignore +6 -0
  1023. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/anymatch/node_modules/micromatch/node_modules/debug/History.md +195 -0
  1024. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/anymatch/node_modules/micromatch/node_modules/debug/Makefile +36 -0
  1025. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/anymatch/node_modules/micromatch/node_modules/debug/Readme.md +188 -0
  1026. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/anymatch/node_modules/micromatch/node_modules/debug/browser.js +168 -0
  1027. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/anymatch/node_modules/micromatch/node_modules/debug/component.json +19 -0
  1028. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/anymatch/node_modules/micromatch/node_modules/debug/debug.js +197 -0
  1029. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/anymatch/node_modules/micromatch/node_modules/debug/node.js +209 -0
  1030. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/anymatch/node_modules/micromatch/node_modules/debug/node_modules/ms/.npmignore +5 -0
  1031. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/anymatch/node_modules/micromatch/node_modules/debug/node_modules/ms/History.md +66 -0
  1032. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/anymatch/node_modules/micromatch/node_modules/debug/node_modules/ms/LICENSE +20 -0
  1033. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/anymatch/node_modules/micromatch/node_modules/debug/node_modules/ms/README.md +35 -0
  1034. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/anymatch/node_modules/micromatch/node_modules/debug/node_modules/ms/index.js +125 -0
  1035. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/anymatch/node_modules/micromatch/node_modules/debug/node_modules/ms/package.json +47 -0
  1036. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/anymatch/node_modules/micromatch/node_modules/debug/package.json +72 -0
  1037. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/anymatch/node_modules/micromatch/node_modules/expand-brackets/README.md +79 -0
  1038. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/anymatch/node_modules/micromatch/node_modules/expand-brackets/index.js +157 -0
  1039. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/anymatch/node_modules/micromatch/node_modules/expand-brackets/package.json +63 -0
  1040. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/anymatch/node_modules/micromatch/node_modules/filename-regex/README.md +51 -0
  1041. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/anymatch/node_modules/micromatch/node_modules/filename-regex/index.js +10 -0
  1042. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/anymatch/node_modules/micromatch/node_modules/filename-regex/package.json +64 -0
  1043. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/anymatch/node_modules/micromatch/node_modules/kind-of/README.md +155 -0
  1044. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/anymatch/node_modules/micromatch/node_modules/kind-of/index.js +45 -0
  1045. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/anymatch/node_modules/micromatch/node_modules/kind-of/package.json +82 -0
  1046. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/anymatch/node_modules/micromatch/node_modules/object.omit/.gitattributes +14 -0
  1047. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/anymatch/node_modules/micromatch/node_modules/object.omit/.jshintrc +22 -0
  1048. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/anymatch/node_modules/micromatch/node_modules/object.omit/.npmignore +52 -0
  1049. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/anymatch/node_modules/micromatch/node_modules/object.omit/.travis.yml +3 -0
  1050. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/anymatch/node_modules/micromatch/node_modules/object.omit/.verbrc.md +82 -0
  1051. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/anymatch/node_modules/micromatch/node_modules/object.omit/LICENSE-MIT +22 -0
  1052. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/anymatch/node_modules/micromatch/node_modules/object.omit/README.md +91 -0
  1053. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/anymatch/node_modules/micromatch/node_modules/object.omit/index.js +40 -0
  1054. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/anymatch/node_modules/micromatch/node_modules/object.omit/node_modules/for-own/LICENSE +21 -0
  1055. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/anymatch/node_modules/micromatch/node_modules/object.omit/node_modules/for-own/README.md +52 -0
  1056. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/anymatch/node_modules/micromatch/node_modules/object.omit/node_modules/for-own/index.js +19 -0
  1057. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/anymatch/node_modules/micromatch/node_modules/object.omit/node_modules/for-own/node_modules/for-in/LICENSE +21 -0
  1058. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/anymatch/node_modules/micromatch/node_modules/object.omit/node_modules/for-own/node_modules/for-in/README.md +52 -0
  1059. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/anymatch/node_modules/micromatch/node_modules/object.omit/node_modules/for-own/node_modules/for-in/index.js +16 -0
  1060. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/anymatch/node_modules/micromatch/node_modules/object.omit/node_modules/for-own/node_modules/for-in/package.json +69 -0
  1061. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/anymatch/node_modules/micromatch/node_modules/object.omit/node_modules/for-own/package.json +72 -0
  1062. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/anymatch/node_modules/micromatch/node_modules/object.omit/node_modules/isobject/.gitattributes +14 -0
  1063. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/anymatch/node_modules/micromatch/node_modules/object.omit/node_modules/isobject/.jshintrc +22 -0
  1064. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/anymatch/node_modules/micromatch/node_modules/object.omit/node_modules/isobject/.npmignore +52 -0
  1065. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/anymatch/node_modules/micromatch/node_modules/object.omit/node_modules/isobject/.verbrc.md +29 -0
  1066. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/anymatch/node_modules/micromatch/node_modules/object.omit/node_modules/isobject/LICENSE-MIT +22 -0
  1067. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/anymatch/node_modules/micromatch/node_modules/object.omit/node_modules/isobject/README.md +37 -0
  1068. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/anymatch/node_modules/micromatch/node_modules/object.omit/node_modules/isobject/index.js +20 -0
  1069. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/anymatch/node_modules/micromatch/node_modules/object.omit/node_modules/isobject/package.json +68 -0
  1070. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/anymatch/node_modules/micromatch/node_modules/object.omit/node_modules/isobject/test/mocha.opts +1 -0
  1071. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/anymatch/node_modules/micromatch/node_modules/object.omit/node_modules/isobject/test/test.js +21 -0
  1072. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/anymatch/node_modules/micromatch/node_modules/object.omit/package.json +80 -0
  1073. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/anymatch/node_modules/micromatch/node_modules/object.omit/test.js +34 -0
  1074. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/anymatch/node_modules/micromatch/node_modules/parse-glob/LICENSE +21 -0
  1075. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/anymatch/node_modules/micromatch/node_modules/parse-glob/README.md +122 -0
  1076. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/anymatch/node_modules/micromatch/node_modules/parse-glob/index.js +156 -0
  1077. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/anymatch/node_modules/micromatch/node_modules/parse-glob/node_modules/glob-base/LICENSE +21 -0
  1078. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/anymatch/node_modules/micromatch/node_modules/parse-glob/node_modules/glob-base/README.md +158 -0
  1079. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/anymatch/node_modules/micromatch/node_modules/parse-glob/node_modules/glob-base/index.js +50 -0
  1080. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/anymatch/node_modules/micromatch/node_modules/parse-glob/node_modules/glob-base/package.json +73 -0
  1081. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/anymatch/node_modules/micromatch/node_modules/parse-glob/node_modules/is-dotfile/README.md +56 -0
  1082. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/anymatch/node_modules/micromatch/node_modules/parse-glob/node_modules/is-dotfile/index.js +15 -0
  1083. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/anymatch/node_modules/micromatch/node_modules/parse-glob/node_modules/is-dotfile/package.json +69 -0
  1084. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/anymatch/node_modules/micromatch/node_modules/parse-glob/node_modules/is-extglob/LICENSE +21 -0
  1085. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/anymatch/node_modules/micromatch/node_modules/parse-glob/node_modules/is-extglob/README.md +75 -0
  1086. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/anymatch/node_modules/micromatch/node_modules/parse-glob/node_modules/is-extglob/index.js +11 -0
  1087. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/anymatch/node_modules/micromatch/node_modules/parse-glob/node_modules/is-extglob/package.json +72 -0
  1088. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/anymatch/node_modules/micromatch/node_modules/parse-glob/package.json +93 -0
  1089. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/anymatch/node_modules/micromatch/node_modules/regex-cache/LICENSE +21 -0
  1090. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/anymatch/node_modules/micromatch/node_modules/regex-cache/README.md +148 -0
  1091. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/anymatch/node_modules/micromatch/node_modules/regex-cache/index.js +67 -0
  1092. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/anymatch/node_modules/micromatch/node_modules/regex-cache/node_modules/is-equal-shallow/LICENSE +21 -0
  1093. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/anymatch/node_modules/micromatch/node_modules/regex-cache/node_modules/is-equal-shallow/README.md +80 -0
  1094. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/anymatch/node_modules/micromatch/node_modules/regex-cache/node_modules/is-equal-shallow/index.js +27 -0
  1095. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/anymatch/node_modules/micromatch/node_modules/regex-cache/node_modules/is-equal-shallow/node_modules/is-primitive/README.md +58 -0
  1096. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/anymatch/node_modules/micromatch/node_modules/regex-cache/node_modules/is-equal-shallow/node_modules/is-primitive/index.js +21 -0
  1097. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/anymatch/node_modules/micromatch/node_modules/regex-cache/node_modules/is-equal-shallow/node_modules/is-primitive/package.json +69 -0
  1098. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/anymatch/node_modules/micromatch/node_modules/regex-cache/node_modules/is-equal-shallow/package.json +77 -0
  1099. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/anymatch/node_modules/micromatch/node_modules/regex-cache/node_modules/is-primitive/LICENSE +21 -0
  1100. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/anymatch/node_modules/micromatch/node_modules/regex-cache/node_modules/is-primitive/README.md +57 -0
  1101. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/anymatch/node_modules/micromatch/node_modules/regex-cache/node_modules/is-primitive/index.js +13 -0
  1102. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/anymatch/node_modules/micromatch/node_modules/regex-cache/node_modules/is-primitive/package.json +68 -0
  1103. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/anymatch/node_modules/micromatch/node_modules/regex-cache/package.json +75 -0
  1104. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/anymatch/node_modules/micromatch/package.json +121 -0
  1105. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/anymatch/package.json +69 -0
  1106. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/arrify/index.js +8 -0
  1107. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/arrify/license +21 -0
  1108. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/arrify/package.json +61 -0
  1109. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/arrify/readme.md +36 -0
  1110. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/async-each/.npmignore +25 -0
  1111. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/async-each/CHANGELOG.md +20 -0
  1112. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/async-each/README.md +64 -0
  1113. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/async-each/component.json +18 -0
  1114. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/async-each/index.js +38 -0
  1115. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/async-each/package.json +61 -0
  1116. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/fsevents/.npmignore +2 -0
  1117. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/fsevents/.tern-project +8 -0
  1118. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/fsevents/.travis.yml +23 -0
  1119. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/fsevents/CHANGELOG.md +16 -0
  1120. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/fsevents/LICENSE +22 -0
  1121. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/fsevents/Readme.md +79 -0
  1122. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/fsevents/binding.gyp +21 -0
  1123. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/fsevents/build/.target.mk +46 -0
  1124. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/fsevents/build/Makefile +355 -0
  1125. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/fsevents/build/Release/.deps/Release/.node.d +1 -0
  1126. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/fsevents/build/Release/.deps/Release/fse.node.d +1 -0
  1127. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/fsevents/build/Release/.deps/Release/obj.target/fse/fsevents.o.d +45 -0
  1128. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/fsevents/build/Release/.node +0 -0
  1129. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/fsevents/build/Release/fse.node +0 -0
  1130. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/fsevents/build/Release/linker.lock +0 -0
  1131. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/fsevents/build/binding.Makefile +6 -0
  1132. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/fsevents/build/config.gypi +136 -0
  1133. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/fsevents/build/fse.target.mk +160 -0
  1134. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/fsevents/build/gyp-mac-tool +512 -0
  1135. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/fsevents/fsevents-0.3.0.tgz +0 -0
  1136. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/fsevents/fsevents.cc +100 -0
  1137. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/fsevents/fsevents.js +102 -0
  1138. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/fsevents/node_modules/nan/.dntrc +30 -0
  1139. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/fsevents/node_modules/nan/CHANGELOG.md +294 -0
  1140. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/fsevents/node_modules/nan/LICENSE.md +13 -0
  1141. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/fsevents/node_modules/nan/README.md +1402 -0
  1142. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/fsevents/node_modules/nan/appveyor.yml +38 -0
  1143. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/fsevents/node_modules/nan/include_dirs.js +1 -0
  1144. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/fsevents/node_modules/nan/nan.h +2322 -0
  1145. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/fsevents/node_modules/nan/nan_implementation_12_inl.h +261 -0
  1146. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/fsevents/node_modules/nan/nan_implementation_pre_12_inl.h +267 -0
  1147. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/fsevents/node_modules/nan/nan_new.h +328 -0
  1148. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/fsevents/node_modules/nan/nan_string_bytes.h +312 -0
  1149. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/fsevents/node_modules/nan/package.json +89 -0
  1150. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/fsevents/package.json +74 -0
  1151. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/fsevents/src/async.cc +41 -0
  1152. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/fsevents/src/constants.cc +111 -0
  1153. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/fsevents/src/locking.cc +27 -0
  1154. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/fsevents/src/methods.cc +48 -0
  1155. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/fsevents/src/storage.cc +29 -0
  1156. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/fsevents/src/thread.cc +71 -0
  1157. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/fsevents/test/fsevents.js +27 -0
  1158. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/fsevents/test/function.js +93 -0
  1159. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/glob-parent/.npmignore +4 -0
  1160. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/glob-parent/.travis.yml +4 -0
  1161. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/glob-parent/LICENSE +15 -0
  1162. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/glob-parent/README.md +37 -0
  1163. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/glob-parent/index.js +9 -0
  1164. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/glob-parent/package.json +58 -0
  1165. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/glob-parent/test.js +22 -0
  1166. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/is-binary-path/index.js +18 -0
  1167. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/is-binary-path/node_modules/binary-extensions/binary-extensions.json +186 -0
  1168. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/is-binary-path/node_modules/binary-extensions/license +21 -0
  1169. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/is-binary-path/node_modules/binary-extensions/package.json +77 -0
  1170. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/is-binary-path/node_modules/binary-extensions/readme.md +33 -0
  1171. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/is-binary-path/package.json +67 -0
  1172. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/is-binary-path/readme.md +33 -0
  1173. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/is-glob/LICENSE +21 -0
  1174. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/is-glob/README.md +69 -0
  1175. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/is-glob/index.js +11 -0
  1176. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/is-glob/package.json +72 -0
  1177. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/readdirp/.npmignore +15 -0
  1178. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/readdirp/.travis.yml +5 -0
  1179. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/readdirp/LICENSE +18 -0
  1180. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/readdirp/README.md +233 -0
  1181. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/readdirp/examples/Readme.md +37 -0
  1182. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/readdirp/examples/callback-api.js +10 -0
  1183. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/readdirp/examples/grep.js +71 -0
  1184. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/readdirp/examples/package.json +9 -0
  1185. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/readdirp/examples/stream-api-pipe.js +19 -0
  1186. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/readdirp/examples/stream-api.js +15 -0
  1187. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/readdirp/node_modules/readable-stream/.npmignore +5 -0
  1188. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/readdirp/node_modules/readable-stream/LICENSE +18 -0
  1189. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/readdirp/node_modules/readable-stream/README.md +15 -0
  1190. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/readdirp/node_modules/readable-stream/duplex.js +1 -0
  1191. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/readdirp/node_modules/readable-stream/lib/_stream_duplex.js +89 -0
  1192. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/readdirp/node_modules/readable-stream/lib/_stream_passthrough.js +46 -0
  1193. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/readdirp/node_modules/readable-stream/lib/_stream_readable.js +982 -0
  1194. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/readdirp/node_modules/readable-stream/lib/_stream_transform.js +210 -0
  1195. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/readdirp/node_modules/readable-stream/lib/_stream_writable.js +386 -0
  1196. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/readdirp/node_modules/readable-stream/node_modules/core-util-is/README.md +3 -0
  1197. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/readdirp/node_modules/readable-stream/node_modules/core-util-is/float.patch +604 -0
  1198. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/readdirp/node_modules/readable-stream/node_modules/core-util-is/lib/util.js +107 -0
  1199. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/readdirp/node_modules/readable-stream/node_modules/core-util-is/package.json +53 -0
  1200. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/readdirp/node_modules/readable-stream/node_modules/core-util-is/util.js +106 -0
  1201. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/readdirp/node_modules/readable-stream/node_modules/inherits/LICENSE +16 -0
  1202. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/readdirp/node_modules/readable-stream/node_modules/inherits/README.md +42 -0
  1203. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/readdirp/node_modules/readable-stream/node_modules/inherits/inherits.js +1 -0
  1204. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/readdirp/node_modules/readable-stream/node_modules/inherits/inherits_browser.js +23 -0
  1205. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/readdirp/node_modules/readable-stream/node_modules/inherits/package.json +50 -0
  1206. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/readdirp/node_modules/readable-stream/node_modules/inherits/test.js +25 -0
  1207. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/readdirp/node_modules/readable-stream/node_modules/isarray/README.md +54 -0
  1208. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/readdirp/node_modules/readable-stream/node_modules/isarray/build/build.js +209 -0
  1209. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/readdirp/node_modules/readable-stream/node_modules/isarray/component.json +19 -0
  1210. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/readdirp/node_modules/readable-stream/node_modules/isarray/index.js +3 -0
  1211. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/readdirp/node_modules/readable-stream/node_modules/isarray/package.json +49 -0
  1212. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/readdirp/node_modules/readable-stream/node_modules/string_decoder/.npmignore +2 -0
  1213. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/readdirp/node_modules/readable-stream/node_modules/string_decoder/LICENSE +20 -0
  1214. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/readdirp/node_modules/readable-stream/node_modules/string_decoder/README.md +7 -0
  1215. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/readdirp/node_modules/readable-stream/node_modules/string_decoder/index.js +221 -0
  1216. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/readdirp/node_modules/readable-stream/node_modules/string_decoder/package.json +53 -0
  1217. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/readdirp/node_modules/readable-stream/package.json +69 -0
  1218. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/readdirp/node_modules/readable-stream/passthrough.js +1 -0
  1219. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/readdirp/node_modules/readable-stream/readable.js +8 -0
  1220. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/readdirp/node_modules/readable-stream/transform.js +1 -0
  1221. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/readdirp/node_modules/readable-stream/writable.js +1 -0
  1222. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/readdirp/package.json +71 -0
  1223. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/readdirp/readdirp.js +288 -0
  1224. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/readdirp/stream-api.js +100 -0
  1225. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/readdirp/test/bed/root_dir1/root_dir1_file1.ext1 +0 -0
  1226. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/readdirp/test/bed/root_dir1/root_dir1_file2.ext2 +0 -0
  1227. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/readdirp/test/bed/root_dir1/root_dir1_file3.ext3 +0 -0
  1228. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/readdirp/test/bed/root_dir1/root_dir1_subdir1/root1_dir1_subdir1_file1.ext1 +0 -0
  1229. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/readdirp/test/bed/root_dir2/root_dir2_file1.ext1 +0 -0
  1230. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/readdirp/test/bed/root_dir2/root_dir2_file2.ext2 +0 -0
  1231. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/readdirp/test/bed/root_file1.ext1 +0 -0
  1232. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/readdirp/test/bed/root_file2.ext2 +0 -0
  1233. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/readdirp/test/bed/root_file3.ext3 +0 -0
  1234. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/readdirp/test/readdirp-stream.js +310 -0
  1235. data/jasmine/node_modules/karma/node_modules/chokidar/node_modules/readdirp/test/readdirp.js +289 -0
  1236. data/jasmine/node_modules/karma/node_modules/chokidar/package.json +87 -0
  1237. data/jasmine/node_modules/karma/node_modules/colors/MIT-LICENSE.txt +22 -0
  1238. data/jasmine/node_modules/karma/node_modules/colors/ReadMe.md +77 -0
  1239. data/jasmine/node_modules/karma/node_modules/colors/colors.js +342 -0
  1240. data/jasmine/node_modules/karma/node_modules/colors/example.html +76 -0
  1241. data/jasmine/node_modules/karma/node_modules/colors/example.js +77 -0
  1242. data/jasmine/node_modules/karma/node_modules/colors/package.json +45 -0
  1243. data/jasmine/node_modules/karma/node_modules/colors/test.js +70 -0
  1244. data/jasmine/node_modules/karma/node_modules/colors/themes/winston-dark.js +12 -0
  1245. data/jasmine/node_modules/karma/node_modules/colors/themes/winston-light.js +12 -0
  1246. data/jasmine/node_modules/karma/node_modules/connect/.npmignore +4 -0
  1247. data/jasmine/node_modules/karma/node_modules/connect/History.md +1754 -0
  1248. data/jasmine/node_modules/karma/node_modules/connect/LICENSE +24 -0
  1249. data/jasmine/node_modules/karma/node_modules/connect/Readme.md +97 -0
  1250. data/jasmine/node_modules/karma/node_modules/connect/examples/basicAuth.js +35 -0
  1251. data/jasmine/node_modules/karma/node_modules/connect/examples/bodyParser.js +40 -0
  1252. data/jasmine/node_modules/karma/node_modules/connect/examples/cookieSession.js +41 -0
  1253. data/jasmine/node_modules/karma/node_modules/connect/examples/csrf.js +36 -0
  1254. data/jasmine/node_modules/karma/node_modules/connect/examples/directory.js +12 -0
  1255. data/jasmine/node_modules/karma/node_modules/connect/examples/error.js +19 -0
  1256. data/jasmine/node_modules/karma/node_modules/connect/examples/favicon.js +12 -0
  1257. data/jasmine/node_modules/karma/node_modules/connect/examples/helloworld.js +12 -0
  1258. data/jasmine/node_modules/karma/node_modules/connect/examples/limit.js +41 -0
  1259. data/jasmine/node_modules/karma/node_modules/connect/examples/logger.fast.js +14 -0
  1260. data/jasmine/node_modules/karma/node_modules/connect/examples/logger.format.js +62 -0
  1261. data/jasmine/node_modules/karma/node_modules/connect/examples/logger.js +14 -0
  1262. data/jasmine/node_modules/karma/node_modules/connect/examples/mounting.js +33 -0
  1263. data/jasmine/node_modules/karma/node_modules/connect/examples/profiler.js +17 -0
  1264. data/jasmine/node_modules/karma/node_modules/connect/examples/public/form.html +5 -0
  1265. data/jasmine/node_modules/karma/node_modules/connect/examples/public/tobi.jpeg +0 -0
  1266. data/jasmine/node_modules/karma/node_modules/connect/examples/rollingSession.js +64 -0
  1267. data/jasmine/node_modules/karma/node_modules/connect/examples/session.js +198 -0
  1268. data/jasmine/node_modules/karma/node_modules/connect/examples/static.js +14 -0
  1269. data/jasmine/node_modules/karma/node_modules/connect/examples/upload-stream.js +37 -0
  1270. data/jasmine/node_modules/karma/node_modules/connect/examples/upload.js +29 -0
  1271. data/jasmine/node_modules/karma/node_modules/connect/examples/vhost.js +31 -0
  1272. data/jasmine/node_modules/karma/node_modules/connect/index.js +2 -0
  1273. data/jasmine/node_modules/karma/node_modules/connect/lib/cache.js +81 -0
  1274. data/jasmine/node_modules/karma/node_modules/connect/lib/connect.js +100 -0
  1275. data/jasmine/node_modules/karma/node_modules/connect/lib/index.js +50 -0
  1276. data/jasmine/node_modules/karma/node_modules/connect/lib/middleware/basicAuth.js +24 -0
  1277. data/jasmine/node_modules/karma/node_modules/connect/lib/middleware/bodyParser.js +68 -0
  1278. data/jasmine/node_modules/karma/node_modules/connect/lib/middleware/compress.js +20 -0
  1279. data/jasmine/node_modules/karma/node_modules/connect/lib/middleware/cookieParser.js +19 -0
  1280. data/jasmine/node_modules/karma/node_modules/connect/lib/middleware/cookieSession.js +123 -0
  1281. data/jasmine/node_modules/karma/node_modules/connect/lib/middleware/csrf.js +18 -0
  1282. data/jasmine/node_modules/karma/node_modules/connect/lib/middleware/directory.js +20 -0
  1283. data/jasmine/node_modules/karma/node_modules/connect/lib/middleware/errorHandler.js +17 -0
  1284. data/jasmine/node_modules/karma/node_modules/connect/lib/middleware/favicon.js +34 -0
  1285. data/jasmine/node_modules/karma/node_modules/connect/lib/middleware/json.js +54 -0
  1286. data/jasmine/node_modules/karma/node_modules/connect/lib/middleware/limit.js +90 -0
  1287. data/jasmine/node_modules/karma/node_modules/connect/lib/middleware/logger.js +51 -0
  1288. data/jasmine/node_modules/karma/node_modules/connect/lib/middleware/methodOverride.js +47 -0
  1289. data/jasmine/node_modules/karma/node_modules/connect/lib/middleware/multipart.js +168 -0
  1290. data/jasmine/node_modules/karma/node_modules/connect/lib/middleware/query.js +45 -0
  1291. data/jasmine/node_modules/karma/node_modules/connect/lib/middleware/responseTime.js +17 -0
  1292. data/jasmine/node_modules/karma/node_modules/connect/lib/middleware/session.js +39 -0
  1293. data/jasmine/node_modules/karma/node_modules/connect/lib/middleware/static.js +19 -0
  1294. data/jasmine/node_modules/karma/node_modules/connect/lib/middleware/staticCache.js +238 -0
  1295. data/jasmine/node_modules/karma/node_modules/connect/lib/middleware/timeout.js +17 -0
  1296. data/jasmine/node_modules/karma/node_modules/connect/lib/middleware/urlencoded.js +53 -0
  1297. data/jasmine/node_modules/karma/node_modules/connect/lib/middleware/vhost.js +44 -0
  1298. data/jasmine/node_modules/karma/node_modules/connect/lib/patch.js +183 -0
  1299. data/jasmine/node_modules/karma/node_modules/connect/lib/proto.js +220 -0
  1300. data/jasmine/node_modules/karma/node_modules/connect/lib/public/favicon.ico +0 -0
  1301. data/jasmine/node_modules/karma/node_modules/connect/lib/utils.js +415 -0
  1302. data/jasmine/node_modules/karma/node_modules/connect/node_modules/basic-auth-connect/.npmignore +1 -0
  1303. data/jasmine/node_modules/karma/node_modules/connect/node_modules/basic-auth-connect/.travis.yml +3 -0
  1304. data/jasmine/node_modules/karma/node_modules/connect/node_modules/basic-auth-connect/Makefile +8 -0
  1305. data/jasmine/node_modules/karma/node_modules/connect/node_modules/basic-auth-connect/README.md +60 -0
  1306. data/jasmine/node_modules/karma/node_modules/connect/node_modules/basic-auth-connect/index.js +128 -0
  1307. data/jasmine/node_modules/karma/node_modules/connect/node_modules/basic-auth-connect/package.json +48 -0
  1308. data/jasmine/node_modules/karma/node_modules/connect/node_modules/body-parser/HISTORY.md +210 -0
  1309. data/jasmine/node_modules/karma/node_modules/connect/node_modules/body-parser/LICENSE +23 -0
  1310. data/jasmine/node_modules/karma/node_modules/connect/node_modules/body-parser/README.md +192 -0
  1311. data/jasmine/node_modules/karma/node_modules/connect/node_modules/body-parser/index.js +84 -0
  1312. data/jasmine/node_modules/karma/node_modules/connect/node_modules/body-parser/lib/read.js +145 -0
  1313. data/jasmine/node_modules/karma/node_modules/connect/node_modules/body-parser/lib/types/json.js +108 -0
  1314. data/jasmine/node_modules/karma/node_modules/connect/node_modules/body-parser/lib/types/raw.js +61 -0
  1315. data/jasmine/node_modules/karma/node_modules/connect/node_modules/body-parser/lib/types/text.js +66 -0
  1316. data/jasmine/node_modules/karma/node_modules/connect/node_modules/body-parser/lib/types/urlencoded.js +206 -0
  1317. data/jasmine/node_modules/karma/node_modules/connect/node_modules/body-parser/node_modules/iconv-lite/.npmignore +5 -0
  1318. data/jasmine/node_modules/karma/node_modules/connect/node_modules/body-parser/node_modules/iconv-lite/.travis.yml +5 -0
  1319. data/jasmine/node_modules/karma/node_modules/connect/node_modules/body-parser/node_modules/iconv-lite/Changelog.md +29 -0
  1320. data/jasmine/node_modules/karma/node_modules/connect/node_modules/body-parser/node_modules/iconv-lite/LICENSE +21 -0
  1321. data/jasmine/node_modules/karma/node_modules/connect/node_modules/body-parser/node_modules/iconv-lite/README.md +137 -0
  1322. data/jasmine/node_modules/karma/node_modules/connect/node_modules/body-parser/node_modules/iconv-lite/README.md~ +54 -0
  1323. data/jasmine/node_modules/karma/node_modules/connect/node_modules/body-parser/node_modules/iconv-lite/encodings/dbcs-codec.js +564 -0
  1324. data/jasmine/node_modules/karma/node_modules/connect/node_modules/body-parser/node_modules/iconv-lite/encodings/dbcs-data.js +168 -0
  1325. data/jasmine/node_modules/karma/node_modules/connect/node_modules/body-parser/node_modules/iconv-lite/encodings/index.js +20 -0
  1326. data/jasmine/node_modules/karma/node_modules/connect/node_modules/body-parser/node_modules/iconv-lite/encodings/internal.js +81 -0
  1327. data/jasmine/node_modules/karma/node_modules/connect/node_modules/body-parser/node_modules/iconv-lite/encodings/sbcs-codec.js +76 -0
  1328. data/jasmine/node_modules/karma/node_modules/connect/node_modules/body-parser/node_modules/iconv-lite/encodings/sbcs-data-generated.js +450 -0
  1329. data/jasmine/node_modules/karma/node_modules/connect/node_modules/body-parser/node_modules/iconv-lite/encodings/sbcs-data.js +168 -0
  1330. data/jasmine/node_modules/karma/node_modules/connect/node_modules/body-parser/node_modules/iconv-lite/encodings/tables/big5-added.json +122 -0
  1331. data/jasmine/node_modules/karma/node_modules/connect/node_modules/body-parser/node_modules/iconv-lite/encodings/tables/cp936.json +264 -0
  1332. data/jasmine/node_modules/karma/node_modules/connect/node_modules/body-parser/node_modules/iconv-lite/encodings/tables/cp949.json +273 -0
  1333. data/jasmine/node_modules/karma/node_modules/connect/node_modules/body-parser/node_modules/iconv-lite/encodings/tables/cp950.json +177 -0
  1334. data/jasmine/node_modules/karma/node_modules/connect/node_modules/body-parser/node_modules/iconv-lite/encodings/tables/eucjp.json +182 -0
  1335. data/jasmine/node_modules/karma/node_modules/connect/node_modules/body-parser/node_modules/iconv-lite/encodings/tables/gb18030-ranges.json +1 -0
  1336. data/jasmine/node_modules/karma/node_modules/connect/node_modules/body-parser/node_modules/iconv-lite/encodings/tables/gbk-added.json +55 -0
  1337. data/jasmine/node_modules/karma/node_modules/connect/node_modules/body-parser/node_modules/iconv-lite/encodings/tables/shiftjis.json +125 -0
  1338. data/jasmine/node_modules/karma/node_modules/connect/node_modules/body-parser/node_modules/iconv-lite/encodings/utf16.js +202 -0
  1339. data/jasmine/node_modules/karma/node_modules/connect/node_modules/body-parser/node_modules/iconv-lite/encodings/utf7.js +284 -0
  1340. data/jasmine/node_modules/karma/node_modules/connect/node_modules/body-parser/node_modules/iconv-lite/lib/extend-node.js +210 -0
  1341. data/jasmine/node_modules/karma/node_modules/connect/node_modules/body-parser/node_modules/iconv-lite/lib/index.js +122 -0
  1342. data/jasmine/node_modules/karma/node_modules/connect/node_modules/body-parser/node_modules/iconv-lite/lib/streams.js +118 -0
  1343. data/jasmine/node_modules/karma/node_modules/connect/node_modules/body-parser/node_modules/iconv-lite/package.json +110 -0
  1344. data/jasmine/node_modules/karma/node_modules/connect/node_modules/body-parser/node_modules/on-finished/HISTORY.md +66 -0
  1345. data/jasmine/node_modules/karma/node_modules/connect/node_modules/body-parser/node_modules/on-finished/LICENSE +23 -0
  1346. data/jasmine/node_modules/karma/node_modules/connect/node_modules/body-parser/node_modules/on-finished/README.md +90 -0
  1347. data/jasmine/node_modules/karma/node_modules/connect/node_modules/body-parser/node_modules/on-finished/index.js +127 -0
  1348. data/jasmine/node_modules/karma/node_modules/connect/node_modules/body-parser/node_modules/on-finished/node_modules/ee-first/LICENSE +22 -0
  1349. data/jasmine/node_modules/karma/node_modules/connect/node_modules/body-parser/node_modules/on-finished/node_modules/ee-first/README.md +63 -0
  1350. data/jasmine/node_modules/karma/node_modules/connect/node_modules/body-parser/node_modules/on-finished/node_modules/ee-first/index.js +60 -0
  1351. data/jasmine/node_modules/karma/node_modules/connect/node_modules/body-parser/node_modules/on-finished/node_modules/ee-first/package.json +64 -0
  1352. data/jasmine/node_modules/karma/node_modules/connect/node_modules/body-parser/node_modules/on-finished/package.json +70 -0
  1353. data/jasmine/node_modules/karma/node_modules/connect/node_modules/body-parser/node_modules/raw-body/.npmignore +3 -0
  1354. data/jasmine/node_modules/karma/node_modules/connect/node_modules/body-parser/node_modules/raw-body/HISTORY.md +114 -0
  1355. data/jasmine/node_modules/karma/node_modules/connect/node_modules/body-parser/node_modules/raw-body/README.md +103 -0
  1356. data/jasmine/node_modules/karma/node_modules/connect/node_modules/body-parser/node_modules/raw-body/index.js +224 -0
  1357. data/jasmine/node_modules/karma/node_modules/connect/node_modules/body-parser/node_modules/raw-body/package.json +71 -0
  1358. data/jasmine/node_modules/karma/node_modules/connect/node_modules/body-parser/package.json +96 -0
  1359. data/jasmine/node_modules/karma/node_modules/connect/node_modules/bytes/.npmignore +1 -0
  1360. data/jasmine/node_modules/karma/node_modules/connect/node_modules/bytes/History.md +25 -0
  1361. data/jasmine/node_modules/karma/node_modules/connect/node_modules/bytes/Makefile +7 -0
  1362. data/jasmine/node_modules/karma/node_modules/connect/node_modules/bytes/Readme.md +54 -0
  1363. data/jasmine/node_modules/karma/node_modules/connect/node_modules/bytes/component.json +7 -0
  1364. data/jasmine/node_modules/karma/node_modules/connect/node_modules/bytes/index.js +41 -0
  1365. data/jasmine/node_modules/karma/node_modules/connect/node_modules/bytes/package.json +49 -0
  1366. data/jasmine/node_modules/karma/node_modules/connect/node_modules/compression/HISTORY.md +95 -0
  1367. data/jasmine/node_modules/karma/node_modules/connect/node_modules/compression/LICENSE +23 -0
  1368. data/jasmine/node_modules/karma/node_modules/connect/node_modules/compression/README.md +115 -0
  1369. data/jasmine/node_modules/karma/node_modules/connect/node_modules/compression/index.js +231 -0
  1370. data/jasmine/node_modules/karma/node_modules/connect/node_modules/compression/node_modules/accepts/HISTORY.md +74 -0
  1371. data/jasmine/node_modules/karma/node_modules/connect/node_modules/compression/node_modules/accepts/LICENSE +22 -0
  1372. data/jasmine/node_modules/karma/node_modules/connect/node_modules/compression/node_modules/accepts/README.md +94 -0
  1373. data/jasmine/node_modules/karma/node_modules/connect/node_modules/compression/node_modules/accepts/index.js +160 -0
  1374. data/jasmine/node_modules/karma/node_modules/connect/node_modules/compression/node_modules/accepts/node_modules/mime-types/HISTORY.md +97 -0
  1375. data/jasmine/node_modules/karma/node_modules/connect/node_modules/compression/node_modules/accepts/node_modules/mime-types/LICENSE +22 -0
  1376. data/jasmine/node_modules/karma/node_modules/connect/node_modules/compression/node_modules/accepts/node_modules/mime-types/README.md +102 -0
  1377. data/jasmine/node_modules/karma/node_modules/connect/node_modules/compression/node_modules/accepts/node_modules/mime-types/index.js +63 -0
  1378. data/jasmine/node_modules/karma/node_modules/connect/node_modules/compression/node_modules/accepts/node_modules/mime-types/node_modules/mime-db/HISTORY.md +188 -0
  1379. data/jasmine/node_modules/karma/node_modules/connect/node_modules/compression/node_modules/accepts/node_modules/mime-types/node_modules/mime-db/LICENSE +22 -0
  1380. data/jasmine/node_modules/karma/node_modules/connect/node_modules/compression/node_modules/accepts/node_modules/mime-types/node_modules/mime-db/README.md +76 -0
  1381. data/jasmine/node_modules/karma/node_modules/connect/node_modules/compression/node_modules/accepts/node_modules/mime-types/node_modules/mime-db/db.json +6325 -0
  1382. data/jasmine/node_modules/karma/node_modules/connect/node_modules/compression/node_modules/accepts/node_modules/mime-types/node_modules/mime-db/index.js +11 -0
  1383. data/jasmine/node_modules/karma/node_modules/connect/node_modules/compression/node_modules/accepts/node_modules/mime-types/node_modules/mime-db/package.json +94 -0
  1384. data/jasmine/node_modules/karma/node_modules/connect/node_modules/compression/node_modules/accepts/node_modules/mime-types/package.json +84 -0
  1385. data/jasmine/node_modules/karma/node_modules/connect/node_modules/compression/node_modules/accepts/node_modules/negotiator/LICENSE +23 -0
  1386. data/jasmine/node_modules/karma/node_modules/connect/node_modules/compression/node_modules/accepts/node_modules/negotiator/README.md +161 -0
  1387. data/jasmine/node_modules/karma/node_modules/connect/node_modules/compression/node_modules/accepts/node_modules/negotiator/lib/charset.js +87 -0
  1388. data/jasmine/node_modules/karma/node_modules/connect/node_modules/compression/node_modules/accepts/node_modules/negotiator/lib/encoding.js +117 -0
  1389. data/jasmine/node_modules/karma/node_modules/connect/node_modules/compression/node_modules/accepts/node_modules/negotiator/lib/language.js +100 -0
  1390. data/jasmine/node_modules/karma/node_modules/connect/node_modules/compression/node_modules/accepts/node_modules/negotiator/lib/mediaType.js +122 -0
  1391. data/jasmine/node_modules/karma/node_modules/connect/node_modules/compression/node_modules/accepts/node_modules/negotiator/lib/negotiator.js +37 -0
  1392. data/jasmine/node_modules/karma/node_modules/connect/node_modules/compression/node_modules/accepts/node_modules/negotiator/package.json +78 -0
  1393. data/jasmine/node_modules/karma/node_modules/connect/node_modules/compression/node_modules/accepts/package.json +91 -0
  1394. data/jasmine/node_modules/karma/node_modules/connect/node_modules/compression/node_modules/compressible/LICENSE +22 -0
  1395. data/jasmine/node_modules/karma/node_modules/connect/node_modules/compression/node_modules/compressible/README.md +41 -0
  1396. data/jasmine/node_modules/karma/node_modules/connect/node_modules/compression/node_modules/compressible/index.js +39 -0
  1397. data/jasmine/node_modules/karma/node_modules/connect/node_modules/compression/node_modules/compressible/node_modules/mime-db/HISTORY.md +188 -0
  1398. data/jasmine/node_modules/karma/node_modules/connect/node_modules/compression/node_modules/compressible/node_modules/mime-db/LICENSE +22 -0
  1399. data/jasmine/node_modules/karma/node_modules/connect/node_modules/compression/node_modules/compressible/node_modules/mime-db/README.md +76 -0
  1400. data/jasmine/node_modules/karma/node_modules/connect/node_modules/compression/node_modules/compressible/node_modules/mime-db/db.json +6325 -0
  1401. data/jasmine/node_modules/karma/node_modules/connect/node_modules/compression/node_modules/compressible/node_modules/mime-db/index.js +11 -0
  1402. data/jasmine/node_modules/karma/node_modules/connect/node_modules/compression/node_modules/compressible/node_modules/mime-db/package.json +93 -0
  1403. data/jasmine/node_modules/karma/node_modules/connect/node_modules/compression/node_modules/compressible/package.json +96 -0
  1404. data/jasmine/node_modules/karma/node_modules/connect/node_modules/compression/node_modules/vary/.npmignore +3 -0
  1405. data/jasmine/node_modules/karma/node_modules/connect/node_modules/compression/node_modules/vary/History.md +16 -0
  1406. data/jasmine/node_modules/karma/node_modules/connect/node_modules/compression/node_modules/vary/LICENSE +22 -0
  1407. data/jasmine/node_modules/karma/node_modules/connect/node_modules/compression/node_modules/vary/README.md +59 -0
  1408. data/jasmine/node_modules/karma/node_modules/connect/node_modules/compression/node_modules/vary/index.js +112 -0
  1409. data/jasmine/node_modules/karma/node_modules/connect/node_modules/compression/node_modules/vary/package.json +71 -0
  1410. data/jasmine/node_modules/karma/node_modules/connect/node_modules/compression/package.json +97 -0
  1411. data/jasmine/node_modules/karma/node_modules/connect/node_modules/connect-timeout/HISTORY.md +44 -0
  1412. data/jasmine/node_modules/karma/node_modules/connect/node_modules/connect-timeout/LICENSE +23 -0
  1413. data/jasmine/node_modules/karma/node_modules/connect/node_modules/connect-timeout/README.md +141 -0
  1414. data/jasmine/node_modules/karma/node_modules/connect/node_modules/connect-timeout/index.js +79 -0
  1415. data/jasmine/node_modules/karma/node_modules/connect/node_modules/connect-timeout/node_modules/ms/.npmignore +5 -0
  1416. data/jasmine/node_modules/karma/node_modules/connect/node_modules/connect-timeout/node_modules/ms/README.md +33 -0
  1417. data/jasmine/node_modules/karma/node_modules/connect/node_modules/connect-timeout/node_modules/ms/index.js +111 -0
  1418. data/jasmine/node_modules/karma/node_modules/connect/node_modules/connect-timeout/node_modules/ms/package.json +43 -0
  1419. data/jasmine/node_modules/karma/node_modules/connect/node_modules/connect-timeout/package.json +98 -0
  1420. data/jasmine/node_modules/karma/node_modules/connect/node_modules/cookie-parser/HISTORY.md +51 -0
  1421. data/jasmine/node_modules/karma/node_modules/connect/node_modules/cookie-parser/LICENSE +22 -0
  1422. data/jasmine/node_modules/karma/node_modules/connect/node_modules/cookie-parser/README.md +78 -0
  1423. data/jasmine/node_modules/karma/node_modules/connect/node_modules/cookie-parser/index.js +59 -0
  1424. data/jasmine/node_modules/karma/node_modules/connect/node_modules/cookie-parser/lib/parse.js +90 -0
  1425. data/jasmine/node_modules/karma/node_modules/connect/node_modules/cookie-parser/node_modules/cookie-signature/.npmignore +4 -0
  1426. data/jasmine/node_modules/karma/node_modules/connect/node_modules/cookie-parser/node_modules/cookie-signature/History.md +38 -0
  1427. data/jasmine/node_modules/karma/node_modules/connect/node_modules/cookie-parser/node_modules/cookie-signature/Readme.md +42 -0
  1428. data/jasmine/node_modules/karma/node_modules/connect/node_modules/cookie-parser/node_modules/cookie-signature/index.js +51 -0
  1429. data/jasmine/node_modules/karma/node_modules/connect/node_modules/cookie-parser/node_modules/cookie-signature/package.json +59 -0
  1430. data/jasmine/node_modules/karma/node_modules/connect/node_modules/cookie-parser/package.json +72 -0
  1431. data/jasmine/node_modules/karma/node_modules/connect/node_modules/cookie-signature/.npmignore +4 -0
  1432. data/jasmine/node_modules/karma/node_modules/connect/node_modules/cookie-signature/History.md +27 -0
  1433. data/jasmine/node_modules/karma/node_modules/connect/node_modules/cookie-signature/Makefile +7 -0
  1434. data/jasmine/node_modules/karma/node_modules/connect/node_modules/cookie-signature/Readme.md +42 -0
  1435. data/jasmine/node_modules/karma/node_modules/connect/node_modules/cookie-signature/index.js +51 -0
  1436. data/jasmine/node_modules/karma/node_modules/connect/node_modules/cookie-signature/package.json +55 -0
  1437. data/jasmine/node_modules/karma/node_modules/connect/node_modules/cookie/.npmignore +2 -0
  1438. data/jasmine/node_modules/karma/node_modules/connect/node_modules/cookie/LICENSE +9 -0
  1439. data/jasmine/node_modules/karma/node_modules/connect/node_modules/cookie/README.md +44 -0
  1440. data/jasmine/node_modules/karma/node_modules/connect/node_modules/cookie/index.js +75 -0
  1441. data/jasmine/node_modules/karma/node_modules/connect/node_modules/cookie/package.json +53 -0
  1442. data/jasmine/node_modules/karma/node_modules/connect/node_modules/csurf/HISTORY.md +90 -0
  1443. data/jasmine/node_modules/karma/node_modules/connect/node_modules/csurf/LICENSE +22 -0
  1444. data/jasmine/node_modules/karma/node_modules/connect/node_modules/csurf/README.md +123 -0
  1445. data/jasmine/node_modules/karma/node_modules/connect/node_modules/csurf/index.js +241 -0
  1446. data/jasmine/node_modules/karma/node_modules/connect/node_modules/csurf/node_modules/csrf/HISTORY.md +55 -0
  1447. data/jasmine/node_modules/karma/node_modules/connect/node_modules/csurf/node_modules/csrf/LICENSE +22 -0
  1448. data/jasmine/node_modules/karma/node_modules/connect/node_modules/csurf/node_modules/csrf/README.md +78 -0
  1449. data/jasmine/node_modules/karma/node_modules/connect/node_modules/csurf/node_modules/csrf/index.js +79 -0
  1450. data/jasmine/node_modules/karma/node_modules/connect/node_modules/csurf/node_modules/csrf/node_modules/base64-url/LICENSE +15 -0
  1451. data/jasmine/node_modules/karma/node_modules/connect/node_modules/csurf/node_modules/csrf/node_modules/base64-url/README.md +53 -0
  1452. data/jasmine/node_modules/karma/node_modules/connect/node_modules/csurf/node_modules/csrf/node_modules/base64-url/index.js +24 -0
  1453. data/jasmine/node_modules/karma/node_modules/connect/node_modules/csurf/node_modules/csrf/node_modules/base64-url/package.json +69 -0
  1454. data/jasmine/node_modules/karma/node_modules/connect/node_modules/csurf/node_modules/csrf/node_modules/rndm/LICENSE +22 -0
  1455. data/jasmine/node_modules/karma/node_modules/connect/node_modules/csurf/node_modules/csrf/node_modules/rndm/README.md +27 -0
  1456. data/jasmine/node_modules/karma/node_modules/connect/node_modules/csurf/node_modules/csrf/node_modules/rndm/index.js +24 -0
  1457. data/jasmine/node_modules/karma/node_modules/connect/node_modules/csurf/node_modules/csrf/node_modules/rndm/package.json +68 -0
  1458. data/jasmine/node_modules/karma/node_modules/connect/node_modules/csurf/node_modules/csrf/node_modules/scmp/.npmignore +3 -0
  1459. data/jasmine/node_modules/karma/node_modules/connect/node_modules/csurf/node_modules/csrf/node_modules/scmp/.travis.yml +6 -0
  1460. data/jasmine/node_modules/karma/node_modules/connect/node_modules/csurf/node_modules/csrf/node_modules/scmp/LICENSE +24 -0
  1461. data/jasmine/node_modules/karma/node_modules/connect/node_modules/csurf/node_modules/csrf/node_modules/scmp/README.md +29 -0
  1462. data/jasmine/node_modules/karma/node_modules/connect/node_modules/csurf/node_modules/csrf/node_modules/scmp/benchmark/benchmark.js +15 -0
  1463. data/jasmine/node_modules/karma/node_modules/connect/node_modules/csurf/node_modules/csrf/node_modules/scmp/index.js +21 -0
  1464. data/jasmine/node_modules/karma/node_modules/connect/node_modules/csurf/node_modules/csrf/node_modules/scmp/package.json +55 -0
  1465. data/jasmine/node_modules/karma/node_modules/connect/node_modules/csurf/node_modules/csrf/node_modules/scmp/test/test.js +24 -0
  1466. data/jasmine/node_modules/karma/node_modules/connect/node_modules/csurf/node_modules/csrf/node_modules/uid-safe/HISTORY.md +26 -0
  1467. data/jasmine/node_modules/karma/node_modules/connect/node_modules/csurf/node_modules/csrf/node_modules/uid-safe/LICENSE +22 -0
  1468. data/jasmine/node_modules/karma/node_modules/connect/node_modules/csurf/node_modules/csrf/node_modules/uid-safe/README.md +78 -0
  1469. data/jasmine/node_modules/karma/node_modules/connect/node_modules/csurf/node_modules/csrf/node_modules/uid-safe/index.js +110 -0
  1470. data/jasmine/node_modules/karma/node_modules/connect/node_modules/csurf/node_modules/csrf/node_modules/uid-safe/node_modules/native-or-bluebird/LICENSE +22 -0
  1471. data/jasmine/node_modules/karma/node_modules/connect/node_modules/csurf/node_modules/csrf/node_modules/uid-safe/node_modules/native-or-bluebird/README.md +48 -0
  1472. data/jasmine/node_modules/karma/node_modules/connect/node_modules/csurf/node_modules/csrf/node_modules/uid-safe/node_modules/native-or-bluebird/index.js +10 -0
  1473. data/jasmine/node_modules/karma/node_modules/connect/node_modules/csurf/node_modules/csrf/node_modules/uid-safe/node_modules/native-or-bluebird/package.json +65 -0
  1474. data/jasmine/node_modules/karma/node_modules/connect/node_modules/csurf/node_modules/csrf/node_modules/uid-safe/node_modules/native-or-bluebird/promise.js +8 -0
  1475. data/jasmine/node_modules/karma/node_modules/connect/node_modules/csurf/node_modules/csrf/node_modules/uid-safe/package.json +84 -0
  1476. data/jasmine/node_modules/karma/node_modules/connect/node_modules/csurf/node_modules/csrf/package.json +83 -0
  1477. data/jasmine/node_modules/karma/node_modules/connect/node_modules/csurf/node_modules/http-errors/HISTORY.md +63 -0
  1478. data/jasmine/node_modules/karma/node_modules/connect/node_modules/csurf/node_modules/http-errors/LICENSE +22 -0
  1479. data/jasmine/node_modules/karma/node_modules/connect/node_modules/csurf/node_modules/http-errors/README.md +63 -0
  1480. data/jasmine/node_modules/karma/node_modules/connect/node_modules/csurf/node_modules/http-errors/index.js +80 -0
  1481. data/jasmine/node_modules/karma/node_modules/connect/node_modules/csurf/node_modules/http-errors/node_modules/inherits/LICENSE +16 -0
  1482. data/jasmine/node_modules/karma/node_modules/connect/node_modules/csurf/node_modules/http-errors/node_modules/inherits/README.md +42 -0
  1483. data/jasmine/node_modules/karma/node_modules/connect/node_modules/csurf/node_modules/http-errors/node_modules/inherits/inherits.js +1 -0
  1484. data/jasmine/node_modules/karma/node_modules/connect/node_modules/csurf/node_modules/http-errors/node_modules/inherits/inherits_browser.js +23 -0
  1485. data/jasmine/node_modules/karma/node_modules/connect/node_modules/csurf/node_modules/http-errors/node_modules/inherits/package.json +50 -0
  1486. data/jasmine/node_modules/karma/node_modules/connect/node_modules/csurf/node_modules/http-errors/node_modules/inherits/test.js +25 -0
  1487. data/jasmine/node_modules/karma/node_modules/connect/node_modules/csurf/node_modules/http-errors/node_modules/statuses/LICENSE +22 -0
  1488. data/jasmine/node_modules/karma/node_modules/connect/node_modules/csurf/node_modules/http-errors/node_modules/statuses/README.md +114 -0
  1489. data/jasmine/node_modules/karma/node_modules/connect/node_modules/csurf/node_modules/http-errors/node_modules/statuses/codes.json +64 -0
  1490. data/jasmine/node_modules/karma/node_modules/connect/node_modules/csurf/node_modules/http-errors/node_modules/statuses/index.js +60 -0
  1491. data/jasmine/node_modules/karma/node_modules/connect/node_modules/csurf/node_modules/http-errors/node_modules/statuses/package.json +83 -0
  1492. data/jasmine/node_modules/karma/node_modules/connect/node_modules/csurf/node_modules/http-errors/package.json +74 -0
  1493. data/jasmine/node_modules/karma/node_modules/connect/node_modules/csurf/package.json +100 -0
  1494. data/jasmine/node_modules/karma/node_modules/connect/node_modules/debug/.jshintrc +3 -0
  1495. data/jasmine/node_modules/karma/node_modules/connect/node_modules/debug/.npmignore +6 -0
  1496. data/jasmine/node_modules/karma/node_modules/connect/node_modules/debug/History.md +150 -0
  1497. data/jasmine/node_modules/karma/node_modules/connect/node_modules/debug/Makefile +33 -0
  1498. data/jasmine/node_modules/karma/node_modules/connect/node_modules/debug/Readme.md +156 -0
  1499. data/jasmine/node_modules/karma/node_modules/connect/node_modules/debug/browser.js +147 -0
  1500. data/jasmine/node_modules/karma/node_modules/connect/node_modules/debug/component.json +19 -0
  1501. data/jasmine/node_modules/karma/node_modules/connect/node_modules/debug/debug.js +197 -0
  1502. data/jasmine/node_modules/karma/node_modules/connect/node_modules/debug/node.js +129 -0
  1503. data/jasmine/node_modules/karma/node_modules/connect/node_modules/debug/node_modules/ms/.npmignore +5 -0
  1504. data/jasmine/node_modules/karma/node_modules/connect/node_modules/debug/node_modules/ms/README.md +33 -0
  1505. data/jasmine/node_modules/karma/node_modules/connect/node_modules/debug/node_modules/ms/index.js +111 -0
  1506. data/jasmine/node_modules/karma/node_modules/connect/node_modules/debug/node_modules/ms/package.json +43 -0
  1507. data/jasmine/node_modules/karma/node_modules/connect/node_modules/debug/package.json +70 -0
  1508. data/jasmine/node_modules/karma/node_modules/connect/node_modules/depd/History.md +62 -0
  1509. data/jasmine/node_modules/karma/node_modules/connect/node_modules/depd/LICENSE +22 -0
  1510. data/jasmine/node_modules/karma/node_modules/connect/node_modules/depd/Readme.md +266 -0
  1511. data/jasmine/node_modules/karma/node_modules/connect/node_modules/depd/index.js +522 -0
  1512. data/jasmine/node_modules/karma/node_modules/connect/node_modules/depd/lib/compat/buffer-concat.js +33 -0
  1513. data/jasmine/node_modules/karma/node_modules/connect/node_modules/depd/lib/compat/callsite-tostring.js +101 -0
  1514. data/jasmine/node_modules/karma/node_modules/connect/node_modules/depd/lib/compat/index.js +69 -0
  1515. data/jasmine/node_modules/karma/node_modules/connect/node_modules/depd/package.json +66 -0
  1516. data/jasmine/node_modules/karma/node_modules/connect/node_modules/errorhandler/HISTORY.md +63 -0
  1517. data/jasmine/node_modules/karma/node_modules/connect/node_modules/errorhandler/LICENSE +23 -0
  1518. data/jasmine/node_modules/karma/node_modules/connect/node_modules/errorhandler/README.md +57 -0
  1519. data/jasmine/node_modules/karma/node_modules/connect/node_modules/errorhandler/index.js +161 -0
  1520. data/jasmine/node_modules/karma/node_modules/connect/node_modules/errorhandler/node_modules/accepts/HISTORY.md +74 -0
  1521. data/jasmine/node_modules/karma/node_modules/connect/node_modules/errorhandler/node_modules/accepts/LICENSE +22 -0
  1522. data/jasmine/node_modules/karma/node_modules/connect/node_modules/errorhandler/node_modules/accepts/README.md +94 -0
  1523. data/jasmine/node_modules/karma/node_modules/connect/node_modules/errorhandler/node_modules/accepts/index.js +160 -0
  1524. data/jasmine/node_modules/karma/node_modules/connect/node_modules/errorhandler/node_modules/accepts/node_modules/mime-types/HISTORY.md +97 -0
  1525. data/jasmine/node_modules/karma/node_modules/connect/node_modules/errorhandler/node_modules/accepts/node_modules/mime-types/LICENSE +22 -0
  1526. data/jasmine/node_modules/karma/node_modules/connect/node_modules/errorhandler/node_modules/accepts/node_modules/mime-types/README.md +102 -0
  1527. data/jasmine/node_modules/karma/node_modules/connect/node_modules/errorhandler/node_modules/accepts/node_modules/mime-types/index.js +63 -0
  1528. data/jasmine/node_modules/karma/node_modules/connect/node_modules/errorhandler/node_modules/accepts/node_modules/mime-types/node_modules/mime-db/HISTORY.md +188 -0
  1529. data/jasmine/node_modules/karma/node_modules/connect/node_modules/errorhandler/node_modules/accepts/node_modules/mime-types/node_modules/mime-db/LICENSE +22 -0
  1530. data/jasmine/node_modules/karma/node_modules/connect/node_modules/errorhandler/node_modules/accepts/node_modules/mime-types/node_modules/mime-db/README.md +76 -0
  1531. data/jasmine/node_modules/karma/node_modules/connect/node_modules/errorhandler/node_modules/accepts/node_modules/mime-types/node_modules/mime-db/db.json +6325 -0
  1532. data/jasmine/node_modules/karma/node_modules/connect/node_modules/errorhandler/node_modules/accepts/node_modules/mime-types/node_modules/mime-db/index.js +11 -0
  1533. data/jasmine/node_modules/karma/node_modules/connect/node_modules/errorhandler/node_modules/accepts/node_modules/mime-types/node_modules/mime-db/package.json +94 -0
  1534. data/jasmine/node_modules/karma/node_modules/connect/node_modules/errorhandler/node_modules/accepts/node_modules/mime-types/package.json +84 -0
  1535. data/jasmine/node_modules/karma/node_modules/connect/node_modules/errorhandler/node_modules/accepts/node_modules/negotiator/LICENSE +23 -0
  1536. data/jasmine/node_modules/karma/node_modules/connect/node_modules/errorhandler/node_modules/accepts/node_modules/negotiator/README.md +161 -0
  1537. data/jasmine/node_modules/karma/node_modules/connect/node_modules/errorhandler/node_modules/accepts/node_modules/negotiator/lib/charset.js +87 -0
  1538. data/jasmine/node_modules/karma/node_modules/connect/node_modules/errorhandler/node_modules/accepts/node_modules/negotiator/lib/encoding.js +117 -0
  1539. data/jasmine/node_modules/karma/node_modules/connect/node_modules/errorhandler/node_modules/accepts/node_modules/negotiator/lib/language.js +100 -0
  1540. data/jasmine/node_modules/karma/node_modules/connect/node_modules/errorhandler/node_modules/accepts/node_modules/negotiator/lib/mediaType.js +122 -0
  1541. data/jasmine/node_modules/karma/node_modules/connect/node_modules/errorhandler/node_modules/accepts/node_modules/negotiator/lib/negotiator.js +37 -0
  1542. data/jasmine/node_modules/karma/node_modules/connect/node_modules/errorhandler/node_modules/accepts/node_modules/negotiator/package.json +78 -0
  1543. data/jasmine/node_modules/karma/node_modules/connect/node_modules/errorhandler/node_modules/accepts/package.json +91 -0
  1544. data/jasmine/node_modules/karma/node_modules/connect/node_modules/errorhandler/node_modules/escape-html/.npmignore +2 -0
  1545. data/jasmine/node_modules/karma/node_modules/connect/node_modules/errorhandler/node_modules/escape-html/Makefile +11 -0
  1546. data/jasmine/node_modules/karma/node_modules/connect/node_modules/errorhandler/node_modules/escape-html/Readme.md +15 -0
  1547. data/jasmine/node_modules/karma/node_modules/connect/node_modules/errorhandler/node_modules/escape-html/component.json +10 -0
  1548. data/jasmine/node_modules/karma/node_modules/connect/node_modules/errorhandler/node_modules/escape-html/index.js +16 -0
  1549. data/jasmine/node_modules/karma/node_modules/connect/node_modules/errorhandler/node_modules/escape-html/package.json +45 -0
  1550. data/jasmine/node_modules/karma/node_modules/connect/node_modules/errorhandler/package.json +90 -0
  1551. data/jasmine/node_modules/karma/node_modules/connect/node_modules/errorhandler/public/error.html +14 -0
  1552. data/jasmine/node_modules/karma/node_modules/connect/node_modules/errorhandler/public/style.css +35 -0
  1553. data/jasmine/node_modules/karma/node_modules/connect/node_modules/express-session/HISTORY.md +183 -0
  1554. data/jasmine/node_modules/karma/node_modules/connect/node_modules/express-session/LICENSE +24 -0
  1555. data/jasmine/node_modules/karma/node_modules/connect/node_modules/express-session/README.md +222 -0
  1556. data/jasmine/node_modules/karma/node_modules/connect/node_modules/express-session/index.js +525 -0
  1557. data/jasmine/node_modules/karma/node_modules/connect/node_modules/express-session/node_modules/crc/.npmignore +4 -0
  1558. data/jasmine/node_modules/karma/node_modules/connect/node_modules/express-session/node_modules/crc/LICENSE +22 -0
  1559. data/jasmine/node_modules/karma/node_modules/connect/node_modules/express-session/node_modules/crc/README.md +89 -0
  1560. data/jasmine/node_modules/karma/node_modules/connect/node_modules/express-session/node_modules/crc/lib/crc.js +71 -0
  1561. data/jasmine/node_modules/karma/node_modules/connect/node_modules/express-session/node_modules/crc/lib/crc1.js +21 -0
  1562. data/jasmine/node_modules/karma/node_modules/connect/node_modules/express-session/node_modules/crc/lib/crc16.js +25 -0
  1563. data/jasmine/node_modules/karma/node_modules/connect/node_modules/express-session/node_modules/crc/lib/crc16_ccitt.js +25 -0
  1564. data/jasmine/node_modules/karma/node_modules/connect/node_modules/express-session/node_modules/crc/lib/crc16_modbus.js +25 -0
  1565. data/jasmine/node_modules/karma/node_modules/connect/node_modules/express-session/node_modules/crc/lib/crc24.js +25 -0
  1566. data/jasmine/node_modules/karma/node_modules/connect/node_modules/express-session/node_modules/crc/lib/crc32.js +25 -0
  1567. data/jasmine/node_modules/karma/node_modules/connect/node_modules/express-session/node_modules/crc/lib/crc8.js +25 -0
  1568. data/jasmine/node_modules/karma/node_modules/connect/node_modules/express-session/node_modules/crc/lib/crc8_1wire.js +25 -0
  1569. data/jasmine/node_modules/karma/node_modules/connect/node_modules/express-session/node_modules/crc/lib/create.js +10 -0
  1570. data/jasmine/node_modules/karma/node_modules/connect/node_modules/express-session/node_modules/crc/lib/hex.js +9 -0
  1571. data/jasmine/node_modules/karma/node_modules/connect/node_modules/express-session/node_modules/crc/lib/index.js +11 -0
  1572. data/jasmine/node_modules/karma/node_modules/connect/node_modules/express-session/node_modules/crc/package.json +57 -0
  1573. data/jasmine/node_modules/karma/node_modules/connect/node_modules/express-session/node_modules/uid-safe/.npmignore +2 -0
  1574. data/jasmine/node_modules/karma/node_modules/connect/node_modules/express-session/node_modules/uid-safe/LICENSE +22 -0
  1575. data/jasmine/node_modules/karma/node_modules/connect/node_modules/express-session/node_modules/uid-safe/README.md +44 -0
  1576. data/jasmine/node_modules/karma/node_modules/connect/node_modules/express-session/node_modules/uid-safe/index.js +27 -0
  1577. data/jasmine/node_modules/karma/node_modules/connect/node_modules/express-session/node_modules/uid-safe/node_modules/base64-url/LICENSE +15 -0
  1578. data/jasmine/node_modules/karma/node_modules/connect/node_modules/express-session/node_modules/uid-safe/node_modules/base64-url/README.md +53 -0
  1579. data/jasmine/node_modules/karma/node_modules/connect/node_modules/express-session/node_modules/uid-safe/node_modules/base64-url/index.js +24 -0
  1580. data/jasmine/node_modules/karma/node_modules/connect/node_modules/express-session/node_modules/uid-safe/node_modules/base64-url/package.json +69 -0
  1581. data/jasmine/node_modules/karma/node_modules/connect/node_modules/express-session/node_modules/uid-safe/node_modules/mz/HISTORY.md +21 -0
  1582. data/jasmine/node_modules/karma/node_modules/connect/node_modules/express-session/node_modules/uid-safe/node_modules/mz/LICENSE +22 -0
  1583. data/jasmine/node_modules/karma/node_modules/connect/node_modules/express-session/node_modules/uid-safe/node_modules/mz/README.md +114 -0
  1584. data/jasmine/node_modules/karma/node_modules/connect/node_modules/express-session/node_modules/uid-safe/node_modules/mz/child_process.js +8 -0
  1585. data/jasmine/node_modules/karma/node_modules/connect/node_modules/express-session/node_modules/uid-safe/node_modules/mz/crypto.js +9 -0
  1586. data/jasmine/node_modules/karma/node_modules/connect/node_modules/express-session/node_modules/uid-safe/node_modules/mz/dns.js +16 -0
  1587. data/jasmine/node_modules/karma/node_modules/connect/node_modules/express-session/node_modules/uid-safe/node_modules/mz/fs.js +52 -0
  1588. data/jasmine/node_modules/karma/node_modules/connect/node_modules/express-session/node_modules/uid-safe/node_modules/mz/node_modules/native-or-bluebird/LICENSE +22 -0
  1589. data/jasmine/node_modules/karma/node_modules/connect/node_modules/express-session/node_modules/uid-safe/node_modules/mz/node_modules/native-or-bluebird/README.md +48 -0
  1590. data/jasmine/node_modules/karma/node_modules/connect/node_modules/express-session/node_modules/uid-safe/node_modules/mz/node_modules/native-or-bluebird/index.js +10 -0
  1591. data/jasmine/node_modules/karma/node_modules/connect/node_modules/express-session/node_modules/uid-safe/node_modules/mz/node_modules/native-or-bluebird/package.json +65 -0
  1592. data/jasmine/node_modules/karma/node_modules/connect/node_modules/express-session/node_modules/uid-safe/node_modules/mz/node_modules/native-or-bluebird/promise.js +6 -0
  1593. data/jasmine/node_modules/karma/node_modules/connect/node_modules/express-session/node_modules/uid-safe/node_modules/mz/node_modules/thenify-all/History.md +11 -0
  1594. data/jasmine/node_modules/karma/node_modules/connect/node_modules/express-session/node_modules/uid-safe/node_modules/mz/node_modules/thenify-all/LICENSE +22 -0
  1595. data/jasmine/node_modules/karma/node_modules/connect/node_modules/express-session/node_modules/uid-safe/node_modules/mz/node_modules/thenify-all/README.md +66 -0
  1596. data/jasmine/node_modules/karma/node_modules/connect/node_modules/express-session/node_modules/uid-safe/node_modules/mz/node_modules/thenify-all/index.js +73 -0
  1597. data/jasmine/node_modules/karma/node_modules/connect/node_modules/express-session/node_modules/uid-safe/node_modules/mz/node_modules/thenify-all/package.json +75 -0
  1598. data/jasmine/node_modules/karma/node_modules/connect/node_modules/express-session/node_modules/uid-safe/node_modules/mz/node_modules/thenify/LICENSE +22 -0
  1599. data/jasmine/node_modules/karma/node_modules/connect/node_modules/express-session/node_modules/uid-safe/node_modules/mz/node_modules/thenify/README.md +68 -0
  1600. data/jasmine/node_modules/karma/node_modules/connect/node_modules/express-session/node_modules/uid-safe/node_modules/mz/node_modules/thenify/index.js +62 -0
  1601. data/jasmine/node_modules/karma/node_modules/connect/node_modules/express-session/node_modules/uid-safe/node_modules/mz/node_modules/thenify/package.json +72 -0
  1602. data/jasmine/node_modules/karma/node_modules/connect/node_modules/express-session/node_modules/uid-safe/node_modules/mz/package.json +74 -0
  1603. data/jasmine/node_modules/karma/node_modules/connect/node_modules/express-session/node_modules/uid-safe/node_modules/mz/zlib.js +13 -0
  1604. data/jasmine/node_modules/karma/node_modules/connect/node_modules/express-session/node_modules/uid-safe/package.json +58 -0
  1605. data/jasmine/node_modules/karma/node_modules/connect/node_modules/express-session/node_modules/uid-safe/test.js +46 -0
  1606. data/jasmine/node_modules/karma/node_modules/connect/node_modules/express-session/node_modules/utils-merge/.travis.yml +6 -0
  1607. data/jasmine/node_modules/karma/node_modules/connect/node_modules/express-session/node_modules/utils-merge/LICENSE +20 -0
  1608. data/jasmine/node_modules/karma/node_modules/connect/node_modules/express-session/node_modules/utils-merge/README.md +34 -0
  1609. data/jasmine/node_modules/karma/node_modules/connect/node_modules/express-session/node_modules/utils-merge/index.js +23 -0
  1610. data/jasmine/node_modules/karma/node_modules/connect/node_modules/express-session/node_modules/utils-merge/package.json +60 -0
  1611. data/jasmine/node_modules/karma/node_modules/connect/node_modules/express-session/package.json +92 -0
  1612. data/jasmine/node_modules/karma/node_modules/connect/node_modules/express-session/session/cookie.js +128 -0
  1613. data/jasmine/node_modules/karma/node_modules/connect/node_modules/express-session/session/memory.js +151 -0
  1614. data/jasmine/node_modules/karma/node_modules/connect/node_modules/express-session/session/session.js +124 -0
  1615. data/jasmine/node_modules/karma/node_modules/connect/node_modules/express-session/session/store.js +84 -0
  1616. data/jasmine/node_modules/karma/node_modules/connect/node_modules/finalhandler/HISTORY.md +33 -0
  1617. data/jasmine/node_modules/karma/node_modules/connect/node_modules/finalhandler/LICENSE +22 -0
  1618. data/jasmine/node_modules/karma/node_modules/connect/node_modules/finalhandler/README.md +133 -0
  1619. data/jasmine/node_modules/karma/node_modules/connect/node_modules/finalhandler/index.js +163 -0
  1620. data/jasmine/node_modules/karma/node_modules/connect/node_modules/finalhandler/node_modules/escape-html/.npmignore +2 -0
  1621. data/jasmine/node_modules/karma/node_modules/connect/node_modules/finalhandler/node_modules/escape-html/Makefile +11 -0
  1622. data/jasmine/node_modules/karma/node_modules/connect/node_modules/finalhandler/node_modules/escape-html/Readme.md +15 -0
  1623. data/jasmine/node_modules/karma/node_modules/connect/node_modules/finalhandler/node_modules/escape-html/component.json +10 -0
  1624. data/jasmine/node_modules/karma/node_modules/connect/node_modules/finalhandler/node_modules/escape-html/index.js +16 -0
  1625. data/jasmine/node_modules/karma/node_modules/connect/node_modules/finalhandler/node_modules/escape-html/package.json +45 -0
  1626. data/jasmine/node_modules/karma/node_modules/connect/node_modules/finalhandler/package.json +79 -0
  1627. data/jasmine/node_modules/karma/node_modules/connect/node_modules/fresh/HISTORY.md +24 -0
  1628. data/jasmine/node_modules/karma/node_modules/connect/node_modules/fresh/LICENSE +22 -0
  1629. data/jasmine/node_modules/karma/node_modules/connect/node_modules/fresh/README.md +58 -0
  1630. data/jasmine/node_modules/karma/node_modules/connect/node_modules/fresh/index.js +53 -0
  1631. data/jasmine/node_modules/karma/node_modules/connect/node_modules/fresh/package.json +76 -0
  1632. data/jasmine/node_modules/karma/node_modules/connect/node_modules/media-typer/HISTORY.md +22 -0
  1633. data/jasmine/node_modules/karma/node_modules/connect/node_modules/media-typer/LICENSE +22 -0
  1634. data/jasmine/node_modules/karma/node_modules/connect/node_modules/media-typer/README.md +81 -0
  1635. data/jasmine/node_modules/karma/node_modules/connect/node_modules/media-typer/index.js +270 -0
  1636. data/jasmine/node_modules/karma/node_modules/connect/node_modules/media-typer/package.json +58 -0
  1637. data/jasmine/node_modules/karma/node_modules/connect/node_modules/method-override/HISTORY.md +72 -0
  1638. data/jasmine/node_modules/karma/node_modules/connect/node_modules/method-override/LICENSE +23 -0
  1639. data/jasmine/node_modules/karma/node_modules/connect/node_modules/method-override/README.md +173 -0
  1640. data/jasmine/node_modules/karma/node_modules/connect/node_modules/method-override/index.js +130 -0
  1641. data/jasmine/node_modules/karma/node_modules/connect/node_modules/method-override/node_modules/methods/.npmignore +1 -0
  1642. data/jasmine/node_modules/karma/node_modules/connect/node_modules/method-override/node_modules/methods/History.md +20 -0
  1643. data/jasmine/node_modules/karma/node_modules/connect/node_modules/method-override/node_modules/methods/LICENSE +23 -0
  1644. data/jasmine/node_modules/karma/node_modules/connect/node_modules/method-override/node_modules/methods/Readme.md +4 -0
  1645. data/jasmine/node_modules/karma/node_modules/connect/node_modules/method-override/node_modules/methods/index.js +41 -0
  1646. data/jasmine/node_modules/karma/node_modules/connect/node_modules/method-override/node_modules/methods/package.json +57 -0
  1647. data/jasmine/node_modules/karma/node_modules/connect/node_modules/method-override/node_modules/methods/test/methods.js +33 -0
  1648. data/jasmine/node_modules/karma/node_modules/connect/node_modules/method-override/node_modules/vary/.npmignore +3 -0
  1649. data/jasmine/node_modules/karma/node_modules/connect/node_modules/method-override/node_modules/vary/History.md +16 -0
  1650. data/jasmine/node_modules/karma/node_modules/connect/node_modules/method-override/node_modules/vary/LICENSE +22 -0
  1651. data/jasmine/node_modules/karma/node_modules/connect/node_modules/method-override/node_modules/vary/README.md +59 -0
  1652. data/jasmine/node_modules/karma/node_modules/connect/node_modules/method-override/node_modules/vary/index.js +112 -0
  1653. data/jasmine/node_modules/karma/node_modules/connect/node_modules/method-override/node_modules/vary/package.json +71 -0
  1654. data/jasmine/node_modules/karma/node_modules/connect/node_modules/method-override/package.json +90 -0
  1655. data/jasmine/node_modules/karma/node_modules/connect/node_modules/morgan/HISTORY.md +72 -0
  1656. data/jasmine/node_modules/karma/node_modules/connect/node_modules/morgan/LICENSE +23 -0
  1657. data/jasmine/node_modules/karma/node_modules/connect/node_modules/morgan/README.md +200 -0
  1658. data/jasmine/node_modules/karma/node_modules/connect/node_modules/morgan/index.js +326 -0
  1659. data/jasmine/node_modules/karma/node_modules/connect/node_modules/morgan/node_modules/basic-auth/Readme.md +26 -0
  1660. data/jasmine/node_modules/karma/node_modules/connect/node_modules/morgan/node_modules/basic-auth/index.js +28 -0
  1661. data/jasmine/node_modules/karma/node_modules/connect/node_modules/morgan/node_modules/basic-auth/package.json +55 -0
  1662. data/jasmine/node_modules/karma/node_modules/connect/node_modules/morgan/node_modules/on-finished/HISTORY.md +66 -0
  1663. data/jasmine/node_modules/karma/node_modules/connect/node_modules/morgan/node_modules/on-finished/LICENSE +23 -0
  1664. data/jasmine/node_modules/karma/node_modules/connect/node_modules/morgan/node_modules/on-finished/README.md +90 -0
  1665. data/jasmine/node_modules/karma/node_modules/connect/node_modules/morgan/node_modules/on-finished/index.js +127 -0
  1666. data/jasmine/node_modules/karma/node_modules/connect/node_modules/morgan/node_modules/on-finished/node_modules/ee-first/LICENSE +22 -0
  1667. data/jasmine/node_modules/karma/node_modules/connect/node_modules/morgan/node_modules/on-finished/node_modules/ee-first/README.md +63 -0
  1668. data/jasmine/node_modules/karma/node_modules/connect/node_modules/morgan/node_modules/on-finished/node_modules/ee-first/index.js +60 -0
  1669. data/jasmine/node_modules/karma/node_modules/connect/node_modules/morgan/node_modules/on-finished/node_modules/ee-first/package.json +63 -0
  1670. data/jasmine/node_modules/karma/node_modules/connect/node_modules/morgan/node_modules/on-finished/package.json +70 -0
  1671. data/jasmine/node_modules/karma/node_modules/connect/node_modules/morgan/package.json +90 -0
  1672. data/jasmine/node_modules/karma/node_modules/connect/node_modules/multiparty/.jshintrc +70 -0
  1673. data/jasmine/node_modules/karma/node_modules/connect/node_modules/multiparty/.npmignore +2 -0
  1674. data/jasmine/node_modules/karma/node_modules/connect/node_modules/multiparty/.travis.yml +6 -0
  1675. data/jasmine/node_modules/karma/node_modules/connect/node_modules/multiparty/CHANGELOG.md +285 -0
  1676. data/jasmine/node_modules/karma/node_modules/connect/node_modules/multiparty/LICENSE +7 -0
  1677. data/jasmine/node_modules/karma/node_modules/connect/node_modules/multiparty/README.md +238 -0
  1678. data/jasmine/node_modules/karma/node_modules/connect/node_modules/multiparty/index.js +718 -0
  1679. data/jasmine/node_modules/karma/node_modules/connect/node_modules/multiparty/node_modules/readable-stream/.npmignore +5 -0
  1680. data/jasmine/node_modules/karma/node_modules/connect/node_modules/multiparty/node_modules/readable-stream/LICENSE +18 -0
  1681. data/jasmine/node_modules/karma/node_modules/connect/node_modules/multiparty/node_modules/readable-stream/README.md +15 -0
  1682. data/jasmine/node_modules/karma/node_modules/connect/node_modules/multiparty/node_modules/readable-stream/duplex.js +1 -0
  1683. data/jasmine/node_modules/karma/node_modules/connect/node_modules/multiparty/node_modules/readable-stream/float.patch +923 -0
  1684. data/jasmine/node_modules/karma/node_modules/connect/node_modules/multiparty/node_modules/readable-stream/lib/_stream_duplex.js +89 -0
  1685. data/jasmine/node_modules/karma/node_modules/connect/node_modules/multiparty/node_modules/readable-stream/lib/_stream_passthrough.js +46 -0
  1686. data/jasmine/node_modules/karma/node_modules/connect/node_modules/multiparty/node_modules/readable-stream/lib/_stream_readable.js +951 -0
  1687. data/jasmine/node_modules/karma/node_modules/connect/node_modules/multiparty/node_modules/readable-stream/lib/_stream_transform.js +209 -0
  1688. data/jasmine/node_modules/karma/node_modules/connect/node_modules/multiparty/node_modules/readable-stream/lib/_stream_writable.js +477 -0
  1689. data/jasmine/node_modules/karma/node_modules/connect/node_modules/multiparty/node_modules/readable-stream/node_modules/core-util-is/README.md +3 -0
  1690. data/jasmine/node_modules/karma/node_modules/connect/node_modules/multiparty/node_modules/readable-stream/node_modules/core-util-is/float.patch +604 -0
  1691. data/jasmine/node_modules/karma/node_modules/connect/node_modules/multiparty/node_modules/readable-stream/node_modules/core-util-is/lib/util.js +107 -0
  1692. data/jasmine/node_modules/karma/node_modules/connect/node_modules/multiparty/node_modules/readable-stream/node_modules/core-util-is/package.json +53 -0
  1693. data/jasmine/node_modules/karma/node_modules/connect/node_modules/multiparty/node_modules/readable-stream/node_modules/core-util-is/util.js +106 -0
  1694. data/jasmine/node_modules/karma/node_modules/connect/node_modules/multiparty/node_modules/readable-stream/node_modules/inherits/LICENSE +16 -0
  1695. data/jasmine/node_modules/karma/node_modules/connect/node_modules/multiparty/node_modules/readable-stream/node_modules/inherits/README.md +42 -0
  1696. data/jasmine/node_modules/karma/node_modules/connect/node_modules/multiparty/node_modules/readable-stream/node_modules/inherits/inherits.js +1 -0
  1697. data/jasmine/node_modules/karma/node_modules/connect/node_modules/multiparty/node_modules/readable-stream/node_modules/inherits/inherits_browser.js +23 -0
  1698. data/jasmine/node_modules/karma/node_modules/connect/node_modules/multiparty/node_modules/readable-stream/node_modules/inherits/package.json +50 -0
  1699. data/jasmine/node_modules/karma/node_modules/connect/node_modules/multiparty/node_modules/readable-stream/node_modules/inherits/test.js +25 -0
  1700. data/jasmine/node_modules/karma/node_modules/connect/node_modules/multiparty/node_modules/readable-stream/node_modules/isarray/README.md +54 -0
  1701. data/jasmine/node_modules/karma/node_modules/connect/node_modules/multiparty/node_modules/readable-stream/node_modules/isarray/build/build.js +209 -0
  1702. data/jasmine/node_modules/karma/node_modules/connect/node_modules/multiparty/node_modules/readable-stream/node_modules/isarray/component.json +19 -0
  1703. data/jasmine/node_modules/karma/node_modules/connect/node_modules/multiparty/node_modules/readable-stream/node_modules/isarray/index.js +3 -0
  1704. data/jasmine/node_modules/karma/node_modules/connect/node_modules/multiparty/node_modules/readable-stream/node_modules/isarray/package.json +49 -0
  1705. data/jasmine/node_modules/karma/node_modules/connect/node_modules/multiparty/node_modules/readable-stream/node_modules/string_decoder/.npmignore +2 -0
  1706. data/jasmine/node_modules/karma/node_modules/connect/node_modules/multiparty/node_modules/readable-stream/node_modules/string_decoder/LICENSE +20 -0
  1707. data/jasmine/node_modules/karma/node_modules/connect/node_modules/multiparty/node_modules/readable-stream/node_modules/string_decoder/README.md +7 -0
  1708. data/jasmine/node_modules/karma/node_modules/connect/node_modules/multiparty/node_modules/readable-stream/node_modules/string_decoder/index.js +221 -0
  1709. data/jasmine/node_modules/karma/node_modules/connect/node_modules/multiparty/node_modules/readable-stream/node_modules/string_decoder/package.json +53 -0
  1710. data/jasmine/node_modules/karma/node_modules/connect/node_modules/multiparty/node_modules/readable-stream/package.json +69 -0
  1711. data/jasmine/node_modules/karma/node_modules/connect/node_modules/multiparty/node_modules/readable-stream/passthrough.js +1 -0
  1712. data/jasmine/node_modules/karma/node_modules/connect/node_modules/multiparty/node_modules/readable-stream/readable.js +7 -0
  1713. data/jasmine/node_modules/karma/node_modules/connect/node_modules/multiparty/node_modules/readable-stream/transform.js +1 -0
  1714. data/jasmine/node_modules/karma/node_modules/connect/node_modules/multiparty/node_modules/readable-stream/writable.js +1 -0
  1715. data/jasmine/node_modules/karma/node_modules/connect/node_modules/multiparty/node_modules/stream-counter/.npmignore +1 -0
  1716. data/jasmine/node_modules/karma/node_modules/connect/node_modules/multiparty/node_modules/stream-counter/README.md +14 -0
  1717. data/jasmine/node_modules/karma/node_modules/connect/node_modules/multiparty/node_modules/stream-counter/index.js +16 -0
  1718. data/jasmine/node_modules/karma/node_modules/connect/node_modules/multiparty/node_modules/stream-counter/package.json +47 -0
  1719. data/jasmine/node_modules/karma/node_modules/connect/node_modules/multiparty/node_modules/stream-counter/test/test.js +20 -0
  1720. data/jasmine/node_modules/karma/node_modules/connect/node_modules/multiparty/node_modules/stream-counter/test/test.txt +1 -0
  1721. data/jasmine/node_modules/karma/node_modules/connect/node_modules/multiparty/package.json +63 -0
  1722. data/jasmine/node_modules/karma/node_modules/connect/node_modules/on-headers/.npmignore +3 -0
  1723. data/jasmine/node_modules/karma/node_modules/connect/node_modules/on-headers/History.md +11 -0
  1724. data/jasmine/node_modules/karma/node_modules/connect/node_modules/on-headers/LICENSE +22 -0
  1725. data/jasmine/node_modules/karma/node_modules/connect/node_modules/on-headers/README.md +59 -0
  1726. data/jasmine/node_modules/karma/node_modules/connect/node_modules/on-headers/index.js +91 -0
  1727. data/jasmine/node_modules/karma/node_modules/connect/node_modules/on-headers/package.json +59 -0
  1728. data/jasmine/node_modules/karma/node_modules/connect/node_modules/parseurl/.npmignore +4 -0
  1729. data/jasmine/node_modules/karma/node_modules/connect/node_modules/parseurl/HISTORY.md +42 -0
  1730. data/jasmine/node_modules/karma/node_modules/connect/node_modules/parseurl/LICENSE +24 -0
  1731. data/jasmine/node_modules/karma/node_modules/connect/node_modules/parseurl/README.md +107 -0
  1732. data/jasmine/node_modules/karma/node_modules/connect/node_modules/parseurl/index.js +136 -0
  1733. data/jasmine/node_modules/karma/node_modules/connect/node_modules/parseurl/package.json +80 -0
  1734. data/jasmine/node_modules/karma/node_modules/connect/node_modules/pause/.npmignore +4 -0
  1735. data/jasmine/node_modules/karma/node_modules/connect/node_modules/pause/History.md +5 -0
  1736. data/jasmine/node_modules/karma/node_modules/connect/node_modules/pause/Makefile +7 -0
  1737. data/jasmine/node_modules/karma/node_modules/connect/node_modules/pause/Readme.md +29 -0
  1738. data/jasmine/node_modules/karma/node_modules/connect/node_modules/pause/index.js +29 -0
  1739. data/jasmine/node_modules/karma/node_modules/connect/node_modules/pause/package.json +31 -0
  1740. data/jasmine/node_modules/karma/node_modules/connect/node_modules/qs/.jshintignore +1 -0
  1741. data/jasmine/node_modules/karma/node_modules/connect/node_modules/qs/.jshintrc +10 -0
  1742. data/jasmine/node_modules/karma/node_modules/connect/node_modules/qs/.npmignore +18 -0
  1743. data/jasmine/node_modules/karma/node_modules/connect/node_modules/qs/.travis.yml +4 -0
  1744. data/jasmine/node_modules/karma/node_modules/connect/node_modules/qs/CHANGELOG.md +47 -0
  1745. data/jasmine/node_modules/karma/node_modules/connect/node_modules/qs/CONTRIBUTING.md +1 -0
  1746. data/jasmine/node_modules/karma/node_modules/connect/node_modules/qs/LICENSE +28 -0
  1747. data/jasmine/node_modules/karma/node_modules/connect/node_modules/qs/Makefile +8 -0
  1748. data/jasmine/node_modules/karma/node_modules/connect/node_modules/qs/README.md +213 -0
  1749. data/jasmine/node_modules/karma/node_modules/connect/node_modules/qs/index.js +1 -0
  1750. data/jasmine/node_modules/karma/node_modules/connect/node_modules/qs/lib/index.js +15 -0
  1751. data/jasmine/node_modules/karma/node_modules/connect/node_modules/qs/lib/parse.js +156 -0
  1752. data/jasmine/node_modules/karma/node_modules/connect/node_modules/qs/lib/stringify.js +58 -0
  1753. data/jasmine/node_modules/karma/node_modules/connect/node_modules/qs/lib/utils.js +139 -0
  1754. data/jasmine/node_modules/karma/node_modules/connect/node_modules/qs/package.json +60 -0
  1755. data/jasmine/node_modules/karma/node_modules/connect/node_modules/qs/test/parse.js +391 -0
  1756. data/jasmine/node_modules/karma/node_modules/connect/node_modules/qs/test/stringify.js +139 -0
  1757. data/jasmine/node_modules/karma/node_modules/connect/node_modules/response-time/.npmignore +3 -0
  1758. data/jasmine/node_modules/karma/node_modules/connect/node_modules/response-time/HISTORY.md +18 -0
  1759. data/jasmine/node_modules/karma/node_modules/connect/node_modules/response-time/LICENSE +23 -0
  1760. data/jasmine/node_modules/karma/node_modules/connect/node_modules/response-time/README.md +32 -0
  1761. data/jasmine/node_modules/karma/node_modules/connect/node_modules/response-time/index.js +45 -0
  1762. data/jasmine/node_modules/karma/node_modules/connect/node_modules/response-time/package.json +82 -0
  1763. data/jasmine/node_modules/karma/node_modules/connect/node_modules/serve-favicon/HISTORY.md +75 -0
  1764. data/jasmine/node_modules/karma/node_modules/connect/node_modules/serve-favicon/LICENSE +25 -0
  1765. data/jasmine/node_modules/karma/node_modules/connect/node_modules/serve-favicon/README.md +120 -0
  1766. data/jasmine/node_modules/karma/node_modules/connect/node_modules/serve-favicon/index.js +163 -0
  1767. data/jasmine/node_modules/karma/node_modules/connect/node_modules/serve-favicon/node_modules/etag/HISTORY.md +55 -0
  1768. data/jasmine/node_modules/karma/node_modules/connect/node_modules/serve-favicon/node_modules/etag/LICENSE +22 -0
  1769. data/jasmine/node_modules/karma/node_modules/connect/node_modules/serve-favicon/node_modules/etag/README.md +141 -0
  1770. data/jasmine/node_modules/karma/node_modules/connect/node_modules/serve-favicon/node_modules/etag/index.js +171 -0
  1771. data/jasmine/node_modules/karma/node_modules/connect/node_modules/serve-favicon/node_modules/etag/node_modules/crc/.npmignore +5 -0
  1772. data/jasmine/node_modules/karma/node_modules/connect/node_modules/serve-favicon/node_modules/etag/node_modules/crc/LICENSE +22 -0
  1773. data/jasmine/node_modules/karma/node_modules/connect/node_modules/serve-favicon/node_modules/etag/node_modules/crc/README.md +98 -0
  1774. data/jasmine/node_modules/karma/node_modules/connect/node_modules/serve-favicon/node_modules/etag/node_modules/crc/lib/crc.js +71 -0
  1775. data/jasmine/node_modules/karma/node_modules/connect/node_modules/serve-favicon/node_modules/etag/node_modules/crc/lib/crc1.js +21 -0
  1776. data/jasmine/node_modules/karma/node_modules/connect/node_modules/serve-favicon/node_modules/etag/node_modules/crc/lib/crc16.js +25 -0
  1777. data/jasmine/node_modules/karma/node_modules/connect/node_modules/serve-favicon/node_modules/etag/node_modules/crc/lib/crc16_ccitt.js +25 -0
  1778. data/jasmine/node_modules/karma/node_modules/connect/node_modules/serve-favicon/node_modules/etag/node_modules/crc/lib/crc16_modbus.js +25 -0
  1779. data/jasmine/node_modules/karma/node_modules/connect/node_modules/serve-favicon/node_modules/etag/node_modules/crc/lib/crc24.js +25 -0
  1780. data/jasmine/node_modules/karma/node_modules/connect/node_modules/serve-favicon/node_modules/etag/node_modules/crc/lib/crc32.js +25 -0
  1781. data/jasmine/node_modules/karma/node_modules/connect/node_modules/serve-favicon/node_modules/etag/node_modules/crc/lib/crc8.js +25 -0
  1782. data/jasmine/node_modules/karma/node_modules/connect/node_modules/serve-favicon/node_modules/etag/node_modules/crc/lib/crc8_1wire.js +25 -0
  1783. data/jasmine/node_modules/karma/node_modules/connect/node_modules/serve-favicon/node_modules/etag/node_modules/crc/lib/create.js +11 -0
  1784. data/jasmine/node_modules/karma/node_modules/connect/node_modules/serve-favicon/node_modules/etag/node_modules/crc/lib/hex.js +9 -0
  1785. data/jasmine/node_modules/karma/node_modules/connect/node_modules/serve-favicon/node_modules/etag/node_modules/crc/lib/index.js +11 -0
  1786. data/jasmine/node_modules/karma/node_modules/connect/node_modules/serve-favicon/node_modules/etag/node_modules/crc/package.json +58 -0
  1787. data/jasmine/node_modules/karma/node_modules/connect/node_modules/serve-favicon/node_modules/etag/package.json +75 -0
  1788. data/jasmine/node_modules/karma/node_modules/connect/node_modules/serve-favicon/node_modules/ms/.npmignore +5 -0
  1789. data/jasmine/node_modules/karma/node_modules/connect/node_modules/serve-favicon/node_modules/ms/README.md +33 -0
  1790. data/jasmine/node_modules/karma/node_modules/connect/node_modules/serve-favicon/node_modules/ms/index.js +111 -0
  1791. data/jasmine/node_modules/karma/node_modules/connect/node_modules/serve-favicon/node_modules/ms/package.json +43 -0
  1792. data/jasmine/node_modules/karma/node_modules/connect/node_modules/serve-favicon/package.json +68 -0
  1793. data/jasmine/node_modules/karma/node_modules/connect/node_modules/serve-index/HISTORY.md +75 -0
  1794. data/jasmine/node_modules/karma/node_modules/connect/node_modules/serve-index/LICENSE +25 -0
  1795. data/jasmine/node_modules/karma/node_modules/connect/node_modules/serve-index/README.md +123 -0
  1796. data/jasmine/node_modules/karma/node_modules/connect/node_modules/serve-index/index.js +530 -0
  1797. data/jasmine/node_modules/karma/node_modules/connect/node_modules/serve-index/node_modules/accepts/HISTORY.md +74 -0
  1798. data/jasmine/node_modules/karma/node_modules/connect/node_modules/serve-index/node_modules/accepts/LICENSE +22 -0
  1799. data/jasmine/node_modules/karma/node_modules/connect/node_modules/serve-index/node_modules/accepts/README.md +94 -0
  1800. data/jasmine/node_modules/karma/node_modules/connect/node_modules/serve-index/node_modules/accepts/index.js +160 -0
  1801. data/jasmine/node_modules/karma/node_modules/connect/node_modules/serve-index/node_modules/accepts/node_modules/mime-types/HISTORY.md +97 -0
  1802. data/jasmine/node_modules/karma/node_modules/connect/node_modules/serve-index/node_modules/accepts/node_modules/mime-types/LICENSE +22 -0
  1803. data/jasmine/node_modules/karma/node_modules/connect/node_modules/serve-index/node_modules/accepts/node_modules/mime-types/README.md +102 -0
  1804. data/jasmine/node_modules/karma/node_modules/connect/node_modules/serve-index/node_modules/accepts/node_modules/mime-types/index.js +63 -0
  1805. data/jasmine/node_modules/karma/node_modules/connect/node_modules/serve-index/node_modules/accepts/node_modules/mime-types/node_modules/mime-db/HISTORY.md +188 -0
  1806. data/jasmine/node_modules/karma/node_modules/connect/node_modules/serve-index/node_modules/accepts/node_modules/mime-types/node_modules/mime-db/LICENSE +22 -0
  1807. data/jasmine/node_modules/karma/node_modules/connect/node_modules/serve-index/node_modules/accepts/node_modules/mime-types/node_modules/mime-db/README.md +76 -0
  1808. data/jasmine/node_modules/karma/node_modules/connect/node_modules/serve-index/node_modules/accepts/node_modules/mime-types/node_modules/mime-db/db.json +6325 -0
  1809. data/jasmine/node_modules/karma/node_modules/connect/node_modules/serve-index/node_modules/accepts/node_modules/mime-types/node_modules/mime-db/index.js +11 -0
  1810. data/jasmine/node_modules/karma/node_modules/connect/node_modules/serve-index/node_modules/accepts/node_modules/mime-types/node_modules/mime-db/package.json +94 -0
  1811. data/jasmine/node_modules/karma/node_modules/connect/node_modules/serve-index/node_modules/accepts/node_modules/mime-types/package.json +84 -0
  1812. data/jasmine/node_modules/karma/node_modules/connect/node_modules/serve-index/node_modules/accepts/node_modules/negotiator/LICENSE +23 -0
  1813. data/jasmine/node_modules/karma/node_modules/connect/node_modules/serve-index/node_modules/accepts/node_modules/negotiator/README.md +161 -0
  1814. data/jasmine/node_modules/karma/node_modules/connect/node_modules/serve-index/node_modules/accepts/node_modules/negotiator/lib/charset.js +87 -0
  1815. data/jasmine/node_modules/karma/node_modules/connect/node_modules/serve-index/node_modules/accepts/node_modules/negotiator/lib/encoding.js +117 -0
  1816. data/jasmine/node_modules/karma/node_modules/connect/node_modules/serve-index/node_modules/accepts/node_modules/negotiator/lib/language.js +100 -0
  1817. data/jasmine/node_modules/karma/node_modules/connect/node_modules/serve-index/node_modules/accepts/node_modules/negotiator/lib/mediaType.js +122 -0
  1818. data/jasmine/node_modules/karma/node_modules/connect/node_modules/serve-index/node_modules/accepts/node_modules/negotiator/lib/negotiator.js +37 -0
  1819. data/jasmine/node_modules/karma/node_modules/connect/node_modules/serve-index/node_modules/accepts/node_modules/negotiator/package.json +79 -0
  1820. data/jasmine/node_modules/karma/node_modules/connect/node_modules/serve-index/node_modules/accepts/package.json +92 -0
  1821. data/jasmine/node_modules/karma/node_modules/connect/node_modules/serve-index/node_modules/batch/.npmignore +4 -0
  1822. data/jasmine/node_modules/karma/node_modules/connect/node_modules/serve-index/node_modules/batch/History.md +71 -0
  1823. data/jasmine/node_modules/karma/node_modules/connect/node_modules/serve-index/node_modules/batch/Makefile +6 -0
  1824. data/jasmine/node_modules/karma/node_modules/connect/node_modules/serve-index/node_modules/batch/Readme.md +74 -0
  1825. data/jasmine/node_modules/karma/node_modules/connect/node_modules/serve-index/node_modules/batch/component.json +14 -0
  1826. data/jasmine/node_modules/karma/node_modules/connect/node_modules/serve-index/node_modules/batch/index.js +158 -0
  1827. data/jasmine/node_modules/karma/node_modules/connect/node_modules/serve-index/node_modules/batch/package.json +42 -0
  1828. data/jasmine/node_modules/karma/node_modules/connect/node_modules/serve-index/package.json +85 -0
  1829. data/jasmine/node_modules/karma/node_modules/connect/node_modules/serve-index/public/directory.html +82 -0
  1830. data/jasmine/node_modules/karma/node_modules/connect/node_modules/serve-index/public/icons/application_xp.png +0 -0
  1831. data/jasmine/node_modules/karma/node_modules/connect/node_modules/serve-index/public/icons/application_xp_terminal.png +0 -0
  1832. data/jasmine/node_modules/karma/node_modules/connect/node_modules/serve-index/public/icons/box.png +0 -0
  1833. data/jasmine/node_modules/karma/node_modules/connect/node_modules/serve-index/public/icons/cd.png +0 -0
  1834. data/jasmine/node_modules/karma/node_modules/connect/node_modules/serve-index/public/icons/controller.png +0 -0
  1835. data/jasmine/node_modules/karma/node_modules/connect/node_modules/serve-index/public/icons/drive.png +0 -0
  1836. data/jasmine/node_modules/karma/node_modules/connect/node_modules/serve-index/public/icons/film.png +0 -0
  1837. data/jasmine/node_modules/karma/node_modules/connect/node_modules/serve-index/public/icons/folder.png +0 -0
  1838. data/jasmine/node_modules/karma/node_modules/connect/node_modules/serve-index/public/icons/font.png +0 -0
  1839. data/jasmine/node_modules/karma/node_modules/connect/node_modules/serve-index/public/icons/image.png +0 -0
  1840. data/jasmine/node_modules/karma/node_modules/connect/node_modules/serve-index/public/icons/map.png +0 -0
  1841. data/jasmine/node_modules/karma/node_modules/connect/node_modules/serve-index/public/icons/page.png +0 -0
  1842. data/jasmine/node_modules/karma/node_modules/connect/node_modules/serve-index/public/icons/page_add.png +0 -0
  1843. data/jasmine/node_modules/karma/node_modules/connect/node_modules/serve-index/public/icons/page_attach.png +0 -0
  1844. data/jasmine/node_modules/karma/node_modules/connect/node_modules/serve-index/public/icons/page_code.png +0 -0
  1845. data/jasmine/node_modules/karma/node_modules/connect/node_modules/serve-index/public/icons/page_copy.png +0 -0
  1846. data/jasmine/node_modules/karma/node_modules/connect/node_modules/serve-index/public/icons/page_delete.png +0 -0
  1847. data/jasmine/node_modules/karma/node_modules/connect/node_modules/serve-index/public/icons/page_edit.png +0 -0
  1848. data/jasmine/node_modules/karma/node_modules/connect/node_modules/serve-index/public/icons/page_error.png +0 -0
  1849. data/jasmine/node_modules/karma/node_modules/connect/node_modules/serve-index/public/icons/page_excel.png +0 -0
  1850. data/jasmine/node_modules/karma/node_modules/connect/node_modules/serve-index/public/icons/page_find.png +0 -0
  1851. data/jasmine/node_modules/karma/node_modules/connect/node_modules/serve-index/public/icons/page_gear.png +0 -0
  1852. data/jasmine/node_modules/karma/node_modules/connect/node_modules/serve-index/public/icons/page_go.png +0 -0
  1853. data/jasmine/node_modules/karma/node_modules/connect/node_modules/serve-index/public/icons/page_green.png +0 -0
  1854. data/jasmine/node_modules/karma/node_modules/connect/node_modules/serve-index/public/icons/page_key.png +0 -0
  1855. data/jasmine/node_modules/karma/node_modules/connect/node_modules/serve-index/public/icons/page_lightning.png +0 -0
  1856. data/jasmine/node_modules/karma/node_modules/connect/node_modules/serve-index/public/icons/page_link.png +0 -0
  1857. data/jasmine/node_modules/karma/node_modules/connect/node_modules/serve-index/public/icons/page_paintbrush.png +0 -0
  1858. data/jasmine/node_modules/karma/node_modules/connect/node_modules/serve-index/public/icons/page_paste.png +0 -0
  1859. data/jasmine/node_modules/karma/node_modules/connect/node_modules/serve-index/public/icons/page_red.png +0 -0
  1860. data/jasmine/node_modules/karma/node_modules/connect/node_modules/serve-index/public/icons/page_refresh.png +0 -0
  1861. data/jasmine/node_modules/karma/node_modules/connect/node_modules/serve-index/public/icons/page_save.png +0 -0
  1862. data/jasmine/node_modules/karma/node_modules/connect/node_modules/serve-index/public/icons/page_white.png +0 -0
  1863. data/jasmine/node_modules/karma/node_modules/connect/node_modules/serve-index/public/icons/page_white_acrobat.png +0 -0
  1864. data/jasmine/node_modules/karma/node_modules/connect/node_modules/serve-index/public/icons/page_white_actionscript.png +0 -0
  1865. data/jasmine/node_modules/karma/node_modules/connect/node_modules/serve-index/public/icons/page_white_add.png +0 -0
  1866. data/jasmine/node_modules/karma/node_modules/connect/node_modules/serve-index/public/icons/page_white_c.png +0 -0
  1867. data/jasmine/node_modules/karma/node_modules/connect/node_modules/serve-index/public/icons/page_white_camera.png +0 -0
  1868. data/jasmine/node_modules/karma/node_modules/connect/node_modules/serve-index/public/icons/page_white_cd.png +0 -0
  1869. data/jasmine/node_modules/karma/node_modules/connect/node_modules/serve-index/public/icons/page_white_code.png +0 -0
  1870. data/jasmine/node_modules/karma/node_modules/connect/node_modules/serve-index/public/icons/page_white_code_red.png +0 -0
  1871. data/jasmine/node_modules/karma/node_modules/connect/node_modules/serve-index/public/icons/page_white_coldfusion.png +0 -0
  1872. data/jasmine/node_modules/karma/node_modules/connect/node_modules/serve-index/public/icons/page_white_compressed.png +0 -0
  1873. data/jasmine/node_modules/karma/node_modules/connect/node_modules/serve-index/public/icons/page_white_copy.png +0 -0
  1874. data/jasmine/node_modules/karma/node_modules/connect/node_modules/serve-index/public/icons/page_white_cplusplus.png +0 -0
  1875. data/jasmine/node_modules/karma/node_modules/connect/node_modules/serve-index/public/icons/page_white_csharp.png +0 -0
  1876. data/jasmine/node_modules/karma/node_modules/connect/node_modules/serve-index/public/icons/page_white_cup.png +0 -0
  1877. data/jasmine/node_modules/karma/node_modules/connect/node_modules/serve-index/public/icons/page_white_database.png +0 -0
  1878. data/jasmine/node_modules/karma/node_modules/connect/node_modules/serve-index/public/icons/page_white_delete.png +0 -0
  1879. data/jasmine/node_modules/karma/node_modules/connect/node_modules/serve-index/public/icons/page_white_dvd.png +0 -0
  1880. data/jasmine/node_modules/karma/node_modules/connect/node_modules/serve-index/public/icons/page_white_edit.png +0 -0
  1881. data/jasmine/node_modules/karma/node_modules/connect/node_modules/serve-index/public/icons/page_white_error.png +0 -0
  1882. data/jasmine/node_modules/karma/node_modules/connect/node_modules/serve-index/public/icons/page_white_excel.png +0 -0
  1883. data/jasmine/node_modules/karma/node_modules/connect/node_modules/serve-index/public/icons/page_white_find.png +0 -0
  1884. data/jasmine/node_modules/karma/node_modules/connect/node_modules/serve-index/public/icons/page_white_flash.png +0 -0
  1885. data/jasmine/node_modules/karma/node_modules/connect/node_modules/serve-index/public/icons/page_white_freehand.png +0 -0
  1886. data/jasmine/node_modules/karma/node_modules/connect/node_modules/serve-index/public/icons/page_white_gear.png +0 -0
  1887. data/jasmine/node_modules/karma/node_modules/connect/node_modules/serve-index/public/icons/page_white_get.png +0 -0
  1888. data/jasmine/node_modules/karma/node_modules/connect/node_modules/serve-index/public/icons/page_white_go.png +0 -0
  1889. data/jasmine/node_modules/karma/node_modules/connect/node_modules/serve-index/public/icons/page_white_h.png +0 -0
  1890. data/jasmine/node_modules/karma/node_modules/connect/node_modules/serve-index/public/icons/page_white_horizontal.png +0 -0
  1891. data/jasmine/node_modules/karma/node_modules/connect/node_modules/serve-index/public/icons/page_white_key.png +0 -0
  1892. data/jasmine/node_modules/karma/node_modules/connect/node_modules/serve-index/public/icons/page_white_lightning.png +0 -0
  1893. data/jasmine/node_modules/karma/node_modules/connect/node_modules/serve-index/public/icons/page_white_link.png +0 -0
  1894. data/jasmine/node_modules/karma/node_modules/connect/node_modules/serve-index/public/icons/page_white_magnify.png +0 -0
  1895. data/jasmine/node_modules/karma/node_modules/connect/node_modules/serve-index/public/icons/page_white_medal.png +0 -0
  1896. data/jasmine/node_modules/karma/node_modules/connect/node_modules/serve-index/public/icons/page_white_office.png +0 -0
  1897. data/jasmine/node_modules/karma/node_modules/connect/node_modules/serve-index/public/icons/page_white_paint.png +0 -0
  1898. data/jasmine/node_modules/karma/node_modules/connect/node_modules/serve-index/public/icons/page_white_paintbrush.png +0 -0
  1899. data/jasmine/node_modules/karma/node_modules/connect/node_modules/serve-index/public/icons/page_white_paste.png +0 -0
  1900. data/jasmine/node_modules/karma/node_modules/connect/node_modules/serve-index/public/icons/page_white_php.png +0 -0
  1901. data/jasmine/node_modules/karma/node_modules/connect/node_modules/serve-index/public/icons/page_white_picture.png +0 -0
  1902. data/jasmine/node_modules/karma/node_modules/connect/node_modules/serve-index/public/icons/page_white_powerpoint.png +0 -0
  1903. data/jasmine/node_modules/karma/node_modules/connect/node_modules/serve-index/public/icons/page_white_put.png +0 -0
  1904. data/jasmine/node_modules/karma/node_modules/connect/node_modules/serve-index/public/icons/page_white_ruby.png +0 -0
  1905. data/jasmine/node_modules/karma/node_modules/connect/node_modules/serve-index/public/icons/page_white_stack.png +0 -0
  1906. data/jasmine/node_modules/karma/node_modules/connect/node_modules/serve-index/public/icons/page_white_star.png +0 -0
  1907. data/jasmine/node_modules/karma/node_modules/connect/node_modules/serve-index/public/icons/page_white_swoosh.png +0 -0
  1908. data/jasmine/node_modules/karma/node_modules/connect/node_modules/serve-index/public/icons/page_white_text.png +0 -0
  1909. data/jasmine/node_modules/karma/node_modules/connect/node_modules/serve-index/public/icons/page_white_text_width.png +0 -0
  1910. data/jasmine/node_modules/karma/node_modules/connect/node_modules/serve-index/public/icons/page_white_tux.png +0 -0
  1911. data/jasmine/node_modules/karma/node_modules/connect/node_modules/serve-index/public/icons/page_white_vector.png +0 -0
  1912. data/jasmine/node_modules/karma/node_modules/connect/node_modules/serve-index/public/icons/page_white_visualstudio.png +0 -0
  1913. data/jasmine/node_modules/karma/node_modules/connect/node_modules/serve-index/public/icons/page_white_width.png +0 -0
  1914. data/jasmine/node_modules/karma/node_modules/connect/node_modules/serve-index/public/icons/page_white_word.png +0 -0
  1915. data/jasmine/node_modules/karma/node_modules/connect/node_modules/serve-index/public/icons/page_white_world.png +0 -0
  1916. data/jasmine/node_modules/karma/node_modules/connect/node_modules/serve-index/public/icons/page_white_wrench.png +0 -0
  1917. data/jasmine/node_modules/karma/node_modules/connect/node_modules/serve-index/public/icons/page_white_zip.png +0 -0
  1918. data/jasmine/node_modules/karma/node_modules/connect/node_modules/serve-index/public/icons/page_word.png +0 -0
  1919. data/jasmine/node_modules/karma/node_modules/connect/node_modules/serve-index/public/icons/page_world.png +0 -0
  1920. data/jasmine/node_modules/karma/node_modules/connect/node_modules/serve-index/public/style.css +257 -0
  1921. data/jasmine/node_modules/karma/node_modules/connect/node_modules/serve-static/HISTORY.md +193 -0
  1922. data/jasmine/node_modules/karma/node_modules/connect/node_modules/serve-static/LICENSE +25 -0
  1923. data/jasmine/node_modules/karma/node_modules/connect/node_modules/serve-static/README.md +159 -0
  1924. data/jasmine/node_modules/karma/node_modules/connect/node_modules/serve-static/index.js +137 -0
  1925. data/jasmine/node_modules/karma/node_modules/connect/node_modules/serve-static/node_modules/escape-html/.npmignore +2 -0
  1926. data/jasmine/node_modules/karma/node_modules/connect/node_modules/serve-static/node_modules/escape-html/Makefile +11 -0
  1927. data/jasmine/node_modules/karma/node_modules/connect/node_modules/serve-static/node_modules/escape-html/Readme.md +15 -0
  1928. data/jasmine/node_modules/karma/node_modules/connect/node_modules/serve-static/node_modules/escape-html/component.json +10 -0
  1929. data/jasmine/node_modules/karma/node_modules/connect/node_modules/serve-static/node_modules/escape-html/index.js +16 -0
  1930. data/jasmine/node_modules/karma/node_modules/connect/node_modules/serve-static/node_modules/escape-html/package.json +46 -0
  1931. data/jasmine/node_modules/karma/node_modules/connect/node_modules/serve-static/node_modules/send/History.md +205 -0
  1932. data/jasmine/node_modules/karma/node_modules/connect/node_modules/serve-static/node_modules/send/LICENSE +23 -0
  1933. data/jasmine/node_modules/karma/node_modules/connect/node_modules/serve-static/node_modules/send/Readme.md +182 -0
  1934. data/jasmine/node_modules/karma/node_modules/connect/node_modules/serve-static/node_modules/send/index.js +773 -0
  1935. data/jasmine/node_modules/karma/node_modules/connect/node_modules/serve-static/node_modules/send/node_modules/destroy/README.md +38 -0
  1936. data/jasmine/node_modules/karma/node_modules/connect/node_modules/serve-static/node_modules/send/node_modules/destroy/index.js +36 -0
  1937. data/jasmine/node_modules/karma/node_modules/connect/node_modules/serve-static/node_modules/send/node_modules/destroy/package.json +67 -0
  1938. data/jasmine/node_modules/karma/node_modules/connect/node_modules/serve-static/node_modules/send/node_modules/etag/HISTORY.md +43 -0
  1939. data/jasmine/node_modules/karma/node_modules/connect/node_modules/serve-static/node_modules/send/node_modules/etag/LICENSE +22 -0
  1940. data/jasmine/node_modules/karma/node_modules/connect/node_modules/serve-static/node_modules/send/node_modules/etag/README.md +141 -0
  1941. data/jasmine/node_modules/karma/node_modules/connect/node_modules/serve-static/node_modules/send/node_modules/etag/index.js +161 -0
  1942. data/jasmine/node_modules/karma/node_modules/connect/node_modules/serve-static/node_modules/send/node_modules/etag/node_modules/crc/.npmignore +4 -0
  1943. data/jasmine/node_modules/karma/node_modules/connect/node_modules/serve-static/node_modules/send/node_modules/etag/node_modules/crc/LICENSE +22 -0
  1944. data/jasmine/node_modules/karma/node_modules/connect/node_modules/serve-static/node_modules/send/node_modules/etag/node_modules/crc/README.md +89 -0
  1945. data/jasmine/node_modules/karma/node_modules/connect/node_modules/serve-static/node_modules/send/node_modules/etag/node_modules/crc/lib/crc.js +71 -0
  1946. data/jasmine/node_modules/karma/node_modules/connect/node_modules/serve-static/node_modules/send/node_modules/etag/node_modules/crc/lib/crc1.js +21 -0
  1947. data/jasmine/node_modules/karma/node_modules/connect/node_modules/serve-static/node_modules/send/node_modules/etag/node_modules/crc/lib/crc16.js +25 -0
  1948. data/jasmine/node_modules/karma/node_modules/connect/node_modules/serve-static/node_modules/send/node_modules/etag/node_modules/crc/lib/crc16_ccitt.js +25 -0
  1949. data/jasmine/node_modules/karma/node_modules/connect/node_modules/serve-static/node_modules/send/node_modules/etag/node_modules/crc/lib/crc16_modbus.js +25 -0
  1950. data/jasmine/node_modules/karma/node_modules/connect/node_modules/serve-static/node_modules/send/node_modules/etag/node_modules/crc/lib/crc24.js +25 -0
  1951. data/jasmine/node_modules/karma/node_modules/connect/node_modules/serve-static/node_modules/send/node_modules/etag/node_modules/crc/lib/crc32.js +25 -0
  1952. data/jasmine/node_modules/karma/node_modules/connect/node_modules/serve-static/node_modules/send/node_modules/etag/node_modules/crc/lib/crc8.js +25 -0
  1953. data/jasmine/node_modules/karma/node_modules/connect/node_modules/serve-static/node_modules/send/node_modules/etag/node_modules/crc/lib/crc8_1wire.js +25 -0
  1954. data/jasmine/node_modules/karma/node_modules/connect/node_modules/serve-static/node_modules/send/node_modules/etag/node_modules/crc/lib/create.js +10 -0
  1955. data/jasmine/node_modules/karma/node_modules/connect/node_modules/serve-static/node_modules/send/node_modules/etag/node_modules/crc/lib/hex.js +9 -0
  1956. data/jasmine/node_modules/karma/node_modules/connect/node_modules/serve-static/node_modules/send/node_modules/etag/node_modules/crc/lib/index.js +11 -0
  1957. data/jasmine/node_modules/karma/node_modules/connect/node_modules/serve-static/node_modules/send/node_modules/etag/node_modules/crc/package.json +58 -0
  1958. data/jasmine/node_modules/karma/node_modules/connect/node_modules/serve-static/node_modules/send/node_modules/etag/package.json +74 -0
  1959. data/jasmine/node_modules/karma/node_modules/connect/node_modules/serve-static/node_modules/send/node_modules/ms/.npmignore +5 -0
  1960. data/jasmine/node_modules/karma/node_modules/connect/node_modules/serve-static/node_modules/send/node_modules/ms/README.md +33 -0
  1961. data/jasmine/node_modules/karma/node_modules/connect/node_modules/serve-static/node_modules/send/node_modules/ms/index.js +111 -0
  1962. data/jasmine/node_modules/karma/node_modules/connect/node_modules/serve-static/node_modules/send/node_modules/ms/package.json +45 -0
  1963. data/jasmine/node_modules/karma/node_modules/connect/node_modules/serve-static/node_modules/send/node_modules/on-finished/HISTORY.md +66 -0
  1964. data/jasmine/node_modules/karma/node_modules/connect/node_modules/serve-static/node_modules/send/node_modules/on-finished/LICENSE +23 -0
  1965. data/jasmine/node_modules/karma/node_modules/connect/node_modules/serve-static/node_modules/send/node_modules/on-finished/README.md +90 -0
  1966. data/jasmine/node_modules/karma/node_modules/connect/node_modules/serve-static/node_modules/send/node_modules/on-finished/index.js +127 -0
  1967. data/jasmine/node_modules/karma/node_modules/connect/node_modules/serve-static/node_modules/send/node_modules/on-finished/node_modules/ee-first/LICENSE +22 -0
  1968. data/jasmine/node_modules/karma/node_modules/connect/node_modules/serve-static/node_modules/send/node_modules/on-finished/node_modules/ee-first/README.md +63 -0
  1969. data/jasmine/node_modules/karma/node_modules/connect/node_modules/serve-static/node_modules/send/node_modules/on-finished/node_modules/ee-first/index.js +60 -0
  1970. data/jasmine/node_modules/karma/node_modules/connect/node_modules/serve-static/node_modules/send/node_modules/on-finished/node_modules/ee-first/package.json +64 -0
  1971. data/jasmine/node_modules/karma/node_modules/connect/node_modules/serve-static/node_modules/send/node_modules/on-finished/package.json +71 -0
  1972. data/jasmine/node_modules/karma/node_modules/connect/node_modules/serve-static/node_modules/send/node_modules/range-parser/HISTORY.md +35 -0
  1973. data/jasmine/node_modules/karma/node_modules/connect/node_modules/serve-static/node_modules/send/node_modules/range-parser/LICENSE +22 -0
  1974. data/jasmine/node_modules/karma/node_modules/connect/node_modules/serve-static/node_modules/send/node_modules/range-parser/README.md +48 -0
  1975. data/jasmine/node_modules/karma/node_modules/connect/node_modules/serve-static/node_modules/send/node_modules/range-parser/index.js +49 -0
  1976. data/jasmine/node_modules/karma/node_modules/connect/node_modules/serve-static/node_modules/send/node_modules/range-parser/package.json +76 -0
  1977. data/jasmine/node_modules/karma/node_modules/connect/node_modules/serve-static/node_modules/send/package.json +85 -0
  1978. data/jasmine/node_modules/karma/node_modules/connect/node_modules/serve-static/node_modules/utils-merge/.travis.yml +6 -0
  1979. data/jasmine/node_modules/karma/node_modules/connect/node_modules/serve-static/node_modules/utils-merge/LICENSE +20 -0
  1980. data/jasmine/node_modules/karma/node_modules/connect/node_modules/serve-static/node_modules/utils-merge/README.md +34 -0
  1981. data/jasmine/node_modules/karma/node_modules/connect/node_modules/serve-static/node_modules/utils-merge/index.js +23 -0
  1982. data/jasmine/node_modules/karma/node_modules/connect/node_modules/serve-static/node_modules/utils-merge/package.json +60 -0
  1983. data/jasmine/node_modules/karma/node_modules/connect/node_modules/serve-static/package.json +84 -0
  1984. data/jasmine/node_modules/karma/node_modules/connect/node_modules/type-is/HISTORY.md +115 -0
  1985. data/jasmine/node_modules/karma/node_modules/connect/node_modules/type-is/LICENSE +21 -0
  1986. data/jasmine/node_modules/karma/node_modules/connect/node_modules/type-is/README.md +117 -0
  1987. data/jasmine/node_modules/karma/node_modules/connect/node_modules/type-is/index.js +228 -0
  1988. data/jasmine/node_modules/karma/node_modules/connect/node_modules/type-is/node_modules/mime-types/HISTORY.md +97 -0
  1989. data/jasmine/node_modules/karma/node_modules/connect/node_modules/type-is/node_modules/mime-types/LICENSE +22 -0
  1990. data/jasmine/node_modules/karma/node_modules/connect/node_modules/type-is/node_modules/mime-types/README.md +102 -0
  1991. data/jasmine/node_modules/karma/node_modules/connect/node_modules/type-is/node_modules/mime-types/index.js +63 -0
  1992. data/jasmine/node_modules/karma/node_modules/connect/node_modules/type-is/node_modules/mime-types/node_modules/mime-db/HISTORY.md +188 -0
  1993. data/jasmine/node_modules/karma/node_modules/connect/node_modules/type-is/node_modules/mime-types/node_modules/mime-db/LICENSE +22 -0
  1994. data/jasmine/node_modules/karma/node_modules/connect/node_modules/type-is/node_modules/mime-types/node_modules/mime-db/README.md +76 -0
  1995. data/jasmine/node_modules/karma/node_modules/connect/node_modules/type-is/node_modules/mime-types/node_modules/mime-db/db.json +6325 -0
  1996. data/jasmine/node_modules/karma/node_modules/connect/node_modules/type-is/node_modules/mime-types/node_modules/mime-db/index.js +11 -0
  1997. data/jasmine/node_modules/karma/node_modules/connect/node_modules/type-is/node_modules/mime-types/node_modules/mime-db/package.json +93 -0
  1998. data/jasmine/node_modules/karma/node_modules/connect/node_modules/type-is/node_modules/mime-types/package.json +83 -0
  1999. data/jasmine/node_modules/karma/node_modules/connect/node_modules/type-is/package.json +92 -0
  2000. data/jasmine/node_modules/karma/node_modules/connect/node_modules/vhost/HISTORY.md +20 -0
  2001. data/jasmine/node_modules/karma/node_modules/connect/node_modules/vhost/LICENSE +23 -0
  2002. data/jasmine/node_modules/karma/node_modules/connect/node_modules/vhost/README.md +128 -0
  2003. data/jasmine/node_modules/karma/node_modules/connect/node_modules/vhost/index.js +146 -0
  2004. data/jasmine/node_modules/karma/node_modules/connect/node_modules/vhost/package.json +93 -0
  2005. data/jasmine/node_modules/karma/node_modules/connect/package.json +120 -0
  2006. data/jasmine/node_modules/karma/node_modules/connect/support/docs.jade +38 -0
  2007. data/jasmine/node_modules/karma/node_modules/connect/support/docs.js +46 -0
  2008. data/jasmine/node_modules/karma/node_modules/di/LICENSE +20 -0
  2009. data/jasmine/node_modules/karma/node_modules/di/README.md +22 -0
  2010. data/jasmine/node_modules/karma/node_modules/di/lib/annotation.js +37 -0
  2011. data/jasmine/node_modules/karma/node_modules/di/lib/index.js +5 -0
  2012. data/jasmine/node_modules/karma/node_modules/di/lib/injector.js +131 -0
  2013. data/jasmine/node_modules/karma/node_modules/di/lib/module.js +24 -0
  2014. data/jasmine/node_modules/karma/node_modules/di/package.json +52 -0
  2015. data/jasmine/node_modules/karma/node_modules/glob/.npmignore +2 -0
  2016. data/jasmine/node_modules/karma/node_modules/glob/.travis.yml +3 -0
  2017. data/jasmine/node_modules/karma/node_modules/glob/LICENSE +27 -0
  2018. data/jasmine/node_modules/karma/node_modules/glob/README.md +250 -0
  2019. data/jasmine/node_modules/karma/node_modules/glob/examples/g.js +9 -0
  2020. data/jasmine/node_modules/karma/node_modules/glob/examples/usr-local.js +9 -0
  2021. data/jasmine/node_modules/karma/node_modules/glob/glob.js +728 -0
  2022. data/jasmine/node_modules/karma/node_modules/glob/node_modules/inherits/LICENSE +16 -0
  2023. data/jasmine/node_modules/karma/node_modules/glob/node_modules/inherits/README.md +42 -0
  2024. data/jasmine/node_modules/karma/node_modules/glob/node_modules/inherits/inherits.js +1 -0
  2025. data/jasmine/node_modules/karma/node_modules/glob/node_modules/inherits/inherits_browser.js +23 -0
  2026. data/jasmine/node_modules/karma/node_modules/glob/node_modules/inherits/package.json +48 -0
  2027. data/jasmine/node_modules/karma/node_modules/glob/node_modules/inherits/test.js +25 -0
  2028. data/jasmine/node_modules/karma/node_modules/glob/node_modules/minimatch/.npmignore +1 -0
  2029. data/jasmine/node_modules/karma/node_modules/glob/node_modules/minimatch/LICENSE +23 -0
  2030. data/jasmine/node_modules/karma/node_modules/glob/node_modules/minimatch/README.md +218 -0
  2031. data/jasmine/node_modules/karma/node_modules/glob/node_modules/minimatch/minimatch.js +1061 -0
  2032. data/jasmine/node_modules/karma/node_modules/glob/node_modules/minimatch/node_modules/lru-cache/.npmignore +1 -0
  2033. data/jasmine/node_modules/karma/node_modules/glob/node_modules/minimatch/node_modules/lru-cache/CONTRIBUTORS +14 -0
  2034. data/jasmine/node_modules/karma/node_modules/glob/node_modules/minimatch/node_modules/lru-cache/LICENSE +23 -0
  2035. data/jasmine/node_modules/karma/node_modules/glob/node_modules/minimatch/node_modules/lru-cache/README.md +109 -0
  2036. data/jasmine/node_modules/karma/node_modules/glob/node_modules/minimatch/node_modules/lru-cache/lib/lru-cache.js +274 -0
  2037. data/jasmine/node_modules/karma/node_modules/glob/node_modules/minimatch/node_modules/lru-cache/package.json +57 -0
  2038. data/jasmine/node_modules/karma/node_modules/glob/node_modules/minimatch/node_modules/lru-cache/test/basic.js +395 -0
  2039. data/jasmine/node_modules/karma/node_modules/glob/node_modules/minimatch/node_modules/lru-cache/test/foreach.js +121 -0
  2040. data/jasmine/node_modules/karma/node_modules/glob/node_modules/minimatch/node_modules/lru-cache/test/memory-leak.js +50 -0
  2041. data/jasmine/node_modules/karma/node_modules/glob/node_modules/minimatch/node_modules/sigmund/LICENSE +27 -0
  2042. data/jasmine/node_modules/karma/node_modules/glob/node_modules/minimatch/node_modules/sigmund/README.md +53 -0
  2043. data/jasmine/node_modules/karma/node_modules/glob/node_modules/minimatch/node_modules/sigmund/bench.js +283 -0
  2044. data/jasmine/node_modules/karma/node_modules/glob/node_modules/minimatch/node_modules/sigmund/package.json +58 -0
  2045. data/jasmine/node_modules/karma/node_modules/glob/node_modules/minimatch/node_modules/sigmund/sigmund.js +39 -0
  2046. data/jasmine/node_modules/karma/node_modules/glob/node_modules/minimatch/node_modules/sigmund/test/basic.js +24 -0
  2047. data/jasmine/node_modules/karma/node_modules/glob/node_modules/minimatch/package.json +56 -0
  2048. data/jasmine/node_modules/karma/node_modules/glob/node_modules/minimatch/test/basic.js +399 -0
  2049. data/jasmine/node_modules/karma/node_modules/glob/node_modules/minimatch/test/brace-expand.js +33 -0
  2050. data/jasmine/node_modules/karma/node_modules/glob/node_modules/minimatch/test/caching.js +14 -0
  2051. data/jasmine/node_modules/karma/node_modules/glob/node_modules/minimatch/test/defaults.js +274 -0
  2052. data/jasmine/node_modules/karma/node_modules/glob/node_modules/minimatch/test/extglob-ending-with-state-char.js +8 -0
  2053. data/jasmine/node_modules/karma/node_modules/glob/package.json +57 -0
  2054. data/jasmine/node_modules/karma/node_modules/glob/test/00-setup.js +176 -0
  2055. data/jasmine/node_modules/karma/node_modules/glob/test/bash-comparison.js +63 -0
  2056. data/jasmine/node_modules/karma/node_modules/glob/test/bash-results.json +351 -0
  2057. data/jasmine/node_modules/karma/node_modules/glob/test/cwd-test.js +55 -0
  2058. data/jasmine/node_modules/karma/node_modules/glob/test/globstar-match.js +19 -0
  2059. data/jasmine/node_modules/karma/node_modules/glob/test/mark.js +118 -0
  2060. data/jasmine/node_modules/karma/node_modules/glob/test/new-glob-optional-options.js +10 -0
  2061. data/jasmine/node_modules/karma/node_modules/glob/test/nocase-nomagic.js +113 -0
  2062. data/jasmine/node_modules/karma/node_modules/glob/test/pause-resume.js +73 -0
  2063. data/jasmine/node_modules/karma/node_modules/glob/test/readme-issue.js +36 -0
  2064. data/jasmine/node_modules/karma/node_modules/glob/test/root-nomount.js +39 -0
  2065. data/jasmine/node_modules/karma/node_modules/glob/test/root.js +46 -0
  2066. data/jasmine/node_modules/karma/node_modules/glob/test/stat.js +32 -0
  2067. data/jasmine/node_modules/karma/node_modules/glob/test/zz-cleanup.js +11 -0
  2068. data/jasmine/node_modules/karma/node_modules/graceful-fs/.npmignore +1 -0
  2069. data/jasmine/node_modules/karma/node_modules/graceful-fs/LICENSE +27 -0
  2070. data/jasmine/node_modules/karma/node_modules/graceful-fs/README.md +26 -0
  2071. data/jasmine/node_modules/karma/node_modules/graceful-fs/graceful-fs.js +160 -0
  2072. data/jasmine/node_modules/karma/node_modules/graceful-fs/package.json +64 -0
  2073. data/jasmine/node_modules/karma/node_modules/graceful-fs/polyfills.js +228 -0
  2074. data/jasmine/node_modules/karma/node_modules/graceful-fs/test/open.js +39 -0
  2075. data/jasmine/node_modules/karma/node_modules/graceful-fs/test/readdir-sort.js +21 -0
  2076. data/jasmine/node_modules/karma/node_modules/http-proxy/.npmignore +3 -0
  2077. data/jasmine/node_modules/karma/node_modules/http-proxy/.travis.yml +10 -0
  2078. data/jasmine/node_modules/karma/node_modules/http-proxy/CHANGELOG.md +97 -0
  2079. data/jasmine/node_modules/karma/node_modules/http-proxy/LICENSE +23 -0
  2080. data/jasmine/node_modules/karma/node_modules/http-proxy/README.md +646 -0
  2081. data/jasmine/node_modules/karma/node_modules/http-proxy/benchmark/websockets-throughput.js +88 -0
  2082. data/jasmine/node_modules/karma/node_modules/http-proxy/bin/node-http-proxy +113 -0
  2083. data/jasmine/node_modules/karma/node_modules/http-proxy/config.sample.json +10 -0
  2084. data/jasmine/node_modules/karma/node_modules/http-proxy/examples/balancer/simple-balancer-with-websockets.js +58 -0
  2085. data/jasmine/node_modules/karma/node_modules/http-proxy/examples/balancer/simple-balancer.js +36 -0
  2086. data/jasmine/node_modules/karma/node_modules/http-proxy/examples/helpers/store.js +64 -0
  2087. data/jasmine/node_modules/karma/node_modules/http-proxy/examples/http/basic-proxy.js +58 -0
  2088. data/jasmine/node_modules/karma/node_modules/http-proxy/examples/http/concurrent-proxy.js +66 -0
  2089. data/jasmine/node_modules/karma/node_modules/http-proxy/examples/http/custom-proxy-error.js +54 -0
  2090. data/jasmine/node_modules/karma/node_modules/http-proxy/examples/http/forward-proxy.js +63 -0
  2091. data/jasmine/node_modules/karma/node_modules/http-proxy/examples/http/latent-proxy.js +56 -0
  2092. data/jasmine/node_modules/karma/node_modules/http-proxy/examples/http/proxy-https-to-http.js +51 -0
  2093. data/jasmine/node_modules/karma/node_modules/http-proxy/examples/http/proxy-https-to-https.js +55 -0
  2094. data/jasmine/node_modules/karma/node_modules/http-proxy/examples/http/proxy-table.js +51 -0
  2095. data/jasmine/node_modules/karma/node_modules/http-proxy/examples/http/standalone-proxy.js +57 -0
  2096. data/jasmine/node_modules/karma/node_modules/http-proxy/examples/middleware/bodyDecoder-middleware.js +87 -0
  2097. data/jasmine/node_modules/karma/node_modules/http-proxy/examples/middleware/gzip-middleware-proxytable.js +54 -0
  2098. data/jasmine/node_modules/karma/node_modules/http-proxy/examples/middleware/gzip-middleware.js +50 -0
  2099. data/jasmine/node_modules/karma/node_modules/http-proxy/examples/middleware/jsonp-middleware.js +30 -0
  2100. data/jasmine/node_modules/karma/node_modules/http-proxy/examples/middleware/modifyResponse-middleware.js +57 -0
  2101. data/jasmine/node_modules/karma/node_modules/http-proxy/examples/middleware/url-middleware.js +58 -0
  2102. data/jasmine/node_modules/karma/node_modules/http-proxy/examples/middleware/url-middleware2.js +30 -0
  2103. data/jasmine/node_modules/karma/node_modules/http-proxy/examples/package.json +12 -0
  2104. data/jasmine/node_modules/karma/node_modules/http-proxy/examples/websocket/latent-websocket-proxy.js +92 -0
  2105. data/jasmine/node_modules/karma/node_modules/http-proxy/examples/websocket/standalone-websocket-proxy.js +87 -0
  2106. data/jasmine/node_modules/karma/node_modules/http-proxy/examples/websocket/websocket-proxy.js +69 -0
  2107. data/jasmine/node_modules/karma/node_modules/http-proxy/lib/node-http-proxy.js +397 -0
  2108. data/jasmine/node_modules/karma/node_modules/http-proxy/lib/node-http-proxy/http-proxy.js +983 -0
  2109. data/jasmine/node_modules/karma/node_modules/http-proxy/lib/node-http-proxy/proxy-table.js +282 -0
  2110. data/jasmine/node_modules/karma/node_modules/http-proxy/lib/node-http-proxy/routing-proxy.js +322 -0
  2111. data/jasmine/node_modules/karma/node_modules/http-proxy/node_modules/pkginfo/.npmignore +2 -0
  2112. data/jasmine/node_modules/karma/node_modules/http-proxy/node_modules/pkginfo/LICENSE +19 -0
  2113. data/jasmine/node_modules/karma/node_modules/http-proxy/node_modules/pkginfo/README.md +86 -0
  2114. data/jasmine/node_modules/karma/node_modules/http-proxy/node_modules/pkginfo/docs/docco.css +194 -0
  2115. data/jasmine/node_modules/karma/node_modules/http-proxy/node_modules/pkginfo/docs/pkginfo.html +101 -0
  2116. data/jasmine/node_modules/karma/node_modules/http-proxy/node_modules/pkginfo/examples/all-properties.js +19 -0
  2117. data/jasmine/node_modules/karma/node_modules/http-proxy/node_modules/pkginfo/examples/array-argument.js +20 -0
  2118. data/jasmine/node_modules/karma/node_modules/http-proxy/node_modules/pkginfo/examples/multiple-properties.js +19 -0
  2119. data/jasmine/node_modules/karma/node_modules/http-proxy/node_modules/pkginfo/examples/object-argument.js +22 -0
  2120. data/jasmine/node_modules/karma/node_modules/http-proxy/node_modules/pkginfo/examples/package.json +10 -0
  2121. data/jasmine/node_modules/karma/node_modules/http-proxy/node_modules/pkginfo/examples/single-property.js +19 -0
  2122. data/jasmine/node_modules/karma/node_modules/http-proxy/node_modules/pkginfo/examples/subdir/package.json +11 -0
  2123. data/jasmine/node_modules/karma/node_modules/http-proxy/node_modules/pkginfo/examples/target-dir.js +20 -0
  2124. data/jasmine/node_modules/karma/node_modules/http-proxy/node_modules/pkginfo/lib/pkginfo.js +136 -0
  2125. data/jasmine/node_modules/karma/node_modules/http-proxy/node_modules/pkginfo/package.json +50 -0
  2126. data/jasmine/node_modules/karma/node_modules/http-proxy/node_modules/pkginfo/test/pkginfo-test.js +83 -0
  2127. data/jasmine/node_modules/karma/node_modules/http-proxy/node_modules/utile/.npmignore +4 -0
  2128. data/jasmine/node_modules/karma/node_modules/http-proxy/node_modules/utile/.travis.yml +10 -0
  2129. data/jasmine/node_modules/karma/node_modules/http-proxy/node_modules/utile/CHANGELOG.md +16 -0
  2130. data/jasmine/node_modules/karma/node_modules/http-proxy/node_modules/utile/LICENSE +19 -0
  2131. data/jasmine/node_modules/karma/node_modules/http-proxy/node_modules/utile/README.md +87 -0
  2132. data/jasmine/node_modules/karma/node_modules/http-proxy/node_modules/utile/lib/args.js +46 -0
  2133. data/jasmine/node_modules/karma/node_modules/http-proxy/node_modules/utile/lib/base64.js +44 -0
  2134. data/jasmine/node_modules/karma/node_modules/http-proxy/node_modules/utile/lib/file.js +33 -0
  2135. data/jasmine/node_modules/karma/node_modules/http-proxy/node_modules/utile/lib/format.js +25 -0
  2136. data/jasmine/node_modules/karma/node_modules/http-proxy/node_modules/utile/lib/index.js +467 -0
  2137. data/jasmine/node_modules/karma/node_modules/http-proxy/node_modules/utile/node_modules/.bin/mkdirp +33 -0
  2138. data/jasmine/node_modules/karma/node_modules/http-proxy/node_modules/utile/node_modules/.bin/ncp +48 -0
  2139. data/jasmine/node_modules/karma/node_modules/http-proxy/node_modules/utile/node_modules/async/LICENSE +19 -0
  2140. data/jasmine/node_modules/karma/node_modules/http-proxy/node_modules/utile/node_modules/async/README.md +1425 -0
  2141. data/jasmine/node_modules/karma/node_modules/http-proxy/node_modules/utile/node_modules/async/component.json +11 -0
  2142. data/jasmine/node_modules/karma/node_modules/http-proxy/node_modules/utile/node_modules/async/lib/async.js +958 -0
  2143. data/jasmine/node_modules/karma/node_modules/http-proxy/node_modules/utile/node_modules/async/package.json +60 -0
  2144. data/jasmine/node_modules/karma/node_modules/http-proxy/node_modules/utile/node_modules/deep-equal/.travis.yml +4 -0
  2145. data/jasmine/node_modules/karma/node_modules/http-proxy/node_modules/utile/node_modules/deep-equal/LICENSE +18 -0
  2146. data/jasmine/node_modules/karma/node_modules/http-proxy/node_modules/utile/node_modules/deep-equal/example/cmp.js +11 -0
  2147. data/jasmine/node_modules/karma/node_modules/http-proxy/node_modules/utile/node_modules/deep-equal/index.js +94 -0
  2148. data/jasmine/node_modules/karma/node_modules/http-proxy/node_modules/utile/node_modules/deep-equal/lib/is_arguments.js +20 -0
  2149. data/jasmine/node_modules/karma/node_modules/http-proxy/node_modules/utile/node_modules/deep-equal/lib/keys.js +9 -0
  2150. data/jasmine/node_modules/karma/node_modules/http-proxy/node_modules/utile/node_modules/deep-equal/package.json +83 -0
  2151. data/jasmine/node_modules/karma/node_modules/http-proxy/node_modules/utile/node_modules/deep-equal/readme.markdown +61 -0
  2152. data/jasmine/node_modules/karma/node_modules/http-proxy/node_modules/utile/node_modules/deep-equal/test/cmp.js +89 -0
  2153. data/jasmine/node_modules/karma/node_modules/http-proxy/node_modules/utile/node_modules/i/.npmignore +3 -0
  2154. data/jasmine/node_modules/karma/node_modules/http-proxy/node_modules/utile/node_modules/i/.travis.yml +9 -0
  2155. data/jasmine/node_modules/karma/node_modules/http-proxy/node_modules/utile/node_modules/i/LICENSE +18 -0
  2156. data/jasmine/node_modules/karma/node_modules/http-proxy/node_modules/utile/node_modules/i/README.md +174 -0
  2157. data/jasmine/node_modules/karma/node_modules/http-proxy/node_modules/utile/node_modules/i/lib/defaults.js +63 -0
  2158. data/jasmine/node_modules/karma/node_modules/http-proxy/node_modules/utile/node_modules/i/lib/inflect.js +11 -0
  2159. data/jasmine/node_modules/karma/node_modules/http-proxy/node_modules/utile/node_modules/i/lib/inflections.js +116 -0
  2160. data/jasmine/node_modules/karma/node_modules/http-proxy/node_modules/utile/node_modules/i/lib/methods.js +233 -0
  2161. data/jasmine/node_modules/karma/node_modules/http-proxy/node_modules/utile/node_modules/i/lib/native.js +26 -0
  2162. data/jasmine/node_modules/karma/node_modules/http-proxy/node_modules/utile/node_modules/i/lib/util.js +136 -0
  2163. data/jasmine/node_modules/karma/node_modules/http-proxy/node_modules/utile/node_modules/i/package.json +78 -0
  2164. data/jasmine/node_modules/karma/node_modules/http-proxy/node_modules/utile/node_modules/i/test/inflector/cases.js +209 -0
  2165. data/jasmine/node_modules/karma/node_modules/http-proxy/node_modules/utile/node_modules/i/test/inflector/inflections-test.js +87 -0
  2166. data/jasmine/node_modules/karma/node_modules/http-proxy/node_modules/utile/node_modules/i/test/inflector/methods-test.js +342 -0
  2167. data/jasmine/node_modules/karma/node_modules/http-proxy/node_modules/utile/node_modules/i/test/utils/array-test.js +39 -0
  2168. data/jasmine/node_modules/karma/node_modules/http-proxy/node_modules/utile/node_modules/i/test/utils/string-test.js +88 -0
  2169. data/jasmine/node_modules/karma/node_modules/http-proxy/node_modules/utile/node_modules/mkdirp/.travis.yml +8 -0
  2170. data/jasmine/node_modules/karma/node_modules/http-proxy/node_modules/utile/node_modules/mkdirp/LICENSE +21 -0
  2171. data/jasmine/node_modules/karma/node_modules/http-proxy/node_modules/utile/node_modules/mkdirp/bin/cmd.js +33 -0
  2172. data/jasmine/node_modules/karma/node_modules/http-proxy/node_modules/utile/node_modules/mkdirp/bin/usage.txt +12 -0
  2173. data/jasmine/node_modules/karma/node_modules/http-proxy/node_modules/utile/node_modules/mkdirp/examples/pow.js +6 -0
  2174. data/jasmine/node_modules/karma/node_modules/http-proxy/node_modules/utile/node_modules/mkdirp/index.js +98 -0
  2175. data/jasmine/node_modules/karma/node_modules/http-proxy/node_modules/utile/node_modules/mkdirp/node_modules/minimist/.travis.yml +4 -0
  2176. data/jasmine/node_modules/karma/node_modules/http-proxy/node_modules/utile/node_modules/mkdirp/node_modules/minimist/LICENSE +18 -0
  2177. data/jasmine/node_modules/karma/node_modules/http-proxy/node_modules/utile/node_modules/mkdirp/node_modules/minimist/example/parse.js +2 -0
  2178. data/jasmine/node_modules/karma/node_modules/http-proxy/node_modules/utile/node_modules/mkdirp/node_modules/minimist/index.js +187 -0
  2179. data/jasmine/node_modules/karma/node_modules/http-proxy/node_modules/utile/node_modules/mkdirp/node_modules/minimist/package.json +67 -0
  2180. data/jasmine/node_modules/karma/node_modules/http-proxy/node_modules/utile/node_modules/mkdirp/node_modules/minimist/readme.markdown +73 -0
  2181. data/jasmine/node_modules/karma/node_modules/http-proxy/node_modules/utile/node_modules/mkdirp/node_modules/minimist/test/dash.js +24 -0
  2182. data/jasmine/node_modules/karma/node_modules/http-proxy/node_modules/utile/node_modules/mkdirp/node_modules/minimist/test/default_bool.js +20 -0
  2183. data/jasmine/node_modules/karma/node_modules/http-proxy/node_modules/utile/node_modules/mkdirp/node_modules/minimist/test/dotted.js +16 -0
  2184. data/jasmine/node_modules/karma/node_modules/http-proxy/node_modules/utile/node_modules/mkdirp/node_modules/minimist/test/long.js +31 -0
  2185. data/jasmine/node_modules/karma/node_modules/http-proxy/node_modules/utile/node_modules/mkdirp/node_modules/minimist/test/parse.js +318 -0
  2186. data/jasmine/node_modules/karma/node_modules/http-proxy/node_modules/utile/node_modules/mkdirp/node_modules/minimist/test/parse_modified.js +9 -0
  2187. data/jasmine/node_modules/karma/node_modules/http-proxy/node_modules/utile/node_modules/mkdirp/node_modules/minimist/test/short.js +67 -0
  2188. data/jasmine/node_modules/karma/node_modules/http-proxy/node_modules/utile/node_modules/mkdirp/node_modules/minimist/test/whitespace.js +8 -0
  2189. data/jasmine/node_modules/karma/node_modules/http-proxy/node_modules/utile/node_modules/mkdirp/package.json +59 -0
  2190. data/jasmine/node_modules/karma/node_modules/http-proxy/node_modules/utile/node_modules/mkdirp/readme.markdown +100 -0
  2191. data/jasmine/node_modules/karma/node_modules/http-proxy/node_modules/utile/node_modules/mkdirp/test/chmod.js +41 -0
  2192. data/jasmine/node_modules/karma/node_modules/http-proxy/node_modules/utile/node_modules/mkdirp/test/clobber.js +38 -0
  2193. data/jasmine/node_modules/karma/node_modules/http-proxy/node_modules/utile/node_modules/mkdirp/test/mkdirp.js +28 -0
  2194. data/jasmine/node_modules/karma/node_modules/http-proxy/node_modules/utile/node_modules/mkdirp/test/opts_fs.js +29 -0
  2195. data/jasmine/node_modules/karma/node_modules/http-proxy/node_modules/utile/node_modules/mkdirp/test/opts_fs_sync.js +27 -0
  2196. data/jasmine/node_modules/karma/node_modules/http-proxy/node_modules/utile/node_modules/mkdirp/test/perm.js +32 -0
  2197. data/jasmine/node_modules/karma/node_modules/http-proxy/node_modules/utile/node_modules/mkdirp/test/perm_sync.js +36 -0
  2198. data/jasmine/node_modules/karma/node_modules/http-proxy/node_modules/utile/node_modules/mkdirp/test/race.js +37 -0
  2199. data/jasmine/node_modules/karma/node_modules/http-proxy/node_modules/utile/node_modules/mkdirp/test/rel.js +32 -0
  2200. data/jasmine/node_modules/karma/node_modules/http-proxy/node_modules/utile/node_modules/mkdirp/test/return.js +25 -0
  2201. data/jasmine/node_modules/karma/node_modules/http-proxy/node_modules/utile/node_modules/mkdirp/test/return_sync.js +24 -0
  2202. data/jasmine/node_modules/karma/node_modules/http-proxy/node_modules/utile/node_modules/mkdirp/test/root.js +19 -0
  2203. data/jasmine/node_modules/karma/node_modules/http-proxy/node_modules/utile/node_modules/mkdirp/test/sync.js +32 -0
  2204. data/jasmine/node_modules/karma/node_modules/http-proxy/node_modules/utile/node_modules/mkdirp/test/umask.js +28 -0
  2205. data/jasmine/node_modules/karma/node_modules/http-proxy/node_modules/utile/node_modules/mkdirp/test/umask_sync.js +32 -0
  2206. data/jasmine/node_modules/karma/node_modules/http-proxy/node_modules/utile/node_modules/ncp/.npmignore +4 -0
  2207. data/jasmine/node_modules/karma/node_modules/http-proxy/node_modules/utile/node_modules/ncp/.travis.yml +7 -0
  2208. data/jasmine/node_modules/karma/node_modules/http-proxy/node_modules/utile/node_modules/ncp/LICENSE.md +21 -0
  2209. data/jasmine/node_modules/karma/node_modules/http-proxy/node_modules/utile/node_modules/ncp/README.md +52 -0
  2210. data/jasmine/node_modules/karma/node_modules/http-proxy/node_modules/utile/node_modules/ncp/bin/ncp +48 -0
  2211. data/jasmine/node_modules/karma/node_modules/http-proxy/node_modules/utile/node_modules/ncp/lib/ncp.js +222 -0
  2212. data/jasmine/node_modules/karma/node_modules/http-proxy/node_modules/utile/node_modules/ncp/package.json +53 -0
  2213. data/jasmine/node_modules/karma/node_modules/http-proxy/node_modules/utile/node_modules/ncp/test/fixtures/src/a +1 -0
  2214. data/jasmine/node_modules/karma/node_modules/http-proxy/node_modules/utile/node_modules/ncp/test/fixtures/src/b +1 -0
  2215. data/jasmine/node_modules/karma/node_modules/http-proxy/node_modules/utile/node_modules/ncp/test/fixtures/src/c +0 -0
  2216. data/jasmine/node_modules/karma/node_modules/http-proxy/node_modules/utile/node_modules/ncp/test/fixtures/src/d +0 -0
  2217. data/jasmine/node_modules/karma/node_modules/http-proxy/node_modules/utile/node_modules/ncp/test/fixtures/src/e +0 -0
  2218. data/jasmine/node_modules/karma/node_modules/http-proxy/node_modules/utile/node_modules/ncp/test/fixtures/src/f +0 -0
  2219. data/jasmine/node_modules/karma/node_modules/http-proxy/node_modules/utile/node_modules/ncp/test/fixtures/src/sub/a +1 -0
  2220. data/jasmine/node_modules/karma/node_modules/http-proxy/node_modules/utile/node_modules/ncp/test/fixtures/src/sub/b +0 -0
  2221. data/jasmine/node_modules/karma/node_modules/http-proxy/node_modules/utile/node_modules/ncp/test/ncp-test.js +86 -0
  2222. data/jasmine/node_modules/karma/node_modules/http-proxy/node_modules/utile/package.json +62 -0
  2223. data/jasmine/node_modules/karma/node_modules/http-proxy/node_modules/utile/test/file-test.js +31 -0
  2224. data/jasmine/node_modules/karma/node_modules/http-proxy/node_modules/utile/test/fixtures/read-json-file/config.json +9 -0
  2225. data/jasmine/node_modules/karma/node_modules/http-proxy/node_modules/utile/test/fixtures/require-directory/directory/index.js +2 -0
  2226. data/jasmine/node_modules/karma/node_modules/http-proxy/node_modules/utile/test/fixtures/require-directory/helloWorld.js +2 -0
  2227. data/jasmine/node_modules/karma/node_modules/http-proxy/node_modules/utile/test/format-test.js +31 -0
  2228. data/jasmine/node_modules/karma/node_modules/http-proxy/node_modules/utile/test/function-args-test.js +104 -0
  2229. data/jasmine/node_modules/karma/node_modules/http-proxy/node_modules/utile/test/helpers/macros.js +37 -0
  2230. data/jasmine/node_modules/karma/node_modules/http-proxy/node_modules/utile/test/random-string-test.js +39 -0
  2231. data/jasmine/node_modules/karma/node_modules/http-proxy/node_modules/utile/test/require-directory-test.js +35 -0
  2232. data/jasmine/node_modules/karma/node_modules/http-proxy/node_modules/utile/test/utile-test.js +126 -0
  2233. data/jasmine/node_modules/karma/node_modules/http-proxy/package.json +69 -0
  2234. data/jasmine/node_modules/karma/node_modules/http-proxy/test/core/README.md +10 -0
  2235. data/jasmine/node_modules/karma/node_modules/http-proxy/test/core/common.js +190 -0
  2236. data/jasmine/node_modules/karma/node_modules/http-proxy/test/core/pummel/test-http-upload-timeout.js +69 -0
  2237. data/jasmine/node_modules/karma/node_modules/http-proxy/test/core/run +90 -0
  2238. data/jasmine/node_modules/karma/node_modules/http-proxy/test/core/run-single +70 -0
  2239. data/jasmine/node_modules/karma/node_modules/http-proxy/test/core/simple/test-http-chunked.js +63 -0
  2240. data/jasmine/node_modules/karma/node_modules/http-proxy/test/core/simple/test-http-client-abort.js +80 -0
  2241. data/jasmine/node_modules/karma/node_modules/http-proxy/test/core/simple/test-http-client-abort2.js +41 -0
  2242. data/jasmine/node_modules/karma/node_modules/http-proxy/test/core/simple/test-http-client-upload-buf.js +74 -0
  2243. data/jasmine/node_modules/karma/node_modules/http-proxy/test/core/simple/test-http-client-upload.js +77 -0
  2244. data/jasmine/node_modules/karma/node_modules/http-proxy/test/core/simple/test-http-contentLength0.js +42 -0
  2245. data/jasmine/node_modules/karma/node_modules/http-proxy/test/core/simple/test-http-eof-on-connect.js +40 -0
  2246. data/jasmine/node_modules/karma/node_modules/http-proxy/test/core/simple/test-http-extra-response.js +86 -0
  2247. data/jasmine/node_modules/karma/node_modules/http-proxy/test/core/simple/test-http-head-request.js +56 -0
  2248. data/jasmine/node_modules/karma/node_modules/http-proxy/test/core/simple/test-http-head-response-has-no-body-end.js +61 -0
  2249. data/jasmine/node_modules/karma/node_modules/http-proxy/test/core/simple/test-http-head-response-has-no-body.js +58 -0
  2250. data/jasmine/node_modules/karma/node_modules/http-proxy/test/core/simple/test-http-host-headers.js +101 -0
  2251. data/jasmine/node_modules/karma/node_modules/http-proxy/test/core/simple/test-http-many-keep-alive-connections.js +68 -0
  2252. data/jasmine/node_modules/karma/node_modules/http-proxy/test/core/simple/test-http-multi-line-headers.js +59 -0
  2253. data/jasmine/node_modules/karma/node_modules/http-proxy/test/core/simple/test-http-proxy.js +109 -0
  2254. data/jasmine/node_modules/karma/node_modules/http-proxy/test/core/simple/test-http-response-close.js +55 -0
  2255. data/jasmine/node_modules/karma/node_modules/http-proxy/test/core/simple/test-http-server-multiheaders.js +59 -0
  2256. data/jasmine/node_modules/karma/node_modules/http-proxy/test/core/simple/test-http-set-cookies.js +84 -0
  2257. data/jasmine/node_modules/karma/node_modules/http-proxy/test/core/simple/test-http-status-code.js +69 -0
  2258. data/jasmine/node_modules/karma/node_modules/http-proxy/test/core/simple/test-http-upgrade-server2.js +72 -0
  2259. data/jasmine/node_modules/karma/node_modules/http-proxy/test/core/simple/test-http.js +108 -0
  2260. data/jasmine/node_modules/karma/node_modules/http-proxy/test/examples-test.js +26 -0
  2261. data/jasmine/node_modules/karma/node_modules/http-proxy/test/fixtures/agent2-cert.pem +13 -0
  2262. data/jasmine/node_modules/karma/node_modules/http-proxy/test/fixtures/agent2-csr.pem +10 -0
  2263. data/jasmine/node_modules/karma/node_modules/http-proxy/test/fixtures/agent2-key.pem +9 -0
  2264. data/jasmine/node_modules/karma/node_modules/http-proxy/test/fixtures/agent2.cnf +19 -0
  2265. data/jasmine/node_modules/karma/node_modules/http-proxy/test/helpers/http.js +182 -0
  2266. data/jasmine/node_modules/karma/node_modules/http-proxy/test/helpers/index.js +105 -0
  2267. data/jasmine/node_modules/karma/node_modules/http-proxy/test/helpers/ws.js +112 -0
  2268. data/jasmine/node_modules/karma/node_modules/http-proxy/test/http/http-test.js +102 -0
  2269. data/jasmine/node_modules/karma/node_modules/http-proxy/test/http/routing-table-test.js +107 -0
  2270. data/jasmine/node_modules/karma/node_modules/http-proxy/test/macros/examples.js +101 -0
  2271. data/jasmine/node_modules/karma/node_modules/http-proxy/test/macros/http.js +531 -0
  2272. data/jasmine/node_modules/karma/node_modules/http-proxy/test/macros/index.js +11 -0
  2273. data/jasmine/node_modules/karma/node_modules/http-proxy/test/macros/ws.js +232 -0
  2274. data/jasmine/node_modules/karma/node_modules/http-proxy/test/ws/routing-table-test.js +25 -0
  2275. data/jasmine/node_modules/karma/node_modules/http-proxy/test/ws/socket.io-test.js +20 -0
  2276. data/jasmine/node_modules/karma/node_modules/http-proxy/test/ws/ws-test.js +23 -0
  2277. data/jasmine/node_modules/karma/node_modules/lodash/LICENSE.txt +22 -0
  2278. data/jasmine/node_modules/karma/node_modules/lodash/README.md +145 -0
  2279. data/jasmine/node_modules/karma/node_modules/lodash/dist/lodash.compat.js +7158 -0
  2280. data/jasmine/node_modules/karma/node_modules/lodash/dist/lodash.compat.min.js +92 -0
  2281. data/jasmine/node_modules/karma/node_modules/lodash/dist/lodash.js +6786 -0
  2282. data/jasmine/node_modules/karma/node_modules/lodash/dist/lodash.min.js +87 -0
  2283. data/jasmine/node_modules/karma/node_modules/lodash/dist/lodash.underscore.js +4979 -0
  2284. data/jasmine/node_modules/karma/node_modules/lodash/dist/lodash.underscore.min.js +39 -0
  2285. data/jasmine/node_modules/karma/node_modules/lodash/lodash.js +7180 -0
  2286. data/jasmine/node_modules/karma/node_modules/lodash/package.json +136 -0
  2287. data/jasmine/node_modules/karma/node_modules/log4js/.bob.json +12 -0
  2288. data/jasmine/node_modules/karma/node_modules/log4js/.bob/lint/jshint.out +71 -0
  2289. data/jasmine/node_modules/karma/node_modules/log4js/.jshintrc +15 -0
  2290. data/jasmine/node_modules/karma/node_modules/log4js/.npmignore +2 -0
  2291. data/jasmine/node_modules/karma/node_modules/log4js/.travis.yml +5 -0
  2292. data/jasmine/node_modules/karma/node_modules/log4js/README.md +148 -0
  2293. data/jasmine/node_modules/karma/node_modules/log4js/examples/example-connect-logger.js +46 -0
  2294. data/jasmine/node_modules/karma/node_modules/log4js/examples/example-socket.js +45 -0
  2295. data/jasmine/node_modules/karma/node_modules/log4js/examples/example.js +60 -0
  2296. data/jasmine/node_modules/karma/node_modules/log4js/examples/flush-on-exit.js +27 -0
  2297. data/jasmine/node_modules/karma/node_modules/log4js/examples/fromreadme.js +19 -0
  2298. data/jasmine/node_modules/karma/node_modules/log4js/examples/log-appending.js +12 -0
  2299. data/jasmine/node_modules/karma/node_modules/log4js/examples/log-rolling.js +27 -0
  2300. data/jasmine/node_modules/karma/node_modules/log4js/examples/loggly-appender.js +24 -0
  2301. data/jasmine/node_modules/karma/node_modules/log4js/examples/logstashUDP.js +39 -0
  2302. data/jasmine/node_modules/karma/node_modules/log4js/examples/memory-test.js +37 -0
  2303. data/jasmine/node_modules/karma/node_modules/log4js/examples/missing-log-dir.js +11 -0
  2304. data/jasmine/node_modules/karma/node_modules/log4js/examples/patternLayout-tokens.js +21 -0
  2305. data/jasmine/node_modules/karma/node_modules/log4js/examples/smtp-appender.js +43 -0
  2306. data/jasmine/node_modules/karma/node_modules/log4js/lib/appenders/categoryFilter.js +20 -0
  2307. data/jasmine/node_modules/karma/node_modules/log4js/lib/appenders/clustered.js +138 -0
  2308. data/jasmine/node_modules/karma/node_modules/log4js/lib/appenders/console.js +21 -0
  2309. data/jasmine/node_modules/karma/node_modules/log4js/lib/appenders/dateFile.js +73 -0
  2310. data/jasmine/node_modules/karma/node_modules/log4js/lib/appenders/file.js +101 -0
  2311. data/jasmine/node_modules/karma/node_modules/log4js/lib/appenders/fileSync.js +189 -0
  2312. data/jasmine/node_modules/karma/node_modules/log4js/lib/appenders/gelf.js +144 -0
  2313. data/jasmine/node_modules/karma/node_modules/log4js/lib/appenders/logLevelFilter.js +23 -0
  2314. data/jasmine/node_modules/karma/node_modules/log4js/lib/appenders/loggly.js +44 -0
  2315. data/jasmine/node_modules/karma/node_modules/log4js/lib/appenders/logstashUDP.js +50 -0
  2316. data/jasmine/node_modules/karma/node_modules/log4js/lib/appenders/multiprocess.js +134 -0
  2317. data/jasmine/node_modules/karma/node_modules/log4js/lib/appenders/smtp.js +109 -0
  2318. data/jasmine/node_modules/karma/node_modules/log4js/lib/connect-logger.js +222 -0
  2319. data/jasmine/node_modules/karma/node_modules/log4js/lib/date_format.js +72 -0
  2320. data/jasmine/node_modules/karma/node_modules/log4js/lib/debug.js +15 -0
  2321. data/jasmine/node_modules/karma/node_modules/log4js/lib/layouts.js +342 -0
  2322. data/jasmine/node_modules/karma/node_modules/log4js/lib/levels.js +69 -0
  2323. data/jasmine/node_modules/karma/node_modules/log4js/lib/log4js.js +474 -0
  2324. data/jasmine/node_modules/karma/node_modules/log4js/lib/log4js.json +7 -0
  2325. data/jasmine/node_modules/karma/node_modules/log4js/lib/logger.js +102 -0
  2326. data/jasmine/node_modules/karma/node_modules/log4js/lib/streams/BaseRollingFileStream.js +94 -0
  2327. data/jasmine/node_modules/karma/node_modules/log4js/lib/streams/DateRollingFileStream.js +95 -0
  2328. data/jasmine/node_modules/karma/node_modules/log4js/lib/streams/RollingFileStream.js +118 -0
  2329. data/jasmine/node_modules/karma/node_modules/log4js/lib/streams/index.js +2 -0
  2330. data/jasmine/node_modules/karma/node_modules/log4js/node_modules/.bin/semver +133 -0
  2331. data/jasmine/node_modules/karma/node_modules/log4js/node_modules/async/LICENSE +19 -0
  2332. data/jasmine/node_modules/karma/node_modules/log4js/node_modules/async/README.md +1425 -0
  2333. data/jasmine/node_modules/karma/node_modules/log4js/node_modules/async/component.json +11 -0
  2334. data/jasmine/node_modules/karma/node_modules/log4js/node_modules/async/lib/async.js +958 -0
  2335. data/jasmine/node_modules/karma/node_modules/log4js/node_modules/async/package.json +58 -0
  2336. data/jasmine/node_modules/karma/node_modules/log4js/node_modules/readable-stream/.npmignore +5 -0
  2337. data/jasmine/node_modules/karma/node_modules/log4js/node_modules/readable-stream/LICENSE +18 -0
  2338. data/jasmine/node_modules/karma/node_modules/log4js/node_modules/readable-stream/README.md +15 -0
  2339. data/jasmine/node_modules/karma/node_modules/log4js/node_modules/readable-stream/duplex.js +1 -0
  2340. data/jasmine/node_modules/karma/node_modules/log4js/node_modules/readable-stream/lib/_stream_duplex.js +89 -0
  2341. data/jasmine/node_modules/karma/node_modules/log4js/node_modules/readable-stream/lib/_stream_passthrough.js +46 -0
  2342. data/jasmine/node_modules/karma/node_modules/log4js/node_modules/readable-stream/lib/_stream_readable.js +982 -0
  2343. data/jasmine/node_modules/karma/node_modules/log4js/node_modules/readable-stream/lib/_stream_transform.js +210 -0
  2344. data/jasmine/node_modules/karma/node_modules/log4js/node_modules/readable-stream/lib/_stream_writable.js +386 -0
  2345. data/jasmine/node_modules/karma/node_modules/log4js/node_modules/readable-stream/node_modules/core-util-is/README.md +3 -0
  2346. data/jasmine/node_modules/karma/node_modules/log4js/node_modules/readable-stream/node_modules/core-util-is/float.patch +604 -0
  2347. data/jasmine/node_modules/karma/node_modules/log4js/node_modules/readable-stream/node_modules/core-util-is/lib/util.js +107 -0
  2348. data/jasmine/node_modules/karma/node_modules/log4js/node_modules/readable-stream/node_modules/core-util-is/package.json +53 -0
  2349. data/jasmine/node_modules/karma/node_modules/log4js/node_modules/readable-stream/node_modules/core-util-is/util.js +106 -0
  2350. data/jasmine/node_modules/karma/node_modules/log4js/node_modules/readable-stream/node_modules/inherits/LICENSE +16 -0
  2351. data/jasmine/node_modules/karma/node_modules/log4js/node_modules/readable-stream/node_modules/inherits/README.md +42 -0
  2352. data/jasmine/node_modules/karma/node_modules/log4js/node_modules/readable-stream/node_modules/inherits/inherits.js +1 -0
  2353. data/jasmine/node_modules/karma/node_modules/log4js/node_modules/readable-stream/node_modules/inherits/inherits_browser.js +23 -0
  2354. data/jasmine/node_modules/karma/node_modules/log4js/node_modules/readable-stream/node_modules/inherits/package.json +50 -0
  2355. data/jasmine/node_modules/karma/node_modules/log4js/node_modules/readable-stream/node_modules/inherits/test.js +25 -0
  2356. data/jasmine/node_modules/karma/node_modules/log4js/node_modules/readable-stream/node_modules/isarray/README.md +54 -0
  2357. data/jasmine/node_modules/karma/node_modules/log4js/node_modules/readable-stream/node_modules/isarray/build/build.js +209 -0
  2358. data/jasmine/node_modules/karma/node_modules/log4js/node_modules/readable-stream/node_modules/isarray/component.json +19 -0
  2359. data/jasmine/node_modules/karma/node_modules/log4js/node_modules/readable-stream/node_modules/isarray/index.js +3 -0
  2360. data/jasmine/node_modules/karma/node_modules/log4js/node_modules/readable-stream/node_modules/isarray/package.json +49 -0
  2361. data/jasmine/node_modules/karma/node_modules/log4js/node_modules/readable-stream/node_modules/string_decoder/.npmignore +2 -0
  2362. data/jasmine/node_modules/karma/node_modules/log4js/node_modules/readable-stream/node_modules/string_decoder/LICENSE +20 -0
  2363. data/jasmine/node_modules/karma/node_modules/log4js/node_modules/readable-stream/node_modules/string_decoder/README.md +7 -0
  2364. data/jasmine/node_modules/karma/node_modules/log4js/node_modules/readable-stream/node_modules/string_decoder/index.js +221 -0
  2365. data/jasmine/node_modules/karma/node_modules/log4js/node_modules/readable-stream/node_modules/string_decoder/package.json +53 -0
  2366. data/jasmine/node_modules/karma/node_modules/log4js/node_modules/readable-stream/package.json +69 -0
  2367. data/jasmine/node_modules/karma/node_modules/log4js/node_modules/readable-stream/passthrough.js +1 -0
  2368. data/jasmine/node_modules/karma/node_modules/log4js/node_modules/readable-stream/readable.js +8 -0
  2369. data/jasmine/node_modules/karma/node_modules/log4js/node_modules/readable-stream/transform.js +1 -0
  2370. data/jasmine/node_modules/karma/node_modules/log4js/node_modules/readable-stream/writable.js +1 -0
  2371. data/jasmine/node_modules/karma/node_modules/log4js/node_modules/semver/.npmignore +1 -0
  2372. data/jasmine/node_modules/karma/node_modules/log4js/node_modules/semver/LICENSE +15 -0
  2373. data/jasmine/node_modules/karma/node_modules/log4js/node_modules/semver/Makefile +24 -0
  2374. data/jasmine/node_modules/karma/node_modules/log4js/node_modules/semver/README.md +303 -0
  2375. data/jasmine/node_modules/karma/node_modules/log4js/node_modules/semver/bin/semver +133 -0
  2376. data/jasmine/node_modules/karma/node_modules/log4js/node_modules/semver/foot.js.txt +6 -0
  2377. data/jasmine/node_modules/karma/node_modules/log4js/node_modules/semver/head.js.txt +2 -0
  2378. data/jasmine/node_modules/karma/node_modules/log4js/node_modules/semver/package.json +54 -0
  2379. data/jasmine/node_modules/karma/node_modules/log4js/node_modules/semver/semver.browser.js +1198 -0
  2380. data/jasmine/node_modules/karma/node_modules/log4js/node_modules/semver/semver.browser.js.gz +0 -0
  2381. data/jasmine/node_modules/karma/node_modules/log4js/node_modules/semver/semver.js +1202 -0
  2382. data/jasmine/node_modules/karma/node_modules/log4js/node_modules/semver/semver.min.js +1 -0
  2383. data/jasmine/node_modules/karma/node_modules/log4js/node_modules/semver/semver.min.js.gz +0 -0
  2384. data/jasmine/node_modules/karma/node_modules/log4js/node_modules/semver/test/amd.js +15 -0
  2385. data/jasmine/node_modules/karma/node_modules/log4js/node_modules/semver/test/big-numbers.js +31 -0
  2386. data/jasmine/node_modules/karma/node_modules/log4js/node_modules/semver/test/clean.js +29 -0
  2387. data/jasmine/node_modules/karma/node_modules/log4js/node_modules/semver/test/gtr.js +173 -0
  2388. data/jasmine/node_modules/karma/node_modules/log4js/node_modules/semver/test/index.js +684 -0
  2389. data/jasmine/node_modules/karma/node_modules/log4js/node_modules/semver/test/ltr.js +181 -0
  2390. data/jasmine/node_modules/karma/node_modules/log4js/node_modules/semver/test/major-minor-patch.js +72 -0
  2391. data/jasmine/node_modules/karma/node_modules/log4js/node_modules/semver/test/no-module.js +19 -0
  2392. data/jasmine/node_modules/karma/node_modules/log4js/node_modules/underscore/LICENSE +23 -0
  2393. data/jasmine/node_modules/karma/node_modules/log4js/node_modules/underscore/README.md +22 -0
  2394. data/jasmine/node_modules/karma/node_modules/log4js/node_modules/underscore/package.json +69 -0
  2395. data/jasmine/node_modules/karma/node_modules/log4js/node_modules/underscore/underscore-min.js +6 -0
  2396. data/jasmine/node_modules/karma/node_modules/log4js/node_modules/underscore/underscore-min.map +1 -0
  2397. data/jasmine/node_modules/karma/node_modules/log4js/node_modules/underscore/underscore.js +1536 -0
  2398. data/jasmine/node_modules/karma/node_modules/log4js/package.json +69 -0
  2399. data/jasmine/node_modules/karma/node_modules/log4js/test/categoryFilter-test.js +84 -0
  2400. data/jasmine/node_modules/karma/node_modules/log4js/test/clusteredAppender-test.js +128 -0
  2401. data/jasmine/node_modules/karma/node_modules/log4js/test/configuration-test.js +149 -0
  2402. data/jasmine/node_modules/karma/node_modules/log4js/test/configureNoLevels-test.js +173 -0
  2403. data/jasmine/node_modules/karma/node_modules/log4js/test/connect-logger-test.js +295 -0
  2404. data/jasmine/node_modules/karma/node_modules/log4js/test/consoleAppender-test.js +33 -0
  2405. data/jasmine/node_modules/karma/node_modules/log4js/test/dateFileAppender-test.js +223 -0
  2406. data/jasmine/node_modules/karma/node_modules/log4js/test/date_format-test.js +58 -0
  2407. data/jasmine/node_modules/karma/node_modules/log4js/test/debug-test.js +72 -0
  2408. data/jasmine/node_modules/karma/node_modules/log4js/test/fa-maxFileSize-with-backups-compressed-test.log.1.gz +0 -0
  2409. data/jasmine/node_modules/karma/node_modules/log4js/test/fa-maxFileSize-with-backups-compressed-test.log.2.gz +0 -0
  2410. data/jasmine/node_modules/karma/node_modules/log4js/test/fileAppender-test.js +419 -0
  2411. data/jasmine/node_modules/karma/node_modules/log4js/test/fileSyncAppender-test.js +182 -0
  2412. data/jasmine/node_modules/karma/node_modules/log4js/test/gelfAppender-test.js +257 -0
  2413. data/jasmine/node_modules/karma/node_modules/log4js/test/global-log-level-test.js +121 -0
  2414. data/jasmine/node_modules/karma/node_modules/log4js/test/layouts-test.js +304 -0
  2415. data/jasmine/node_modules/karma/node_modules/log4js/test/levels-test.js +462 -0
  2416. data/jasmine/node_modules/karma/node_modules/log4js/test/log-abspath-test.js +77 -0
  2417. data/jasmine/node_modules/karma/node_modules/log4js/test/log4js.json +16 -0
  2418. data/jasmine/node_modules/karma/node_modules/log4js/test/logLevelFilter-test.js +93 -0
  2419. data/jasmine/node_modules/karma/node_modules/log4js/test/logger-test.js +81 -0
  2420. data/jasmine/node_modules/karma/node_modules/log4js/test/logging-test.js +630 -0
  2421. data/jasmine/node_modules/karma/node_modules/log4js/test/logglyAppender-test.js +82 -0
  2422. data/jasmine/node_modules/karma/node_modules/log4js/test/logstashUDP-test.js +106 -0
  2423. data/jasmine/node_modules/karma/node_modules/log4js/test/multiprocess-test.js +311 -0
  2424. data/jasmine/node_modules/karma/node_modules/log4js/test/nolog-test.js +297 -0
  2425. data/jasmine/node_modules/karma/node_modules/log4js/test/reloadConfiguration-test.js +340 -0
  2426. data/jasmine/node_modules/karma/node_modules/log4js/test/setLevel-asymmetry-test.js +100 -0
  2427. data/jasmine/node_modules/karma/node_modules/log4js/test/smtpAppender-test.js +226 -0
  2428. data/jasmine/node_modules/karma/node_modules/log4js/test/streams/BaseRollingFileStream-test.js +93 -0
  2429. data/jasmine/node_modules/karma/node_modules/log4js/test/streams/DateRollingFileStream-test.js +227 -0
  2430. data/jasmine/node_modules/karma/node_modules/log4js/test/streams/rollingFileStream-test.js +210 -0
  2431. data/jasmine/node_modules/karma/node_modules/log4js/test/streams/test-rolling-file-stream +0 -0
  2432. data/jasmine/node_modules/karma/node_modules/log4js/test/streams/test-rolling-file-stream-write-less +1 -0
  2433. data/jasmine/node_modules/karma/node_modules/log4js/test/streams/test-rolling-file-stream-write-more +2 -0
  2434. data/jasmine/node_modules/karma/node_modules/log4js/test/streams/test-rolling-file-stream-write-more.1 +5 -0
  2435. data/jasmine/node_modules/karma/node_modules/log4js/test/streams/test-rolling-stream-with-existing-files +5 -0
  2436. data/jasmine/node_modules/karma/node_modules/log4js/test/streams/test-rolling-stream-with-existing-files.0 +1 -0
  2437. data/jasmine/node_modules/karma/node_modules/log4js/test/streams/test-rolling-stream-with-existing-files.1 +5 -0
  2438. data/jasmine/node_modules/karma/node_modules/log4js/test/streams/test-rolling-stream-with-existing-files.11 +1 -0
  2439. data/jasmine/node_modules/karma/node_modules/log4js/test/streams/test-rolling-stream-with-existing-files.2 +1 -0
  2440. data/jasmine/node_modules/karma/node_modules/log4js/test/streams/test-rolling-stream-with-existing-files.20 +1 -0
  2441. data/jasmine/node_modules/karma/node_modules/log4js/test/streams/test-rolling-stream-with-existing-files.3 +1 -0
  2442. data/jasmine/node_modules/karma/node_modules/log4js/test/streams/test-rolling-stream-with-existing-files.4 +5 -0
  2443. data/jasmine/node_modules/karma/node_modules/log4js/test/streams/test-rolling-stream-with-existing-files.5 +1 -0
  2444. data/jasmine/node_modules/karma/node_modules/log4js/test/subcategories-test.js +86 -0
  2445. data/jasmine/node_modules/karma/node_modules/log4js/test/with-categoryFilter.json +23 -0
  2446. data/jasmine/node_modules/karma/node_modules/log4js/test/with-dateFile.json +17 -0
  2447. data/jasmine/node_modules/karma/node_modules/log4js/test/with-log-rolling.json +10 -0
  2448. data/jasmine/node_modules/karma/node_modules/log4js/test/with-logLevelFilter.json +41 -0
  2449. data/jasmine/node_modules/karma/node_modules/mime/LICENSE +19 -0
  2450. data/jasmine/node_modules/karma/node_modules/mime/README.md +66 -0
  2451. data/jasmine/node_modules/karma/node_modules/mime/mime.js +114 -0
  2452. data/jasmine/node_modules/karma/node_modules/mime/package.json +55 -0
  2453. data/jasmine/node_modules/karma/node_modules/mime/test.js +84 -0
  2454. data/jasmine/node_modules/karma/node_modules/mime/types/mime.types +1588 -0
  2455. data/jasmine/node_modules/karma/node_modules/mime/types/node.types +77 -0
  2456. data/jasmine/node_modules/karma/node_modules/minimatch/.npmignore +1 -0
  2457. data/jasmine/node_modules/karma/node_modules/minimatch/LICENSE +23 -0
  2458. data/jasmine/node_modules/karma/node_modules/minimatch/README.md +218 -0
  2459. data/jasmine/node_modules/karma/node_modules/minimatch/minimatch.js +1055 -0
  2460. data/jasmine/node_modules/karma/node_modules/minimatch/node_modules/lru-cache/.npmignore +1 -0
  2461. data/jasmine/node_modules/karma/node_modules/minimatch/node_modules/lru-cache/CONTRIBUTORS +14 -0
  2462. data/jasmine/node_modules/karma/node_modules/minimatch/node_modules/lru-cache/LICENSE +23 -0
  2463. data/jasmine/node_modules/karma/node_modules/minimatch/node_modules/lru-cache/README.md +109 -0
  2464. data/jasmine/node_modules/karma/node_modules/minimatch/node_modules/lru-cache/lib/lru-cache.js +274 -0
  2465. data/jasmine/node_modules/karma/node_modules/minimatch/node_modules/lru-cache/package.json +56 -0
  2466. data/jasmine/node_modules/karma/node_modules/minimatch/node_modules/lru-cache/test/basic.js +395 -0
  2467. data/jasmine/node_modules/karma/node_modules/minimatch/node_modules/lru-cache/test/foreach.js +121 -0
  2468. data/jasmine/node_modules/karma/node_modules/minimatch/node_modules/lru-cache/test/memory-leak.js +50 -0
  2469. data/jasmine/node_modules/karma/node_modules/minimatch/node_modules/sigmund/LICENSE +27 -0
  2470. data/jasmine/node_modules/karma/node_modules/minimatch/node_modules/sigmund/README.md +53 -0
  2471. data/jasmine/node_modules/karma/node_modules/minimatch/node_modules/sigmund/bench.js +283 -0
  2472. data/jasmine/node_modules/karma/node_modules/minimatch/node_modules/sigmund/package.json +54 -0
  2473. data/jasmine/node_modules/karma/node_modules/minimatch/node_modules/sigmund/sigmund.js +39 -0
  2474. data/jasmine/node_modules/karma/node_modules/minimatch/node_modules/sigmund/test/basic.js +24 -0
  2475. data/jasmine/node_modules/karma/node_modules/minimatch/package.json +56 -0
  2476. data/jasmine/node_modules/karma/node_modules/minimatch/test/basic.js +399 -0
  2477. data/jasmine/node_modules/karma/node_modules/minimatch/test/brace-expand.js +33 -0
  2478. data/jasmine/node_modules/karma/node_modules/minimatch/test/caching.js +14 -0
  2479. data/jasmine/node_modules/karma/node_modules/minimatch/test/defaults.js +274 -0
  2480. data/jasmine/node_modules/karma/node_modules/minimatch/test/extglob-ending-with-state-char.js +8 -0
  2481. data/jasmine/node_modules/karma/node_modules/optimist/.travis.yml +4 -0
  2482. data/jasmine/node_modules/karma/node_modules/optimist/LICENSE +21 -0
  2483. data/jasmine/node_modules/karma/node_modules/optimist/example/bool.js +10 -0
  2484. data/jasmine/node_modules/karma/node_modules/optimist/example/boolean_double.js +7 -0
  2485. data/jasmine/node_modules/karma/node_modules/optimist/example/boolean_single.js +7 -0
  2486. data/jasmine/node_modules/karma/node_modules/optimist/example/default_hash.js +8 -0
  2487. data/jasmine/node_modules/karma/node_modules/optimist/example/default_singles.js +7 -0
  2488. data/jasmine/node_modules/karma/node_modules/optimist/example/divide.js +8 -0
  2489. data/jasmine/node_modules/karma/node_modules/optimist/example/line_count.js +20 -0
  2490. data/jasmine/node_modules/karma/node_modules/optimist/example/line_count_options.js +29 -0
  2491. data/jasmine/node_modules/karma/node_modules/optimist/example/line_count_wrap.js +29 -0
  2492. data/jasmine/node_modules/karma/node_modules/optimist/example/nonopt.js +4 -0
  2493. data/jasmine/node_modules/karma/node_modules/optimist/example/reflect.js +2 -0
  2494. data/jasmine/node_modules/karma/node_modules/optimist/example/short.js +3 -0
  2495. data/jasmine/node_modules/karma/node_modules/optimist/example/string.js +11 -0
  2496. data/jasmine/node_modules/karma/node_modules/optimist/example/usage-options.js +19 -0
  2497. data/jasmine/node_modules/karma/node_modules/optimist/example/xup.js +10 -0
  2498. data/jasmine/node_modules/karma/node_modules/optimist/index.js +343 -0
  2499. data/jasmine/node_modules/karma/node_modules/optimist/node_modules/minimist/.travis.yml +4 -0
  2500. data/jasmine/node_modules/karma/node_modules/optimist/node_modules/minimist/LICENSE +18 -0
  2501. data/jasmine/node_modules/karma/node_modules/optimist/node_modules/minimist/example/parse.js +2 -0
  2502. data/jasmine/node_modules/karma/node_modules/optimist/node_modules/minimist/index.js +187 -0
  2503. data/jasmine/node_modules/karma/node_modules/optimist/node_modules/minimist/package.json +66 -0
  2504. data/jasmine/node_modules/karma/node_modules/optimist/node_modules/minimist/readme.markdown +73 -0
  2505. data/jasmine/node_modules/karma/node_modules/optimist/node_modules/minimist/test/bool.js +119 -0
  2506. data/jasmine/node_modules/karma/node_modules/optimist/node_modules/minimist/test/dash.js +24 -0
  2507. data/jasmine/node_modules/karma/node_modules/optimist/node_modules/minimist/test/default_bool.js +20 -0
  2508. data/jasmine/node_modules/karma/node_modules/optimist/node_modules/minimist/test/dotted.js +22 -0
  2509. data/jasmine/node_modules/karma/node_modules/optimist/node_modules/minimist/test/long.js +31 -0
  2510. data/jasmine/node_modules/karma/node_modules/optimist/node_modules/minimist/test/num.js +36 -0
  2511. data/jasmine/node_modules/karma/node_modules/optimist/node_modules/minimist/test/parse.js +197 -0
  2512. data/jasmine/node_modules/karma/node_modules/optimist/node_modules/minimist/test/parse_modified.js +9 -0
  2513. data/jasmine/node_modules/karma/node_modules/optimist/node_modules/minimist/test/short.js +67 -0
  2514. data/jasmine/node_modules/karma/node_modules/optimist/node_modules/minimist/test/whitespace.js +8 -0
  2515. data/jasmine/node_modules/karma/node_modules/optimist/node_modules/wordwrap/LICENSE +18 -0
  2516. data/jasmine/node_modules/karma/node_modules/optimist/node_modules/wordwrap/README.markdown +70 -0
  2517. data/jasmine/node_modules/karma/node_modules/optimist/node_modules/wordwrap/example/center.js +10 -0
  2518. data/jasmine/node_modules/karma/node_modules/optimist/node_modules/wordwrap/example/meat.js +3 -0
  2519. data/jasmine/node_modules/karma/node_modules/optimist/node_modules/wordwrap/index.js +76 -0
  2520. data/jasmine/node_modules/karma/node_modules/optimist/node_modules/wordwrap/package.json +62 -0
  2521. data/jasmine/node_modules/karma/node_modules/optimist/node_modules/wordwrap/test/break.js +30 -0
  2522. data/jasmine/node_modules/karma/node_modules/optimist/node_modules/wordwrap/test/idleness.txt +63 -0
  2523. data/jasmine/node_modules/karma/node_modules/optimist/node_modules/wordwrap/test/wrap.js +31 -0
  2524. data/jasmine/node_modules/karma/node_modules/optimist/package.json +63 -0
  2525. data/jasmine/node_modules/karma/node_modules/optimist/readme.markdown +513 -0
  2526. data/jasmine/node_modules/karma/node_modules/optimist/test/_.js +71 -0
  2527. data/jasmine/node_modules/karma/node_modules/optimist/test/_/argv.js +2 -0
  2528. data/jasmine/node_modules/karma/node_modules/optimist/test/_/bin.js +3 -0
  2529. data/jasmine/node_modules/karma/node_modules/optimist/test/dash.js +31 -0
  2530. data/jasmine/node_modules/karma/node_modules/optimist/test/parse.js +446 -0
  2531. data/jasmine/node_modules/karma/node_modules/optimist/test/parse_modified.js +14 -0
  2532. data/jasmine/node_modules/karma/node_modules/optimist/test/short.js +16 -0
  2533. data/jasmine/node_modules/karma/node_modules/optimist/test/usage.js +292 -0
  2534. data/jasmine/node_modules/karma/node_modules/optimist/test/whitespace.js +8 -0
  2535. data/jasmine/node_modules/karma/node_modules/q/CONTRIBUTING.md +40 -0
  2536. data/jasmine/node_modules/karma/node_modules/q/LICENSE +19 -0
  2537. data/jasmine/node_modules/karma/node_modules/q/README.md +813 -0
  2538. data/jasmine/node_modules/karma/node_modules/q/benchmark/compare-with-callbacks.js +71 -0
  2539. data/jasmine/node_modules/karma/node_modules/q/benchmark/scenarios.js +36 -0
  2540. data/jasmine/node_modules/karma/node_modules/q/package.json +112 -0
  2541. data/jasmine/node_modules/karma/node_modules/q/q.js +1937 -0
  2542. data/jasmine/node_modules/karma/node_modules/q/queue.js +35 -0
  2543. data/jasmine/node_modules/karma/node_modules/rimraf/AUTHORS +6 -0
  2544. data/jasmine/node_modules/karma/node_modules/rimraf/LICENSE +23 -0
  2545. data/jasmine/node_modules/karma/node_modules/rimraf/README.md +30 -0
  2546. data/jasmine/node_modules/karma/node_modules/rimraf/bin.js +33 -0
  2547. data/jasmine/node_modules/karma/node_modules/rimraf/package.json +72 -0
  2548. data/jasmine/node_modules/karma/node_modules/rimraf/rimraf.js +248 -0
  2549. data/jasmine/node_modules/karma/node_modules/rimraf/test/run.sh +16 -0
  2550. data/jasmine/node_modules/karma/node_modules/rimraf/test/setup.sh +47 -0
  2551. data/jasmine/node_modules/karma/node_modules/rimraf/test/test-async.js +5 -0
  2552. data/jasmine/node_modules/karma/node_modules/rimraf/test/test-sync.js +3 -0
  2553. data/jasmine/node_modules/karma/node_modules/socket.io/.npmignore +3 -0
  2554. data/jasmine/node_modules/karma/node_modules/socket.io/.travis.yml +6 -0
  2555. data/jasmine/node_modules/karma/node_modules/socket.io/History.md +325 -0
  2556. data/jasmine/node_modules/karma/node_modules/socket.io/LICENSE +22 -0
  2557. data/jasmine/node_modules/karma/node_modules/socket.io/Makefile +31 -0
  2558. data/jasmine/node_modules/karma/node_modules/socket.io/Readme.md +364 -0
  2559. data/jasmine/node_modules/karma/node_modules/socket.io/benchmarks/decode.bench.js +64 -0
  2560. data/jasmine/node_modules/karma/node_modules/socket.io/benchmarks/encode.bench.js +90 -0
  2561. data/jasmine/node_modules/karma/node_modules/socket.io/benchmarks/runner.js +55 -0
  2562. data/jasmine/node_modules/karma/node_modules/socket.io/index.js +8 -0
  2563. data/jasmine/node_modules/karma/node_modules/socket.io/lib/logger.js +97 -0
  2564. data/jasmine/node_modules/karma/node_modules/socket.io/lib/manager.js +1027 -0
  2565. data/jasmine/node_modules/karma/node_modules/socket.io/lib/namespace.js +355 -0
  2566. data/jasmine/node_modules/karma/node_modules/socket.io/lib/parser.js +249 -0
  2567. data/jasmine/node_modules/karma/node_modules/socket.io/lib/socket.io.js +143 -0
  2568. data/jasmine/node_modules/karma/node_modules/socket.io/lib/socket.js +369 -0
  2569. data/jasmine/node_modules/karma/node_modules/socket.io/lib/static.js +395 -0
  2570. data/jasmine/node_modules/karma/node_modules/socket.io/lib/store.js +98 -0
  2571. data/jasmine/node_modules/karma/node_modules/socket.io/lib/stores/memory.js +143 -0
  2572. data/jasmine/node_modules/karma/node_modules/socket.io/lib/stores/redis.js +269 -0
  2573. data/jasmine/node_modules/karma/node_modules/socket.io/lib/transport.js +534 -0
  2574. data/jasmine/node_modules/karma/node_modules/socket.io/lib/transports/flashsocket.js +129 -0
  2575. data/jasmine/node_modules/karma/node_modules/socket.io/lib/transports/htmlfile.js +83 -0
  2576. data/jasmine/node_modules/karma/node_modules/socket.io/lib/transports/http-polling.js +147 -0
  2577. data/jasmine/node_modules/karma/node_modules/socket.io/lib/transports/http.js +121 -0
  2578. data/jasmine/node_modules/karma/node_modules/socket.io/lib/transports/index.js +12 -0
  2579. data/jasmine/node_modules/karma/node_modules/socket.io/lib/transports/jsonp-polling.js +97 -0
  2580. data/jasmine/node_modules/karma/node_modules/socket.io/lib/transports/websocket.js +36 -0
  2581. data/jasmine/node_modules/karma/node_modules/socket.io/lib/transports/websocket/default.js +362 -0
  2582. data/jasmine/node_modules/karma/node_modules/socket.io/lib/transports/websocket/hybi-07-12.js +622 -0
  2583. data/jasmine/node_modules/karma/node_modules/socket.io/lib/transports/websocket/hybi-16.js +622 -0
  2584. data/jasmine/node_modules/karma/node_modules/socket.io/lib/transports/websocket/index.js +11 -0
  2585. data/jasmine/node_modules/karma/node_modules/socket.io/lib/transports/xhr-polling.js +69 -0
  2586. data/jasmine/node_modules/karma/node_modules/socket.io/lib/util.js +50 -0
  2587. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/base64id/.npmignore +3 -0
  2588. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/base64id/README.md +18 -0
  2589. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/base64id/lib/base64id.js +103 -0
  2590. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/base64id/package.json +43 -0
  2591. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/policyfile/.npmignore +1 -0
  2592. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/policyfile/LICENSE +19 -0
  2593. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/policyfile/Makefile +7 -0
  2594. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/policyfile/README.md +98 -0
  2595. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/policyfile/doc/index.html +375 -0
  2596. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/policyfile/examples/basic.fallback.js +8 -0
  2597. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/policyfile/examples/basic.js +5 -0
  2598. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/policyfile/index.js +1 -0
  2599. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/policyfile/lib/server.js +289 -0
  2600. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/policyfile/package.json +58 -0
  2601. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/policyfile/tests/ssl/ssl.crt +21 -0
  2602. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/policyfile/tests/ssl/ssl.private.key +27 -0
  2603. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/policyfile/tests/unit.test.js +231 -0
  2604. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/redis/.npmignore +1 -0
  2605. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/redis/README.md +691 -0
  2606. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/redis/benches/buffer_bench.js +89 -0
  2607. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/redis/benches/hiredis_parser.js +38 -0
  2608. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/redis/benches/re_sub_test.js +14 -0
  2609. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/redis/benches/reconnect_test.js +29 -0
  2610. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/redis/benches/stress/codec.js +16 -0
  2611. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/redis/benches/stress/pubsub/pub.js +38 -0
  2612. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/redis/benches/stress/pubsub/run +10 -0
  2613. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/redis/benches/stress/pubsub/server.js +23 -0
  2614. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/redis/benches/stress/rpushblpop/pub.js +49 -0
  2615. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/redis/benches/stress/rpushblpop/run +6 -0
  2616. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/redis/benches/stress/rpushblpop/server.js +30 -0
  2617. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/redis/benches/stress/speed/00 +13 -0
  2618. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/redis/benches/stress/speed/plot +13 -0
  2619. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/redis/benches/stress/speed/size-rate.png +0 -0
  2620. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/redis/benches/stress/speed/speed.js +84 -0
  2621. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/redis/benches/sub_quit_test.js +18 -0
  2622. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/redis/changelog.md +219 -0
  2623. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/redis/diff_multi_bench_output.js +87 -0
  2624. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/redis/examples/auth.js +5 -0
  2625. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/redis/examples/backpressure_drain.js +33 -0
  2626. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/redis/examples/eval.js +9 -0
  2627. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/redis/examples/extend.js +24 -0
  2628. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/redis/examples/file.js +32 -0
  2629. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/redis/examples/mget.js +5 -0
  2630. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/redis/examples/monitor.js +10 -0
  2631. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/redis/examples/multi.js +46 -0
  2632. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/redis/examples/multi2.js +29 -0
  2633. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/redis/examples/psubscribe.js +33 -0
  2634. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/redis/examples/pub_sub.js +41 -0
  2635. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/redis/examples/simple.js +24 -0
  2636. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/redis/examples/sort.js +17 -0
  2637. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/redis/examples/subqueries.js +15 -0
  2638. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/redis/examples/subquery.js +19 -0
  2639. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/redis/examples/unix_socket.js +29 -0
  2640. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/redis/examples/web_server.js +31 -0
  2641. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/redis/generate_commands.js +39 -0
  2642. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/redis/index.js +1113 -0
  2643. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/redis/lib/commands.js +147 -0
  2644. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/redis/lib/parser/hiredis.js +46 -0
  2645. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/redis/lib/parser/javascript.js +317 -0
  2646. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/redis/lib/queue.js +61 -0
  2647. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/redis/lib/to_array.js +12 -0
  2648. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/redis/lib/util.js +11 -0
  2649. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/redis/mem.js +11 -0
  2650. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/redis/multi_bench.js +225 -0
  2651. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/redis/package.json +48 -0
  2652. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/redis/test.js +1618 -0
  2653. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/.npmignore +2 -0
  2654. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/History.md +237 -0
  2655. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/Makefile +20 -0
  2656. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/README.md +246 -0
  2657. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/bin/builder.js +303 -0
  2658. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/components/component-bind/component.json +14 -0
  2659. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/components/component-bind/index.js +24 -0
  2660. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/components/component-emitter/component.json +13 -0
  2661. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/components/component-emitter/index.js +147 -0
  2662. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/components/component-json-fallback/component.json +15 -0
  2663. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/components/component-json-fallback/index.js +486 -0
  2664. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/components/component-json/component.json +17 -0
  2665. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/components/component-json/index.js +4 -0
  2666. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/components/learnboost-engine.io-client/component.json +24 -0
  2667. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/components/learnboost-engine.io-client/lib/emitter.js +52 -0
  2668. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/components/learnboost-engine.io-client/lib/index.js +2 -0
  2669. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/components/learnboost-engine.io-client/lib/parser.js +163 -0
  2670. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/components/learnboost-engine.io-client/lib/socket.js +492 -0
  2671. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/components/learnboost-engine.io-client/lib/transport.js +141 -0
  2672. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/components/learnboost-engine.io-client/lib/transports/flashsocket.js +254 -0
  2673. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/components/learnboost-engine.io-client/lib/transports/index.js +62 -0
  2674. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/components/learnboost-engine.io-client/lib/transports/polling-jsonp.js +221 -0
  2675. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/components/learnboost-engine.io-client/lib/transports/polling-xhr.js +288 -0
  2676. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/components/learnboost-engine.io-client/lib/transports/polling.js +210 -0
  2677. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/components/learnboost-engine.io-client/lib/transports/websocket.js +158 -0
  2678. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/components/learnboost-engine.io-client/lib/util.js +265 -0
  2679. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/components/learnboost-socket.io-protocol/component.json +12 -0
  2680. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/components/learnboost-socket.io-protocol/index.js +177 -0
  2681. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/components/timoxley-to-array/component.json +16 -0
  2682. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/components/timoxley-to-array/index.js +27 -0
  2683. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/components/visionmedia-debug/component.json +16 -0
  2684. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/components/visionmedia-debug/debug.js +122 -0
  2685. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/components/visionmedia-debug/index.js +5 -0
  2686. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/dist/WebSocketMain.swf +0 -0
  2687. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/dist/WebSocketMainInsecure.swf +0 -0
  2688. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/dist/socket.io.js +3873 -0
  2689. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/dist/socket.io.min.js +2 -0
  2690. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/lib/events.js +182 -0
  2691. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/lib/io.js +206 -0
  2692. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/lib/json.js +322 -0
  2693. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/lib/namespace.js +242 -0
  2694. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/lib/parser.js +262 -0
  2695. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/lib/socket.js +579 -0
  2696. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/lib/transport.js +256 -0
  2697. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/lib/transports/flashsocket.js +191 -0
  2698. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/lib/transports/htmlfile.js +173 -0
  2699. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/lib/transports/jsonp-polling.js +256 -0
  2700. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/lib/transports/websocket.js +197 -0
  2701. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/lib/transports/xhr-polling.js +177 -0
  2702. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/lib/transports/xhr.js +217 -0
  2703. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/lib/util.js +365 -0
  2704. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/lib/vendor/web-socket-js/.npmignore +1 -0
  2705. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/lib/vendor/web-socket-js/README.md +157 -0
  2706. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/lib/vendor/web-socket-js/WebSocketMain.swf +0 -0
  2707. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/lib/vendor/web-socket-js/WebSocketMainInsecure.zip +0 -0
  2708. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/lib/vendor/web-socket-js/flash-src/IWebSocketLogger.as +8 -0
  2709. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/lib/vendor/web-socket-js/flash-src/WebSocket.as +464 -0
  2710. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/lib/vendor/web-socket-js/flash-src/WebSocketEvent.as +33 -0
  2711. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/lib/vendor/web-socket-js/flash-src/WebSocketMain.as +150 -0
  2712. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/lib/vendor/web-socket-js/flash-src/WebSocketMainInsecure.as +19 -0
  2713. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/lib/vendor/web-socket-js/flash-src/build.sh +10 -0
  2714. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/lib/vendor/web-socket-js/flash-src/com/adobe/net/proxies/RFC2817Socket.as +204 -0
  2715. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/lib/vendor/web-socket-js/flash-src/com/gsolo/encryption/MD5.as +375 -0
  2716. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/crypto/Crypto.as +287 -0
  2717. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/crypto/cert/MozillaRootCertificates.as +3235 -0
  2718. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/crypto/cert/X509Certificate.as +218 -0
  2719. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/crypto/cert/X509CertificateCollection.as +57 -0
  2720. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/crypto/hash/HMAC.as +82 -0
  2721. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/crypto/hash/IHMAC.as +27 -0
  2722. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/crypto/hash/IHash.as +21 -0
  2723. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/crypto/hash/MAC.as +137 -0
  2724. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/crypto/hash/MD2.as +124 -0
  2725. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/crypto/hash/MD5.as +204 -0
  2726. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/crypto/hash/SHA1.as +106 -0
  2727. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/crypto/hash/SHA224.as +28 -0
  2728. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/crypto/hash/SHA256.as +115 -0
  2729. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/crypto/hash/SHABase.as +71 -0
  2730. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/crypto/prng/ARC4.as +90 -0
  2731. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/crypto/prng/IPRNG.as +20 -0
  2732. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/crypto/prng/Random.as +119 -0
  2733. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/crypto/prng/TLSPRF.as +142 -0
  2734. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/crypto/rsa/RSAKey.as +339 -0
  2735. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/crypto/symmetric/AESKey.as +2797 -0
  2736. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/crypto/symmetric/BlowFishKey.as +375 -0
  2737. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/crypto/symmetric/CBCMode.as +55 -0
  2738. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/crypto/symmetric/CFB8Mode.as +61 -0
  2739. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/crypto/symmetric/CFBMode.as +64 -0
  2740. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/crypto/symmetric/CTRMode.as +58 -0
  2741. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/crypto/symmetric/DESKey.as +365 -0
  2742. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/crypto/symmetric/ECBMode.as +86 -0
  2743. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/crypto/symmetric/ICipher.as +21 -0
  2744. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/crypto/symmetric/IMode.as +15 -0
  2745. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/crypto/symmetric/IPad.as +32 -0
  2746. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/crypto/symmetric/IStreamCipher.as +21 -0
  2747. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/crypto/symmetric/ISymmetricKey.as +35 -0
  2748. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/crypto/symmetric/IVMode.as +110 -0
  2749. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/crypto/symmetric/NullPad.as +34 -0
  2750. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/crypto/symmetric/OFBMode.as +52 -0
  2751. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/crypto/symmetric/PKCS5.as +44 -0
  2752. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/crypto/symmetric/SSLPad.as +44 -0
  2753. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/crypto/symmetric/SimpleIVMode.as +60 -0
  2754. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/crypto/symmetric/TLSPad.as +42 -0
  2755. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/crypto/symmetric/TripleDESKey.as +88 -0
  2756. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/crypto/symmetric/XTeaKey.as +94 -0
  2757. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/crypto/symmetric/aeskey.pl +29 -0
  2758. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/crypto/symmetric/dump.txt +2304 -0
  2759. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/crypto/tests/AESKeyTest.as +1220 -0
  2760. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/crypto/tests/ARC4Test.as +58 -0
  2761. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/crypto/tests/BigIntegerTest.as +39 -0
  2762. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/crypto/tests/BlowFishKeyTest.as +148 -0
  2763. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/crypto/tests/CBCModeTest.as +160 -0
  2764. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/crypto/tests/CFB8ModeTest.as +71 -0
  2765. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/crypto/tests/CFBModeTest.as +98 -0
  2766. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/crypto/tests/CTRModeTest.as +109 -0
  2767. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/crypto/tests/DESKeyTest.as +112 -0
  2768. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/crypto/tests/ECBModeTest.as +151 -0
  2769. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/crypto/tests/HMACTest.as +184 -0
  2770. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/crypto/tests/ITestHarness.as +20 -0
  2771. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/crypto/tests/MD2Test.as +56 -0
  2772. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/crypto/tests/MD5Test.as +58 -0
  2773. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/crypto/tests/OFBModeTest.as +101 -0
  2774. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/crypto/tests/RSAKeyTest.as +92 -0
  2775. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/crypto/tests/SHA1Test.as +198 -0
  2776. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/crypto/tests/SHA224Test.as +58 -0
  2777. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/crypto/tests/SHA256Test.as +60 -0
  2778. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/crypto/tests/TLSPRFTest.as +51 -0
  2779. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/crypto/tests/TestCase.as +42 -0
  2780. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/crypto/tests/TripleDESKeyTest.as +59 -0
  2781. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/crypto/tests/XTeaKeyTest.as +66 -0
  2782. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/crypto/tls/BulkCiphers.as +102 -0
  2783. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/crypto/tls/CipherSuites.as +117 -0
  2784. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/crypto/tls/IConnectionState.as +14 -0
  2785. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/crypto/tls/ISecurityParameters.as +29 -0
  2786. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/crypto/tls/KeyExchanges.as +24 -0
  2787. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/crypto/tls/MACs.as +38 -0
  2788. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/crypto/tls/SSLConnectionState.as +171 -0
  2789. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/crypto/tls/SSLEvent.as +26 -0
  2790. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/crypto/tls/SSLSecurityParameters.as +340 -0
  2791. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/crypto/tls/TLSConfig.as +70 -0
  2792. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/crypto/tls/TLSConnectionState.as +151 -0
  2793. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/crypto/tls/TLSEngine.as +895 -0
  2794. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/crypto/tls/TLSError.as +39 -0
  2795. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/crypto/tls/TLSEvent.as +27 -0
  2796. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/crypto/tls/TLSSecurityParameters.as +197 -0
  2797. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/crypto/tls/TLSSocket.as +370 -0
  2798. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/crypto/tls/TLSSocketEvent.as +26 -0
  2799. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/crypto/tls/TLSTest.as +180 -0
  2800. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/math/BarrettReduction.as +90 -0
  2801. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/math/BigInteger.as +1543 -0
  2802. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/math/ClassicReduction.as +35 -0
  2803. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/math/IReduction.as +11 -0
  2804. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/math/MontgomeryReduction.as +85 -0
  2805. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/math/NullReduction.as +34 -0
  2806. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/math/bi_internal.as +11 -0
  2807. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/util/ArrayUtil.as +25 -0
  2808. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/util/Base64.as +189 -0
  2809. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/util/Hex.as +66 -0
  2810. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/util/Memory.as +28 -0
  2811. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/util/der/ByteString.as +43 -0
  2812. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/util/der/DER.as +210 -0
  2813. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/util/der/IAsn1Type.as +21 -0
  2814. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/util/der/Integer.as +44 -0
  2815. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/util/der/OID.as +35 -0
  2816. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/util/der/ObjectIdentifier.as +112 -0
  2817. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/util/der/PEM.as +118 -0
  2818. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/util/der/PrintableString.as +49 -0
  2819. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/util/der/Sequence.as +90 -0
  2820. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/util/der/Set.as +27 -0
  2821. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/util/der/Type.as +94 -0
  2822. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/lib/vendor/web-socket-js/flash-src/com/hurlant/util/der/UTCTime.as +60 -0
  2823. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/lib/vendor/web-socket-js/sample.html +75 -0
  2824. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/lib/vendor/web-socket-js/swfobject.js +6 -0
  2825. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/lib/vendor/web-socket-js/web_socket.js +349 -0
  2826. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/node_modules/.bin/uglifyjs +323 -0
  2827. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/node_modules/.bin/wscat +222 -0
  2828. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/node_modules/active-x-obfuscator/..gitignore.un~ +0 -0
  2829. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/node_modules/active-x-obfuscator/.Readme.md.un~ +0 -0
  2830. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/node_modules/active-x-obfuscator/.index.js.un~ +0 -0
  2831. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/node_modules/active-x-obfuscator/.npmignore +2 -0
  2832. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/node_modules/active-x-obfuscator/.package.json.un~ +0 -0
  2833. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/node_modules/active-x-obfuscator/.test.js.un~ +0 -0
  2834. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/node_modules/active-x-obfuscator/Readme.md +33 -0
  2835. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/node_modules/active-x-obfuscator/index.js +83 -0
  2836. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/node_modules/active-x-obfuscator/node_modules/zeparser/.npmignore +1 -0
  2837. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/node_modules/active-x-obfuscator/node_modules/zeparser/LICENSE +19 -0
  2838. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/node_modules/active-x-obfuscator/node_modules/zeparser/README +37 -0
  2839. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/node_modules/active-x-obfuscator/node_modules/zeparser/Tokenizer.js +646 -0
  2840. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/node_modules/active-x-obfuscator/node_modules/zeparser/ZeParser.js +2180 -0
  2841. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/node_modules/active-x-obfuscator/node_modules/zeparser/benchmark.html +111608 -0
  2842. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/node_modules/active-x-obfuscator/node_modules/zeparser/index.js +1 -0
  2843. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/node_modules/active-x-obfuscator/node_modules/zeparser/package.json +47 -0
  2844. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/node_modules/active-x-obfuscator/node_modules/zeparser/test-parser.html +26 -0
  2845. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/node_modules/active-x-obfuscator/node_modules/zeparser/test-tokenizer.html +23 -0
  2846. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/node_modules/active-x-obfuscator/node_modules/zeparser/tests.js +478 -0
  2847. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/node_modules/active-x-obfuscator/node_modules/zeparser/unicodecategories.js +49 -0
  2848. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/node_modules/active-x-obfuscator/package.json +50 -0
  2849. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/node_modules/active-x-obfuscator/test.js +53 -0
  2850. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/node_modules/uglify-js/.npmignore +4 -0
  2851. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/node_modules/uglify-js/README.html +981 -0
  2852. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/node_modules/uglify-js/README.org +574 -0
  2853. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/node_modules/uglify-js/bin/uglifyjs +323 -0
  2854. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/node_modules/uglify-js/docstyle.css +75 -0
  2855. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/node_modules/uglify-js/lib/object-ast.js +75 -0
  2856. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/node_modules/uglify-js/lib/parse-js.js +1342 -0
  2857. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/node_modules/uglify-js/lib/process.js +2011 -0
  2858. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/node_modules/uglify-js/lib/squeeze-more.js +69 -0
  2859. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/node_modules/uglify-js/package.json +54 -0
  2860. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/node_modules/uglify-js/package.json~ +24 -0
  2861. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/node_modules/uglify-js/test/beautify.js +28 -0
  2862. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/node_modules/uglify-js/test/testparser.js +403 -0
  2863. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/node_modules/uglify-js/test/unit/compress/expected/array1.js +1 -0
  2864. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/node_modules/uglify-js/test/unit/compress/expected/array2.js +1 -0
  2865. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/node_modules/uglify-js/test/unit/compress/expected/array3.js +1 -0
  2866. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/node_modules/uglify-js/test/unit/compress/expected/array4.js +1 -0
  2867. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/node_modules/uglify-js/test/unit/compress/expected/assignment.js +1 -0
  2868. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/node_modules/uglify-js/test/unit/compress/expected/concatstring.js +1 -0
  2869. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/node_modules/uglify-js/test/unit/compress/expected/const.js +1 -0
  2870. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/node_modules/uglify-js/test/unit/compress/expected/empty-blocks.js +1 -0
  2871. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/node_modules/uglify-js/test/unit/compress/expected/forstatement.js +1 -0
  2872. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/node_modules/uglify-js/test/unit/compress/expected/if.js +1 -0
  2873. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/node_modules/uglify-js/test/unit/compress/expected/ifreturn.js +1 -0
  2874. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/node_modules/uglify-js/test/unit/compress/expected/ifreturn2.js +1 -0
  2875. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/node_modules/uglify-js/test/unit/compress/expected/issue10.js +1 -0
  2876. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/node_modules/uglify-js/test/unit/compress/expected/issue11.js +1 -0
  2877. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/node_modules/uglify-js/test/unit/compress/expected/issue13.js +1 -0
  2878. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/node_modules/uglify-js/test/unit/compress/expected/issue14.js +1 -0
  2879. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/node_modules/uglify-js/test/unit/compress/expected/issue16.js +1 -0
  2880. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/node_modules/uglify-js/test/unit/compress/expected/issue17.js +1 -0
  2881. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/node_modules/uglify-js/test/unit/compress/expected/issue20.js +1 -0
  2882. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/node_modules/uglify-js/test/unit/compress/expected/issue21.js +1 -0
  2883. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/node_modules/uglify-js/test/unit/compress/expected/issue25.js +1 -0
  2884. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/node_modules/uglify-js/test/unit/compress/expected/issue27.js +1 -0
  2885. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/node_modules/uglify-js/test/unit/compress/expected/issue278.js +1 -0
  2886. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/node_modules/uglify-js/test/unit/compress/expected/issue28.js +1 -0
  2887. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/node_modules/uglify-js/test/unit/compress/expected/issue29.js +1 -0
  2888. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/node_modules/uglify-js/test/unit/compress/expected/issue30.js +1 -0
  2889. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/node_modules/uglify-js/test/unit/compress/expected/issue34.js +1 -0
  2890. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/node_modules/uglify-js/test/unit/compress/expected/issue4.js +1 -0
  2891. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/node_modules/uglify-js/test/unit/compress/expected/issue48.js +1 -0
  2892. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/node_modules/uglify-js/test/unit/compress/expected/issue50.js +1 -0
  2893. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/node_modules/uglify-js/test/unit/compress/expected/issue53.js +1 -0
  2894. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/node_modules/uglify-js/test/unit/compress/expected/issue54.1.js +1 -0
  2895. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/node_modules/uglify-js/test/unit/compress/expected/issue68.js +1 -0
  2896. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/node_modules/uglify-js/test/unit/compress/expected/issue69.js +1 -0
  2897. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/node_modules/uglify-js/test/unit/compress/expected/issue9.js +1 -0
  2898. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/node_modules/uglify-js/test/unit/compress/expected/mangle.js +1 -0
  2899. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/node_modules/uglify-js/test/unit/compress/expected/null_string.js +1 -0
  2900. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/node_modules/uglify-js/test/unit/compress/expected/strict-equals.js +1 -0
  2901. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/node_modules/uglify-js/test/unit/compress/expected/var.js +1 -0
  2902. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/node_modules/uglify-js/test/unit/compress/expected/whitespace.js +1 -0
  2903. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/node_modules/uglify-js/test/unit/compress/expected/with.js +1 -0
  2904. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/node_modules/uglify-js/test/unit/compress/test/array1.js +3 -0
  2905. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/node_modules/uglify-js/test/unit/compress/test/array2.js +4 -0
  2906. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/node_modules/uglify-js/test/unit/compress/test/array3.js +4 -0
  2907. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/node_modules/uglify-js/test/unit/compress/test/array4.js +6 -0
  2908. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/node_modules/uglify-js/test/unit/compress/test/assignment.js +20 -0
  2909. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/node_modules/uglify-js/test/unit/compress/test/concatstring.js +3 -0
  2910. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/node_modules/uglify-js/test/unit/compress/test/const.js +5 -0
  2911. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/node_modules/uglify-js/test/unit/compress/test/empty-blocks.js +4 -0
  2912. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/node_modules/uglify-js/test/unit/compress/test/forstatement.js +10 -0
  2913. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/node_modules/uglify-js/test/unit/compress/test/if.js +6 -0
  2914. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/node_modules/uglify-js/test/unit/compress/test/ifreturn.js +9 -0
  2915. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/node_modules/uglify-js/test/unit/compress/test/ifreturn2.js +16 -0
  2916. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/node_modules/uglify-js/test/unit/compress/test/issue10.js +1 -0
  2917. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/node_modules/uglify-js/test/unit/compress/test/issue11.js +3 -0
  2918. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/node_modules/uglify-js/test/unit/compress/test/issue13.js +1 -0
  2919. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/node_modules/uglify-js/test/unit/compress/test/issue14.js +1 -0
  2920. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/node_modules/uglify-js/test/unit/compress/test/issue16.js +1 -0
  2921. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/node_modules/uglify-js/test/unit/compress/test/issue17.js +4 -0
  2922. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/node_modules/uglify-js/test/unit/compress/test/issue20.js +1 -0
  2923. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/node_modules/uglify-js/test/unit/compress/test/issue21.js +6 -0
  2924. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/node_modules/uglify-js/test/unit/compress/test/issue25.js +7 -0
  2925. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/node_modules/uglify-js/test/unit/compress/test/issue27.js +1 -0
  2926. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/node_modules/uglify-js/test/unit/compress/test/issue278.js +1 -0
  2927. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/node_modules/uglify-js/test/unit/compress/test/issue28.js +3 -0
  2928. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/node_modules/uglify-js/test/unit/compress/test/issue29.js +1 -0
  2929. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/node_modules/uglify-js/test/unit/compress/test/issue30.js +3 -0
  2930. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/node_modules/uglify-js/test/unit/compress/test/issue34.js +3 -0
  2931. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/node_modules/uglify-js/test/unit/compress/test/issue4.js +3 -0
  2932. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/node_modules/uglify-js/test/unit/compress/test/issue48.js +1 -0
  2933. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/node_modules/uglify-js/test/unit/compress/test/issue50.js +9 -0
  2934. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/node_modules/uglify-js/test/unit/compress/test/issue53.js +1 -0
  2935. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/node_modules/uglify-js/test/unit/compress/test/issue54.1.js +3 -0
  2936. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/node_modules/uglify-js/test/unit/compress/test/issue68.js +5 -0
  2937. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/node_modules/uglify-js/test/unit/compress/test/issue69.js +1 -0
  2938. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/node_modules/uglify-js/test/unit/compress/test/issue9.js +4 -0
  2939. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/node_modules/uglify-js/test/unit/compress/test/mangle.js +5 -0
  2940. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/node_modules/uglify-js/test/unit/compress/test/null_string.js +1 -0
  2941. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/node_modules/uglify-js/test/unit/compress/test/strict-equals.js +3 -0
  2942. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/node_modules/uglify-js/test/unit/compress/test/var.js +3 -0
  2943. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/node_modules/uglify-js/test/unit/compress/test/whitespace.js +21 -0
  2944. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/node_modules/uglify-js/test/unit/compress/test/with.js +2 -0
  2945. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/node_modules/uglify-js/test/unit/scripts.js +55 -0
  2946. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/node_modules/uglify-js/tmp/269.js +13 -0
  2947. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/node_modules/uglify-js/tmp/app.js +22315 -0
  2948. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/node_modules/uglify-js/tmp/embed-tokens.js +15 -0
  2949. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/node_modules/uglify-js/tmp/goto.js +26 -0
  2950. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/node_modules/uglify-js/tmp/goto2.js +8 -0
  2951. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/node_modules/uglify-js/tmp/hoist.js +33 -0
  2952. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/node_modules/uglify-js/tmp/instrument.js +97 -0
  2953. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/node_modules/uglify-js/tmp/instrument2.js +138 -0
  2954. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/node_modules/uglify-js/tmp/liftvars.js +8 -0
  2955. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/node_modules/uglify-js/tmp/test.js +30 -0
  2956. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/node_modules/uglify-js/tmp/uglify-hangs.js +3930 -0
  2957. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/node_modules/uglify-js/tmp/uglify-hangs2.js +166 -0
  2958. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/node_modules/uglify-js/uglify-js.js +17 -0
  2959. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/node_modules/ws/.npmignore +11 -0
  2960. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/node_modules/ws/.travis.yml +5 -0
  2961. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/node_modules/ws/History.md +312 -0
  2962. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/node_modules/ws/Makefile +40 -0
  2963. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/node_modules/ws/README.md +171 -0
  2964. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/node_modules/ws/bin/wscat +222 -0
  2965. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/node_modules/ws/binding.gyp +16 -0
  2966. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/node_modules/ws/build/Makefile +355 -0
  2967. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/node_modules/ws/build/Release/.deps/Release/bufferutil.node.d +1 -0
  2968. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/node_modules/ws/build/Release/.deps/Release/obj.target/bufferutil/src/bufferutil.o.d +33 -0
  2969. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/node_modules/ws/build/Release/.deps/Release/obj.target/validation/src/validation.o.d +33 -0
  2970. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/node_modules/ws/build/Release/.deps/Release/validation.node.d +1 -0
  2971. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/node_modules/ws/build/Release/bufferutil.node +0 -0
  2972. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/node_modules/ws/build/Release/linker.lock +0 -0
  2973. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/node_modules/ws/build/Release/validation.node +0 -0
  2974. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/node_modules/ws/build/binding.Makefile +6 -0
  2975. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/node_modules/ws/build/bufferutil.target.mk +156 -0
  2976. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/node_modules/ws/build/config.gypi +136 -0
  2977. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/node_modules/ws/build/gyp-mac-tool +512 -0
  2978. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/node_modules/ws/build/validation.target.mk +156 -0
  2979. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/node_modules/ws/builderror.log +0 -0
  2980. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/node_modules/ws/index.js +26 -0
  2981. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/node_modules/ws/lib/BufferPool.js +59 -0
  2982. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/node_modules/ws/lib/BufferUtil.fallback.js +47 -0
  2983. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/node_modules/ws/lib/BufferUtil.js +16 -0
  2984. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/node_modules/ws/lib/ErrorCodes.js +24 -0
  2985. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/node_modules/ws/lib/Receiver.hixie.js +180 -0
  2986. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/node_modules/ws/lib/Receiver.js +585 -0
  2987. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/node_modules/ws/lib/Sender.hixie.js +118 -0
  2988. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/node_modules/ws/lib/Sender.js +227 -0
  2989. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/node_modules/ws/lib/Validation.fallback.js +12 -0
  2990. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/node_modules/ws/lib/Validation.js +16 -0
  2991. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/node_modules/ws/lib/WebSocket.js +794 -0
  2992. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/node_modules/ws/lib/WebSocketServer.js +465 -0
  2993. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/node_modules/ws/lib/browser.js +43 -0
  2994. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/node_modules/ws/node_modules/commander/Readme.md +195 -0
  2995. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/node_modules/ws/node_modules/commander/index.js +851 -0
  2996. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/node_modules/ws/node_modules/commander/package.json +57 -0
  2997. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/node_modules/ws/node_modules/nan/.dntrc +36 -0
  2998. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/node_modules/ws/node_modules/nan/LICENSE +46 -0
  2999. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/node_modules/ws/node_modules/nan/README.md +947 -0
  3000. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/node_modules/ws/node_modules/nan/build/config.gypi +38 -0
  3001. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/node_modules/ws/node_modules/nan/include_dirs.js +1 -0
  3002. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/node_modules/ws/node_modules/nan/nan.h +1910 -0
  3003. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/node_modules/ws/node_modules/nan/package.json +67 -0
  3004. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/node_modules/ws/node_modules/options/.npmignore +7 -0
  3005. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/node_modules/ws/node_modules/options/Makefile +12 -0
  3006. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/node_modules/ws/node_modules/options/README.md +69 -0
  3007. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/node_modules/ws/node_modules/options/lib/options.js +86 -0
  3008. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/node_modules/ws/node_modules/options/package.json +50 -0
  3009. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/node_modules/ws/node_modules/tinycolor/.npmignore +5 -0
  3010. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/node_modules/ws/node_modules/tinycolor/README.md +3 -0
  3011. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/node_modules/ws/node_modules/tinycolor/example.js +3 -0
  3012. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/node_modules/ws/node_modules/tinycolor/package.json +43 -0
  3013. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/node_modules/ws/node_modules/tinycolor/tinycolor.js +31 -0
  3014. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/node_modules/ws/package.json +81 -0
  3015. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/node_modules/ws/src/bufferutil.cc +117 -0
  3016. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/node_modules/ws/src/validation.cc +145 -0
  3017. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/node_modules/xmlhttprequest/README.md +53 -0
  3018. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/node_modules/xmlhttprequest/autotest.watchr +8 -0
  3019. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/node_modules/xmlhttprequest/example/demo.js +16 -0
  3020. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/node_modules/xmlhttprequest/lib/XMLHttpRequest.js +548 -0
  3021. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/node_modules/xmlhttprequest/package.json +59 -0
  3022. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/node_modules/xmlhttprequest/tests/test-constants.js +13 -0
  3023. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/node_modules/xmlhttprequest/tests/test-events.js +50 -0
  3024. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/node_modules/xmlhttprequest/tests/test-exceptions.js +62 -0
  3025. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/node_modules/xmlhttprequest/tests/test-headers.js +61 -0
  3026. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/node_modules/xmlhttprequest/tests/test-request-methods.js +62 -0
  3027. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/node_modules/xmlhttprequest/tests/test-request-protocols.js +34 -0
  3028. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/node_modules/xmlhttprequest/tests/testdata.txt +1 -0
  3029. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/package.json +80 -0
  3030. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/test/events.test.js +120 -0
  3031. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/test/io.test.js +31 -0
  3032. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/test/node/builder.common.js +102 -0
  3033. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/test/node/builder.test.js +131 -0
  3034. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/test/parser.test.js +360 -0
  3035. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/test/socket.test.js +422 -0
  3036. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/test/util.test.js +156 -0
  3037. data/jasmine/node_modules/karma/node_modules/socket.io/node_modules/socket.io-client/test/worker.js +20 -0
  3038. data/jasmine/node_modules/karma/node_modules/socket.io/package.json +83 -0
  3039. data/jasmine/node_modules/karma/node_modules/source-map/.npmignore +2 -0
  3040. data/jasmine/node_modules/karma/node_modules/source-map/.travis.yml +4 -0
  3041. data/jasmine/node_modules/karma/node_modules/source-map/CHANGELOG.md +194 -0
  3042. data/jasmine/node_modules/karma/node_modules/source-map/LICENSE +28 -0
  3043. data/jasmine/node_modules/karma/node_modules/source-map/Makefile.dryice.js +166 -0
  3044. data/jasmine/node_modules/karma/node_modules/source-map/README.md +475 -0
  3045. data/jasmine/node_modules/karma/node_modules/source-map/build/assert-shim.js +56 -0
  3046. data/jasmine/node_modules/karma/node_modules/source-map/build/mini-require.js +152 -0
  3047. data/jasmine/node_modules/karma/node_modules/source-map/build/prefix-source-map.jsm +20 -0
  3048. data/jasmine/node_modules/karma/node_modules/source-map/build/prefix-utils.jsm +18 -0
  3049. data/jasmine/node_modules/karma/node_modules/source-map/build/suffix-browser.js +8 -0
  3050. data/jasmine/node_modules/karma/node_modules/source-map/build/suffix-source-map.jsm +6 -0
  3051. data/jasmine/node_modules/karma/node_modules/source-map/build/suffix-utils.jsm +21 -0
  3052. data/jasmine/node_modules/karma/node_modules/source-map/build/test-prefix.js +8 -0
  3053. data/jasmine/node_modules/karma/node_modules/source-map/build/test-suffix.js +3 -0
  3054. data/jasmine/node_modules/karma/node_modules/source-map/lib/source-map.js +8 -0
  3055. data/jasmine/node_modules/karma/node_modules/source-map/lib/source-map/array-set.js +97 -0
  3056. data/jasmine/node_modules/karma/node_modules/source-map/lib/source-map/base64-vlq.js +142 -0
  3057. data/jasmine/node_modules/karma/node_modules/source-map/lib/source-map/base64.js +42 -0
  3058. data/jasmine/node_modules/karma/node_modules/source-map/lib/source-map/binary-search.js +80 -0
  3059. data/jasmine/node_modules/karma/node_modules/source-map/lib/source-map/mapping-list.js +86 -0
  3060. data/jasmine/node_modules/karma/node_modules/source-map/lib/source-map/source-map-consumer.js +575 -0
  3061. data/jasmine/node_modules/karma/node_modules/source-map/lib/source-map/source-map-generator.js +400 -0
  3062. data/jasmine/node_modules/karma/node_modules/source-map/lib/source-map/source-node.js +414 -0
  3063. data/jasmine/node_modules/karma/node_modules/source-map/lib/source-map/util.js +319 -0
  3064. data/jasmine/node_modules/karma/node_modules/source-map/node_modules/amdefine/LICENSE +58 -0
  3065. data/jasmine/node_modules/karma/node_modules/source-map/node_modules/amdefine/README.md +171 -0
  3066. data/jasmine/node_modules/karma/node_modules/source-map/node_modules/amdefine/amdefine.js +299 -0
  3067. data/jasmine/node_modules/karma/node_modules/source-map/node_modules/amdefine/intercept.js +36 -0
  3068. data/jasmine/node_modules/karma/node_modules/source-map/node_modules/amdefine/package.json +54 -0
  3069. data/jasmine/node_modules/karma/node_modules/source-map/package.json +186 -0
  3070. data/jasmine/node_modules/karma/node_modules/source-map/test/run-tests.js +62 -0
  3071. data/jasmine/node_modules/karma/node_modules/source-map/test/source-map/test-api.js +26 -0
  3072. data/jasmine/node_modules/karma/node_modules/source-map/test/source-map/test-array-set.js +104 -0
  3073. data/jasmine/node_modules/karma/node_modules/source-map/test/source-map/test-base64-vlq.js +23 -0
  3074. data/jasmine/node_modules/karma/node_modules/source-map/test/source-map/test-base64.js +35 -0
  3075. data/jasmine/node_modules/karma/node_modules/source-map/test/source-map/test-binary-search.js +54 -0
  3076. data/jasmine/node_modules/karma/node_modules/source-map/test/source-map/test-dog-fooding.js +84 -0
  3077. data/jasmine/node_modules/karma/node_modules/source-map/test/source-map/test-source-map-consumer.js +702 -0
  3078. data/jasmine/node_modules/karma/node_modules/source-map/test/source-map/test-source-map-generator.js +679 -0
  3079. data/jasmine/node_modules/karma/node_modules/source-map/test/source-map/test-source-node.js +612 -0
  3080. data/jasmine/node_modules/karma/node_modules/source-map/test/source-map/test-util.js +216 -0
  3081. data/jasmine/node_modules/karma/node_modules/source-map/test/source-map/util.js +192 -0
  3082. data/jasmine/node_modules/karma/node_modules/useragent/.npmignore +3 -0
  3083. data/jasmine/node_modules/karma/node_modules/useragent/.travis.yml +4 -0
  3084. data/jasmine/node_modules/karma/node_modules/useragent/CHANGELOG.md +63 -0
  3085. data/jasmine/node_modules/karma/node_modules/useragent/CREDITS +16 -0
  3086. data/jasmine/node_modules/karma/node_modules/useragent/LICENSE +19 -0
  3087. data/jasmine/node_modules/karma/node_modules/useragent/README.md +395 -0
  3088. data/jasmine/node_modules/karma/node_modules/useragent/bin/testfiles.js +24 -0
  3089. data/jasmine/node_modules/karma/node_modules/useragent/bin/update.js +17 -0
  3090. data/jasmine/node_modules/karma/node_modules/useragent/features/index.js +19 -0
  3091. data/jasmine/node_modules/karma/node_modules/useragent/index.js +607 -0
  3092. data/jasmine/node_modules/karma/node_modules/useragent/lib/regexps.js +2872 -0
  3093. data/jasmine/node_modules/karma/node_modules/useragent/lib/update.js +202 -0
  3094. data/jasmine/node_modules/karma/node_modules/useragent/node_modules/lru-cache/.npmignore +1 -0
  3095. data/jasmine/node_modules/karma/node_modules/useragent/node_modules/lru-cache/AUTHORS +8 -0
  3096. data/jasmine/node_modules/karma/node_modules/useragent/node_modules/lru-cache/LICENSE +23 -0
  3097. data/jasmine/node_modules/karma/node_modules/useragent/node_modules/lru-cache/README.md +88 -0
  3098. data/jasmine/node_modules/karma/node_modules/useragent/node_modules/lru-cache/lib/lru-cache.js +242 -0
  3099. data/jasmine/node_modules/karma/node_modules/useragent/node_modules/lru-cache/package.json +75 -0
  3100. data/jasmine/node_modules/karma/node_modules/useragent/node_modules/lru-cache/s.js +25 -0
  3101. data/jasmine/node_modules/karma/node_modules/useragent/node_modules/lru-cache/test/basic.js +317 -0
  3102. data/jasmine/node_modules/karma/node_modules/useragent/node_modules/lru-cache/test/foreach.js +52 -0
  3103. data/jasmine/node_modules/karma/node_modules/useragent/node_modules/lru-cache/test/memory-leak.js +50 -0
  3104. data/jasmine/node_modules/karma/node_modules/useragent/package.json +79 -0
  3105. data/jasmine/node_modules/karma/node_modules/useragent/static/user_agent.after.yaml +17 -0
  3106. data/jasmine/node_modules/karma/node_modules/useragent/test/features.test.js +16 -0
  3107. data/jasmine/node_modules/karma/node_modules/useragent/test/fixtures/firefoxes.yaml +1386 -0
  3108. data/jasmine/node_modules/karma/node_modules/useragent/test/fixtures/pgts.yaml +62356 -0
  3109. data/jasmine/node_modules/karma/node_modules/useragent/test/fixtures/static.custom.yaml +13 -0
  3110. data/jasmine/node_modules/karma/node_modules/useragent/test/fixtures/testcases.yaml +389 -0
  3111. data/jasmine/node_modules/karma/node_modules/useragent/test/mocha.opts +4 -0
  3112. data/jasmine/node_modules/karma/node_modules/useragent/test/parser.qa.js +45 -0
  3113. data/jasmine/node_modules/karma/node_modules/useragent/test/parser.test.js +251 -0
  3114. data/jasmine/node_modules/karma/package.json +675 -0
  3115. data/jasmine/node_modules/karma/requirejs.config.tpl.coffee +19 -0
  3116. data/jasmine/node_modules/karma/requirejs.config.tpl.js +24 -0
  3117. data/jasmine/node_modules/karma/static/client.html +116 -0
  3118. data/jasmine/node_modules/karma/static/context.html +35 -0
  3119. data/jasmine/node_modules/karma/static/debug.html +58 -0
  3120. data/jasmine/node_modules/karma/static/karma.js +411 -0
  3121. data/jasmine/node_modules/requirejs/README.md +9 -0
  3122. data/jasmine/node_modules/requirejs/bin/r.js +29003 -0
  3123. data/jasmine/node_modules/requirejs/package.json +56 -0
  3124. data/jasmine/node_modules/requirejs/require.js +2083 -0
  3125. data/jasmine/spec/hoochSpec.js +25 -0
  3126. data/jasmine/test-main.js +24 -0
  3127. data/lib/hooch/hooch_helper.rb +93 -2
  3128. data/lib/hooch/version.rb +1 -1
  3129. data/test/dummy/README.rdoc +28 -0
  3130. data/test/dummy/Rakefile +6 -0
  3131. data/test/dummy/app/assets/images/.keep +0 -0
  3132. data/test/dummy/app/assets/javascripts/application.js +13 -0
  3133. data/test/dummy/app/assets/stylesheets/application.css +15 -0
  3134. data/test/dummy/app/controllers/application_controller.rb +5 -0
  3135. data/test/dummy/app/controllers/concerns/.keep +0 -0
  3136. data/test/dummy/app/helpers/application_helper.rb +2 -0
  3137. data/test/dummy/app/mailers/.keep +0 -0
  3138. data/test/dummy/app/models/.keep +0 -0
  3139. data/test/dummy/app/models/concerns/.keep +0 -0
  3140. data/test/dummy/app/views/layouts/application.html.erb +14 -0
  3141. data/test/dummy/bin/bundle +3 -0
  3142. data/test/dummy/bin/rails +4 -0
  3143. data/test/dummy/bin/rake +4 -0
  3144. data/test/dummy/config.ru +4 -0
  3145. data/test/dummy/config/application.rb +23 -0
  3146. data/test/dummy/config/boot.rb +5 -0
  3147. data/test/dummy/config/database.yml +25 -0
  3148. data/test/dummy/config/environment.rb +5 -0
  3149. data/test/dummy/config/environments/development.rb +37 -0
  3150. data/test/dummy/config/environments/production.rb +82 -0
  3151. data/test/dummy/config/environments/test.rb +39 -0
  3152. data/test/dummy/config/initializers/assets.rb +8 -0
  3153. data/test/dummy/config/initializers/backtrace_silencers.rb +7 -0
  3154. data/test/dummy/config/initializers/cookies_serializer.rb +3 -0
  3155. data/test/dummy/config/initializers/filter_parameter_logging.rb +4 -0
  3156. data/test/dummy/config/initializers/inflections.rb +16 -0
  3157. data/test/dummy/config/initializers/mime_types.rb +4 -0
  3158. data/test/dummy/config/initializers/session_store.rb +3 -0
  3159. data/test/dummy/config/initializers/wrap_parameters.rb +14 -0
  3160. data/test/dummy/config/locales/en.yml +23 -0
  3161. data/test/dummy/config/routes.rb +56 -0
  3162. data/test/dummy/config/secrets.yml +22 -0
  3163. data/test/dummy/db/development.sqlite3 +0 -0
  3164. data/test/dummy/db/schema.rb +16 -0
  3165. data/test/dummy/db/test.sqlite3 +0 -0
  3166. data/test/dummy/lib/assets/.keep +0 -0
  3167. data/test/dummy/log/.keep +0 -0
  3168. data/test/dummy/log/development.log +4 -0
  3169. data/test/dummy/log/test.log +1418 -0
  3170. data/test/dummy/public/404.html +67 -0
  3171. data/test/dummy/public/422.html +67 -0
  3172. data/test/dummy/public/500.html +66 -0
  3173. data/test/dummy/public/favicon.ico +0 -0
  3174. data/test/hooch_helper_test.rb +141 -0
  3175. data/test/test_helper.rb +20 -0
  3176. metadata +3281 -3
@@ -0,0 +1,19 @@
1
+ Copyright (c) 2010 Benjamin Thomas, Robert Kieffer
2
+
3
+ Permission is hereby granted, free of charge, to any person obtaining a copy
4
+ of this software and associated documentation files (the "Software"), to deal
5
+ in the Software without restriction, including without limitation the rights
6
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
7
+ copies of the Software, and to permit persons to whom the Software is
8
+ furnished to do so, subject to the following conditions:
9
+
10
+ The above copyright notice and this permission notice shall be included in
11
+ all copies or substantial portions of the Software.
12
+
13
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
14
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
15
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
16
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
17
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
18
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
19
+ THE SOFTWARE.
@@ -0,0 +1,66 @@
1
+ # mime
2
+
3
+ Comprehensive MIME type mapping API. Includes all 600+ types and 800+ extensions defined by the Apache project, plus additional types submitted by the node.js community.
4
+
5
+ ## Install
6
+
7
+ Install with [npm](http://github.com/isaacs/npm):
8
+
9
+ npm install mime
10
+
11
+ ## API - Queries
12
+
13
+ ### mime.lookup(path)
14
+ Get the mime type associated with a file, if no mime type is found `application/octet-stream` is returned. Performs a case-insensitive lookup using the extension in `path` (the substring after the last '/' or '.'). E.g.
15
+
16
+ var mime = require('mime');
17
+
18
+ mime.lookup('/path/to/file.txt'); // => 'text/plain'
19
+ mime.lookup('file.txt'); // => 'text/plain'
20
+ mime.lookup('.TXT'); // => 'text/plain'
21
+ mime.lookup('htm'); // => 'text/html'
22
+
23
+ ### mime.default_type
24
+ Sets the mime type returned when `mime.lookup` fails to find the extension searched for. (Default is `application/octet-stream`.)
25
+
26
+ ### mime.extension(type)
27
+ Get the default extension for `type`
28
+
29
+ mime.extension('text/html'); // => 'html'
30
+ mime.extension('application/octet-stream'); // => 'bin'
31
+
32
+ ### mime.charsets.lookup()
33
+
34
+ Map mime-type to charset
35
+
36
+ mime.charsets.lookup('text/plain'); // => 'UTF-8'
37
+
38
+ (The logic for charset lookups is pretty rudimentary. Feel free to suggest improvements.)
39
+
40
+ ## API - Defining Custom Types
41
+
42
+ The following APIs allow you to add your own type mappings within your project. If you feel a type should be included as part of node-mime, see [requesting new types](https://github.com/broofa/node-mime/wiki/Requesting-New-Types).
43
+
44
+ ### mime.define()
45
+
46
+ Add custom mime/extension mappings
47
+
48
+ mime.define({
49
+ 'text/x-some-format': ['x-sf', 'x-sft', 'x-sfml'],
50
+ 'application/x-my-type': ['x-mt', 'x-mtt'],
51
+ // etc ...
52
+ });
53
+
54
+ mime.lookup('x-sft'); // => 'text/x-some-format'
55
+
56
+ The first entry in the extensions array is returned by `mime.extension()`. E.g.
57
+
58
+ mime.extension('text/x-some-format'); // => 'x-sf'
59
+
60
+ ### mime.load(filepath)
61
+
62
+ Load mappings from an Apache ".types" format file
63
+
64
+ mime.load('./my_project.types');
65
+
66
+ The .types file format is simple - See the `types` dir for examples.
@@ -0,0 +1,114 @@
1
+ var path = require('path');
2
+ var fs = require('fs');
3
+
4
+ function Mime() {
5
+ // Map of extension -> mime type
6
+ this.types = Object.create(null);
7
+
8
+ // Map of mime type -> extension
9
+ this.extensions = Object.create(null);
10
+ }
11
+
12
+ /**
13
+ * Define mimetype -> extension mappings. Each key is a mime-type that maps
14
+ * to an array of extensions associated with the type. The first extension is
15
+ * used as the default extension for the type.
16
+ *
17
+ * e.g. mime.define({'audio/ogg', ['oga', 'ogg', 'spx']});
18
+ *
19
+ * @param map (Object) type definitions
20
+ */
21
+ Mime.prototype.define = function (map) {
22
+ for (var type in map) {
23
+ var exts = map[type];
24
+
25
+ for (var i = 0; i < exts.length; i++) {
26
+ if (process.env.DEBUG_MIME && this.types[exts]) {
27
+ console.warn(this._loading.replace(/.*\//, ''), 'changes "' + exts[i] + '" extension type from ' +
28
+ this.types[exts] + ' to ' + type);
29
+ }
30
+
31
+ this.types[exts[i]] = type;
32
+ }
33
+
34
+ // Default extension is the first one we encounter
35
+ if (!this.extensions[type]) {
36
+ this.extensions[type] = exts[0];
37
+ }
38
+ }
39
+ };
40
+
41
+ /**
42
+ * Load an Apache2-style ".types" file
43
+ *
44
+ * This may be called multiple times (it's expected). Where files declare
45
+ * overlapping types/extensions, the last file wins.
46
+ *
47
+ * @param file (String) path of file to load.
48
+ */
49
+ Mime.prototype.load = function(file) {
50
+
51
+ this._loading = file;
52
+ // Read file and split into lines
53
+ var map = {},
54
+ content = fs.readFileSync(file, 'ascii'),
55
+ lines = content.split(/[\r\n]+/);
56
+
57
+ lines.forEach(function(line) {
58
+ // Clean up whitespace/comments, and split into fields
59
+ var fields = line.replace(/\s*#.*|^\s*|\s*$/g, '').split(/\s+/);
60
+ map[fields.shift()] = fields;
61
+ });
62
+
63
+ this.define(map);
64
+
65
+ this._loading = null;
66
+ };
67
+
68
+ /**
69
+ * Lookup a mime type based on extension
70
+ */
71
+ Mime.prototype.lookup = function(path, fallback) {
72
+ var ext = path.replace(/.*[\.\/\\]/, '').toLowerCase();
73
+
74
+ return this.types[ext] || fallback || this.default_type;
75
+ };
76
+
77
+ /**
78
+ * Return file extension associated with a mime type
79
+ */
80
+ Mime.prototype.extension = function(mimeType) {
81
+ var type = mimeType.match(/^\s*([^;\s]*)(?:;|\s|$)/)[1].toLowerCase();
82
+ return this.extensions[type];
83
+ };
84
+
85
+ // Default instance
86
+ var mime = new Mime();
87
+
88
+ // Load local copy of
89
+ // http://svn.apache.org/repos/asf/httpd/httpd/trunk/docs/conf/mime.types
90
+ mime.load(path.join(__dirname, 'types/mime.types'));
91
+
92
+ // Load additional types from node.js community
93
+ mime.load(path.join(__dirname, 'types/node.types'));
94
+
95
+ // Default type
96
+ mime.default_type = mime.lookup('bin');
97
+
98
+ //
99
+ // Additional API specific to the default instance
100
+ //
101
+
102
+ mime.Mime = Mime;
103
+
104
+ /**
105
+ * Lookup a charset based on mime type.
106
+ */
107
+ mime.charsets = {
108
+ lookup: function(mimeType, fallback) {
109
+ // Assume text types are utf8
110
+ return (/^text\//).test(mimeType) ? 'UTF-8' : fallback;
111
+ }
112
+ };
113
+
114
+ module.exports = mime;
@@ -0,0 +1,55 @@
1
+ {
2
+ "author": {
3
+ "name": "Robert Kieffer",
4
+ "email": "robert@broofa.com",
5
+ "url": "http://github.com/broofa"
6
+ },
7
+ "contributors": [
8
+ {
9
+ "name": "Benjamin Thomas",
10
+ "email": "benjamin@benjaminthomas.org",
11
+ "url": "http://github.com/bentomas"
12
+ }
13
+ ],
14
+ "dependencies": {},
15
+ "description": "A comprehensive library for mime-type mapping",
16
+ "devDependencies": {},
17
+ "keywords": [
18
+ "util",
19
+ "mime"
20
+ ],
21
+ "main": "mime.js",
22
+ "name": "mime",
23
+ "repository": {
24
+ "url": "https://github.com/broofa/node-mime",
25
+ "type": "git"
26
+ },
27
+ "version": "1.2.11",
28
+ "bugs": {
29
+ "url": "https://github.com/broofa/node-mime/issues"
30
+ },
31
+ "_id": "mime@1.2.11",
32
+ "dist": {
33
+ "shasum": "58203eed86e3a5ef17aed2b7d9ebd47f0a60dd10",
34
+ "tarball": "http://registry.npmjs.org/mime/-/mime-1.2.11.tgz"
35
+ },
36
+ "_from": "mime@>=1.2.11 <1.3.0",
37
+ "_npmVersion": "1.3.6",
38
+ "_npmUser": {
39
+ "name": "broofa",
40
+ "email": "robert@broofa.com"
41
+ },
42
+ "maintainers": [
43
+ {
44
+ "name": "broofa",
45
+ "email": "robert@broofa.com"
46
+ },
47
+ {
48
+ "name": "bentomas",
49
+ "email": "benjamin@benjaminthomas.org"
50
+ }
51
+ ],
52
+ "directories": {},
53
+ "_shasum": "58203eed86e3a5ef17aed2b7d9ebd47f0a60dd10",
54
+ "_resolved": "https://registry.npmjs.org/mime/-/mime-1.2.11.tgz"
55
+ }
@@ -0,0 +1,84 @@
1
+ /**
2
+ * Usage: node test.js
3
+ */
4
+
5
+ var mime = require('./mime');
6
+ var assert = require('assert');
7
+ var path = require('path');
8
+
9
+ function eq(a, b) {
10
+ console.log('Test: ' + a + ' === ' + b);
11
+ assert.strictEqual.apply(null, arguments);
12
+ }
13
+
14
+ console.log(Object.keys(mime.extensions).length + ' types');
15
+ console.log(Object.keys(mime.types).length + ' extensions\n');
16
+
17
+ //
18
+ // Test mime lookups
19
+ //
20
+
21
+ eq('text/plain', mime.lookup('text.txt')); // normal file
22
+ eq('text/plain', mime.lookup('TEXT.TXT')); // uppercase
23
+ eq('text/plain', mime.lookup('dir/text.txt')); // dir + file
24
+ eq('text/plain', mime.lookup('.text.txt')); // hidden file
25
+ eq('text/plain', mime.lookup('.txt')); // nameless
26
+ eq('text/plain', mime.lookup('txt')); // extension-only
27
+ eq('text/plain', mime.lookup('/txt')); // extension-less ()
28
+ eq('text/plain', mime.lookup('\\txt')); // Windows, extension-less
29
+ eq('application/octet-stream', mime.lookup('text.nope')); // unrecognized
30
+ eq('fallback', mime.lookup('text.fallback', 'fallback')); // alternate default
31
+
32
+ //
33
+ // Test extensions
34
+ //
35
+
36
+ eq('txt', mime.extension(mime.types.text));
37
+ eq('html', mime.extension(mime.types.htm));
38
+ eq('bin', mime.extension('application/octet-stream'));
39
+ eq('bin', mime.extension('application/octet-stream '));
40
+ eq('html', mime.extension(' text/html; charset=UTF-8'));
41
+ eq('html', mime.extension('text/html; charset=UTF-8 '));
42
+ eq('html', mime.extension('text/html; charset=UTF-8'));
43
+ eq('html', mime.extension('text/html ; charset=UTF-8'));
44
+ eq('html', mime.extension('text/html;charset=UTF-8'));
45
+ eq('html', mime.extension('text/Html;charset=UTF-8'));
46
+ eq(undefined, mime.extension('unrecognized'));
47
+
48
+ //
49
+ // Test node.types lookups
50
+ //
51
+
52
+ eq('application/font-woff', mime.lookup('file.woff'));
53
+ eq('application/octet-stream', mime.lookup('file.buffer'));
54
+ eq('audio/mp4', mime.lookup('file.m4a'));
55
+ eq('font/opentype', mime.lookup('file.otf'));
56
+
57
+ //
58
+ // Test charsets
59
+ //
60
+
61
+ eq('UTF-8', mime.charsets.lookup('text/plain'));
62
+ eq(undefined, mime.charsets.lookup(mime.types.js));
63
+ eq('fallback', mime.charsets.lookup('application/octet-stream', 'fallback'));
64
+
65
+ //
66
+ // Test for overlaps between mime.types and node.types
67
+ //
68
+
69
+ var apacheTypes = new mime.Mime(), nodeTypes = new mime.Mime();
70
+ apacheTypes.load(path.join(__dirname, 'types/mime.types'));
71
+ nodeTypes.load(path.join(__dirname, 'types/node.types'));
72
+
73
+ var keys = [].concat(Object.keys(apacheTypes.types))
74
+ .concat(Object.keys(nodeTypes.types));
75
+ keys.sort();
76
+ for (var i = 1; i < keys.length; i++) {
77
+ if (keys[i] == keys[i-1]) {
78
+ console.warn('Warning: ' +
79
+ 'node.types defines ' + keys[i] + '->' + nodeTypes.types[keys[i]] +
80
+ ', mime.types defines ' + keys[i] + '->' + apacheTypes.types[keys[i]]);
81
+ }
82
+ }
83
+
84
+ console.log('\nOK');
@@ -0,0 +1,1588 @@
1
+ # This file maps Internet media types to unique file extension(s).
2
+ # Although created for httpd, this file is used by many software systems
3
+ # and has been placed in the public domain for unlimited redisribution.
4
+ #
5
+ # The table below contains both registered and (common) unregistered types.
6
+ # A type that has no unique extension can be ignored -- they are listed
7
+ # here to guide configurations toward known types and to make it easier to
8
+ # identify "new" types. File extensions are also commonly used to indicate
9
+ # content languages and encodings, so choose them carefully.
10
+ #
11
+ # Internet media types should be registered as described in RFC 4288.
12
+ # The registry is at <http://www.iana.org/assignments/media-types/>.
13
+ #
14
+ # MIME type (lowercased) Extensions
15
+ # ============================================ ==========
16
+ # application/1d-interleaved-parityfec
17
+ # application/3gpp-ims+xml
18
+ # application/activemessage
19
+ application/andrew-inset ez
20
+ # application/applefile
21
+ application/applixware aw
22
+ application/atom+xml atom
23
+ application/atomcat+xml atomcat
24
+ # application/atomicmail
25
+ application/atomsvc+xml atomsvc
26
+ # application/auth-policy+xml
27
+ # application/batch-smtp
28
+ # application/beep+xml
29
+ # application/calendar+xml
30
+ # application/cals-1840
31
+ # application/ccmp+xml
32
+ application/ccxml+xml ccxml
33
+ application/cdmi-capability cdmia
34
+ application/cdmi-container cdmic
35
+ application/cdmi-domain cdmid
36
+ application/cdmi-object cdmio
37
+ application/cdmi-queue cdmiq
38
+ # application/cea-2018+xml
39
+ # application/cellml+xml
40
+ # application/cfw
41
+ # application/cnrp+xml
42
+ # application/commonground
43
+ # application/conference-info+xml
44
+ # application/cpl+xml
45
+ # application/csta+xml
46
+ # application/cstadata+xml
47
+ application/cu-seeme cu
48
+ # application/cybercash
49
+ application/davmount+xml davmount
50
+ # application/dca-rft
51
+ # application/dec-dx
52
+ # application/dialog-info+xml
53
+ # application/dicom
54
+ # application/dns
55
+ application/docbook+xml dbk
56
+ # application/dskpp+xml
57
+ application/dssc+der dssc
58
+ application/dssc+xml xdssc
59
+ # application/dvcs
60
+ application/ecmascript ecma
61
+ # application/edi-consent
62
+ # application/edi-x12
63
+ # application/edifact
64
+ application/emma+xml emma
65
+ # application/epp+xml
66
+ application/epub+zip epub
67
+ # application/eshop
68
+ # application/example
69
+ application/exi exi
70
+ # application/fastinfoset
71
+ # application/fastsoap
72
+ # application/fits
73
+ application/font-tdpfr pfr
74
+ # application/framework-attributes+xml
75
+ application/gml+xml gml
76
+ application/gpx+xml gpx
77
+ application/gxf gxf
78
+ # application/h224
79
+ # application/held+xml
80
+ # application/http
81
+ application/hyperstudio stk
82
+ # application/ibe-key-request+xml
83
+ # application/ibe-pkg-reply+xml
84
+ # application/ibe-pp-data
85
+ # application/iges
86
+ # application/im-iscomposing+xml
87
+ # application/index
88
+ # application/index.cmd
89
+ # application/index.obj
90
+ # application/index.response
91
+ # application/index.vnd
92
+ application/inkml+xml ink inkml
93
+ # application/iotp
94
+ application/ipfix ipfix
95
+ # application/ipp
96
+ # application/isup
97
+ application/java-archive jar
98
+ application/java-serialized-object ser
99
+ application/java-vm class
100
+ application/javascript js
101
+ application/json json
102
+ application/jsonml+json jsonml
103
+ # application/kpml-request+xml
104
+ # application/kpml-response+xml
105
+ application/lost+xml lostxml
106
+ application/mac-binhex40 hqx
107
+ application/mac-compactpro cpt
108
+ # application/macwriteii
109
+ application/mads+xml mads
110
+ application/marc mrc
111
+ application/marcxml+xml mrcx
112
+ application/mathematica ma nb mb
113
+ # application/mathml-content+xml
114
+ # application/mathml-presentation+xml
115
+ application/mathml+xml mathml
116
+ # application/mbms-associated-procedure-description+xml
117
+ # application/mbms-deregister+xml
118
+ # application/mbms-envelope+xml
119
+ # application/mbms-msk+xml
120
+ # application/mbms-msk-response+xml
121
+ # application/mbms-protection-description+xml
122
+ # application/mbms-reception-report+xml
123
+ # application/mbms-register+xml
124
+ # application/mbms-register-response+xml
125
+ # application/mbms-user-service-description+xml
126
+ application/mbox mbox
127
+ # application/media_control+xml
128
+ application/mediaservercontrol+xml mscml
129
+ application/metalink+xml metalink
130
+ application/metalink4+xml meta4
131
+ application/mets+xml mets
132
+ # application/mikey
133
+ application/mods+xml mods
134
+ # application/moss-keys
135
+ # application/moss-signature
136
+ # application/mosskey-data
137
+ # application/mosskey-request
138
+ application/mp21 m21 mp21
139
+ application/mp4 mp4s
140
+ # application/mpeg4-generic
141
+ # application/mpeg4-iod
142
+ # application/mpeg4-iod-xmt
143
+ # application/msc-ivr+xml
144
+ # application/msc-mixer+xml
145
+ application/msword doc dot
146
+ application/mxf mxf
147
+ # application/nasdata
148
+ # application/news-checkgroups
149
+ # application/news-groupinfo
150
+ # application/news-transmission
151
+ # application/nss
152
+ # application/ocsp-request
153
+ # application/ocsp-response
154
+ application/octet-stream bin dms lrf mar so dist distz pkg bpk dump elc deploy
155
+ application/oda oda
156
+ application/oebps-package+xml opf
157
+ application/ogg ogx
158
+ application/omdoc+xml omdoc
159
+ application/onenote onetoc onetoc2 onetmp onepkg
160
+ application/oxps oxps
161
+ # application/parityfec
162
+ application/patch-ops-error+xml xer
163
+ application/pdf pdf
164
+ application/pgp-encrypted pgp
165
+ # application/pgp-keys
166
+ application/pgp-signature asc sig
167
+ application/pics-rules prf
168
+ # application/pidf+xml
169
+ # application/pidf-diff+xml
170
+ application/pkcs10 p10
171
+ application/pkcs7-mime p7m p7c
172
+ application/pkcs7-signature p7s
173
+ application/pkcs8 p8
174
+ application/pkix-attr-cert ac
175
+ application/pkix-cert cer
176
+ application/pkix-crl crl
177
+ application/pkix-pkipath pkipath
178
+ application/pkixcmp pki
179
+ application/pls+xml pls
180
+ # application/poc-settings+xml
181
+ application/postscript ai eps ps
182
+ # application/prs.alvestrand.titrax-sheet
183
+ application/prs.cww cww
184
+ # application/prs.nprend
185
+ # application/prs.plucker
186
+ # application/prs.rdf-xml-crypt
187
+ # application/prs.xsf+xml
188
+ application/pskc+xml pskcxml
189
+ # application/qsig
190
+ application/rdf+xml rdf
191
+ application/reginfo+xml rif
192
+ application/relax-ng-compact-syntax rnc
193
+ # application/remote-printing
194
+ application/resource-lists+xml rl
195
+ application/resource-lists-diff+xml rld
196
+ # application/riscos
197
+ # application/rlmi+xml
198
+ application/rls-services+xml rs
199
+ application/rpki-ghostbusters gbr
200
+ application/rpki-manifest mft
201
+ application/rpki-roa roa
202
+ # application/rpki-updown
203
+ application/rsd+xml rsd
204
+ application/rss+xml rss
205
+ application/rtf rtf
206
+ # application/rtx
207
+ # application/samlassertion+xml
208
+ # application/samlmetadata+xml
209
+ application/sbml+xml sbml
210
+ application/scvp-cv-request scq
211
+ application/scvp-cv-response scs
212
+ application/scvp-vp-request spq
213
+ application/scvp-vp-response spp
214
+ application/sdp sdp
215
+ # application/set-payment
216
+ application/set-payment-initiation setpay
217
+ # application/set-registration
218
+ application/set-registration-initiation setreg
219
+ # application/sgml
220
+ # application/sgml-open-catalog
221
+ application/shf+xml shf
222
+ # application/sieve
223
+ # application/simple-filter+xml
224
+ # application/simple-message-summary
225
+ # application/simplesymbolcontainer
226
+ # application/slate
227
+ # application/smil
228
+ application/smil+xml smi smil
229
+ # application/soap+fastinfoset
230
+ # application/soap+xml
231
+ application/sparql-query rq
232
+ application/sparql-results+xml srx
233
+ # application/spirits-event+xml
234
+ application/srgs gram
235
+ application/srgs+xml grxml
236
+ application/sru+xml sru
237
+ application/ssdl+xml ssdl
238
+ application/ssml+xml ssml
239
+ # application/tamp-apex-update
240
+ # application/tamp-apex-update-confirm
241
+ # application/tamp-community-update
242
+ # application/tamp-community-update-confirm
243
+ # application/tamp-error
244
+ # application/tamp-sequence-adjust
245
+ # application/tamp-sequence-adjust-confirm
246
+ # application/tamp-status-query
247
+ # application/tamp-status-response
248
+ # application/tamp-update
249
+ # application/tamp-update-confirm
250
+ application/tei+xml tei teicorpus
251
+ application/thraud+xml tfi
252
+ # application/timestamp-query
253
+ # application/timestamp-reply
254
+ application/timestamped-data tsd
255
+ # application/tve-trigger
256
+ # application/ulpfec
257
+ # application/vcard+xml
258
+ # application/vemmi
259
+ # application/vividence.scriptfile
260
+ # application/vnd.3gpp.bsf+xml
261
+ application/vnd.3gpp.pic-bw-large plb
262
+ application/vnd.3gpp.pic-bw-small psb
263
+ application/vnd.3gpp.pic-bw-var pvb
264
+ # application/vnd.3gpp.sms
265
+ # application/vnd.3gpp2.bcmcsinfo+xml
266
+ # application/vnd.3gpp2.sms
267
+ application/vnd.3gpp2.tcap tcap
268
+ application/vnd.3m.post-it-notes pwn
269
+ application/vnd.accpac.simply.aso aso
270
+ application/vnd.accpac.simply.imp imp
271
+ application/vnd.acucobol acu
272
+ application/vnd.acucorp atc acutc
273
+ application/vnd.adobe.air-application-installer-package+zip air
274
+ application/vnd.adobe.formscentral.fcdt fcdt
275
+ application/vnd.adobe.fxp fxp fxpl
276
+ # application/vnd.adobe.partial-upload
277
+ application/vnd.adobe.xdp+xml xdp
278
+ application/vnd.adobe.xfdf xfdf
279
+ # application/vnd.aether.imp
280
+ # application/vnd.ah-barcode
281
+ application/vnd.ahead.space ahead
282
+ application/vnd.airzip.filesecure.azf azf
283
+ application/vnd.airzip.filesecure.azs azs
284
+ application/vnd.amazon.ebook azw
285
+ application/vnd.americandynamics.acc acc
286
+ application/vnd.amiga.ami ami
287
+ # application/vnd.amundsen.maze+xml
288
+ application/vnd.android.package-archive apk
289
+ application/vnd.anser-web-certificate-issue-initiation cii
290
+ application/vnd.anser-web-funds-transfer-initiation fti
291
+ application/vnd.antix.game-component atx
292
+ application/vnd.apple.installer+xml mpkg
293
+ application/vnd.apple.mpegurl m3u8
294
+ # application/vnd.arastra.swi
295
+ application/vnd.aristanetworks.swi swi
296
+ application/vnd.astraea-software.iota iota
297
+ application/vnd.audiograph aep
298
+ # application/vnd.autopackage
299
+ # application/vnd.avistar+xml
300
+ application/vnd.blueice.multipass mpm
301
+ # application/vnd.bluetooth.ep.oob
302
+ application/vnd.bmi bmi
303
+ application/vnd.businessobjects rep
304
+ # application/vnd.cab-jscript
305
+ # application/vnd.canon-cpdl
306
+ # application/vnd.canon-lips
307
+ # application/vnd.cendio.thinlinc.clientconf
308
+ application/vnd.chemdraw+xml cdxml
309
+ application/vnd.chipnuts.karaoke-mmd mmd
310
+ application/vnd.cinderella cdy
311
+ # application/vnd.cirpack.isdn-ext
312
+ application/vnd.claymore cla
313
+ application/vnd.cloanto.rp9 rp9
314
+ application/vnd.clonk.c4group c4g c4d c4f c4p c4u
315
+ application/vnd.cluetrust.cartomobile-config c11amc
316
+ application/vnd.cluetrust.cartomobile-config-pkg c11amz
317
+ # application/vnd.collection+json
318
+ # application/vnd.commerce-battelle
319
+ application/vnd.commonspace csp
320
+ application/vnd.contact.cmsg cdbcmsg
321
+ application/vnd.cosmocaller cmc
322
+ application/vnd.crick.clicker clkx
323
+ application/vnd.crick.clicker.keyboard clkk
324
+ application/vnd.crick.clicker.palette clkp
325
+ application/vnd.crick.clicker.template clkt
326
+ application/vnd.crick.clicker.wordbank clkw
327
+ application/vnd.criticaltools.wbs+xml wbs
328
+ application/vnd.ctc-posml pml
329
+ # application/vnd.ctct.ws+xml
330
+ # application/vnd.cups-pdf
331
+ # application/vnd.cups-postscript
332
+ application/vnd.cups-ppd ppd
333
+ # application/vnd.cups-raster
334
+ # application/vnd.cups-raw
335
+ # application/vnd.curl
336
+ application/vnd.curl.car car
337
+ application/vnd.curl.pcurl pcurl
338
+ # application/vnd.cybank
339
+ application/vnd.dart dart
340
+ application/vnd.data-vision.rdz rdz
341
+ application/vnd.dece.data uvf uvvf uvd uvvd
342
+ application/vnd.dece.ttml+xml uvt uvvt
343
+ application/vnd.dece.unspecified uvx uvvx
344
+ application/vnd.dece.zip uvz uvvz
345
+ application/vnd.denovo.fcselayout-link fe_launch
346
+ # application/vnd.dir-bi.plate-dl-nosuffix
347
+ application/vnd.dna dna
348
+ application/vnd.dolby.mlp mlp
349
+ # application/vnd.dolby.mobile.1
350
+ # application/vnd.dolby.mobile.2
351
+ application/vnd.dpgraph dpg
352
+ application/vnd.dreamfactory dfac
353
+ application/vnd.ds-keypoint kpxx
354
+ application/vnd.dvb.ait ait
355
+ # application/vnd.dvb.dvbj
356
+ # application/vnd.dvb.esgcontainer
357
+ # application/vnd.dvb.ipdcdftnotifaccess
358
+ # application/vnd.dvb.ipdcesgaccess
359
+ # application/vnd.dvb.ipdcesgaccess2
360
+ # application/vnd.dvb.ipdcesgpdd
361
+ # application/vnd.dvb.ipdcroaming
362
+ # application/vnd.dvb.iptv.alfec-base
363
+ # application/vnd.dvb.iptv.alfec-enhancement
364
+ # application/vnd.dvb.notif-aggregate-root+xml
365
+ # application/vnd.dvb.notif-container+xml
366
+ # application/vnd.dvb.notif-generic+xml
367
+ # application/vnd.dvb.notif-ia-msglist+xml
368
+ # application/vnd.dvb.notif-ia-registration-request+xml
369
+ # application/vnd.dvb.notif-ia-registration-response+xml
370
+ # application/vnd.dvb.notif-init+xml
371
+ # application/vnd.dvb.pfr
372
+ application/vnd.dvb.service svc
373
+ # application/vnd.dxr
374
+ application/vnd.dynageo geo
375
+ # application/vnd.easykaraoke.cdgdownload
376
+ # application/vnd.ecdis-update
377
+ application/vnd.ecowin.chart mag
378
+ # application/vnd.ecowin.filerequest
379
+ # application/vnd.ecowin.fileupdate
380
+ # application/vnd.ecowin.series
381
+ # application/vnd.ecowin.seriesrequest
382
+ # application/vnd.ecowin.seriesupdate
383
+ # application/vnd.emclient.accessrequest+xml
384
+ application/vnd.enliven nml
385
+ # application/vnd.eprints.data+xml
386
+ application/vnd.epson.esf esf
387
+ application/vnd.epson.msf msf
388
+ application/vnd.epson.quickanime qam
389
+ application/vnd.epson.salt slt
390
+ application/vnd.epson.ssf ssf
391
+ # application/vnd.ericsson.quickcall
392
+ application/vnd.eszigno3+xml es3 et3
393
+ # application/vnd.etsi.aoc+xml
394
+ # application/vnd.etsi.cug+xml
395
+ # application/vnd.etsi.iptvcommand+xml
396
+ # application/vnd.etsi.iptvdiscovery+xml
397
+ # application/vnd.etsi.iptvprofile+xml
398
+ # application/vnd.etsi.iptvsad-bc+xml
399
+ # application/vnd.etsi.iptvsad-cod+xml
400
+ # application/vnd.etsi.iptvsad-npvr+xml
401
+ # application/vnd.etsi.iptvservice+xml
402
+ # application/vnd.etsi.iptvsync+xml
403
+ # application/vnd.etsi.iptvueprofile+xml
404
+ # application/vnd.etsi.mcid+xml
405
+ # application/vnd.etsi.overload-control-policy-dataset+xml
406
+ # application/vnd.etsi.sci+xml
407
+ # application/vnd.etsi.simservs+xml
408
+ # application/vnd.etsi.tsl+xml
409
+ # application/vnd.etsi.tsl.der
410
+ # application/vnd.eudora.data
411
+ application/vnd.ezpix-album ez2
412
+ application/vnd.ezpix-package ez3
413
+ # application/vnd.f-secure.mobile
414
+ application/vnd.fdf fdf
415
+ application/vnd.fdsn.mseed mseed
416
+ application/vnd.fdsn.seed seed dataless
417
+ # application/vnd.ffsns
418
+ # application/vnd.fints
419
+ application/vnd.flographit gph
420
+ application/vnd.fluxtime.clip ftc
421
+ # application/vnd.font-fontforge-sfd
422
+ application/vnd.framemaker fm frame maker book
423
+ application/vnd.frogans.fnc fnc
424
+ application/vnd.frogans.ltf ltf
425
+ application/vnd.fsc.weblaunch fsc
426
+ application/vnd.fujitsu.oasys oas
427
+ application/vnd.fujitsu.oasys2 oa2
428
+ application/vnd.fujitsu.oasys3 oa3
429
+ application/vnd.fujitsu.oasysgp fg5
430
+ application/vnd.fujitsu.oasysprs bh2
431
+ # application/vnd.fujixerox.art-ex
432
+ # application/vnd.fujixerox.art4
433
+ # application/vnd.fujixerox.hbpl
434
+ application/vnd.fujixerox.ddd ddd
435
+ application/vnd.fujixerox.docuworks xdw
436
+ application/vnd.fujixerox.docuworks.binder xbd
437
+ # application/vnd.fut-misnet
438
+ application/vnd.fuzzysheet fzs
439
+ application/vnd.genomatix.tuxedo txd
440
+ # application/vnd.geocube+xml
441
+ application/vnd.geogebra.file ggb
442
+ application/vnd.geogebra.tool ggt
443
+ application/vnd.geometry-explorer gex gre
444
+ application/vnd.geonext gxt
445
+ application/vnd.geoplan g2w
446
+ application/vnd.geospace g3w
447
+ # application/vnd.globalplatform.card-content-mgt
448
+ # application/vnd.globalplatform.card-content-mgt-response
449
+ application/vnd.gmx gmx
450
+ application/vnd.google-earth.kml+xml kml
451
+ application/vnd.google-earth.kmz kmz
452
+ application/vnd.grafeq gqf gqs
453
+ # application/vnd.gridmp
454
+ application/vnd.groove-account gac
455
+ application/vnd.groove-help ghf
456
+ application/vnd.groove-identity-message gim
457
+ application/vnd.groove-injector grv
458
+ application/vnd.groove-tool-message gtm
459
+ application/vnd.groove-tool-template tpl
460
+ application/vnd.groove-vcard vcg
461
+ # application/vnd.hal+json
462
+ application/vnd.hal+xml hal
463
+ application/vnd.handheld-entertainment+xml zmm
464
+ application/vnd.hbci hbci
465
+ # application/vnd.hcl-bireports
466
+ application/vnd.hhe.lesson-player les
467
+ application/vnd.hp-hpgl hpgl
468
+ application/vnd.hp-hpid hpid
469
+ application/vnd.hp-hps hps
470
+ application/vnd.hp-jlyt jlt
471
+ application/vnd.hp-pcl pcl
472
+ application/vnd.hp-pclxl pclxl
473
+ # application/vnd.httphone
474
+ application/vnd.hydrostatix.sof-data sfd-hdstx
475
+ # application/vnd.hzn-3d-crossword
476
+ # application/vnd.ibm.afplinedata
477
+ # application/vnd.ibm.electronic-media
478
+ application/vnd.ibm.minipay mpy
479
+ application/vnd.ibm.modcap afp listafp list3820
480
+ application/vnd.ibm.rights-management irm
481
+ application/vnd.ibm.secure-container sc
482
+ application/vnd.iccprofile icc icm
483
+ application/vnd.igloader igl
484
+ application/vnd.immervision-ivp ivp
485
+ application/vnd.immervision-ivu ivu
486
+ # application/vnd.informedcontrol.rms+xml
487
+ # application/vnd.informix-visionary
488
+ # application/vnd.infotech.project
489
+ # application/vnd.infotech.project+xml
490
+ # application/vnd.innopath.wamp.notification
491
+ application/vnd.insors.igm igm
492
+ application/vnd.intercon.formnet xpw xpx
493
+ application/vnd.intergeo i2g
494
+ # application/vnd.intertrust.digibox
495
+ # application/vnd.intertrust.nncp
496
+ application/vnd.intu.qbo qbo
497
+ application/vnd.intu.qfx qfx
498
+ # application/vnd.iptc.g2.conceptitem+xml
499
+ # application/vnd.iptc.g2.knowledgeitem+xml
500
+ # application/vnd.iptc.g2.newsitem+xml
501
+ # application/vnd.iptc.g2.newsmessage+xml
502
+ # application/vnd.iptc.g2.packageitem+xml
503
+ # application/vnd.iptc.g2.planningitem+xml
504
+ application/vnd.ipunplugged.rcprofile rcprofile
505
+ application/vnd.irepository.package+xml irp
506
+ application/vnd.is-xpr xpr
507
+ application/vnd.isac.fcs fcs
508
+ application/vnd.jam jam
509
+ # application/vnd.japannet-directory-service
510
+ # application/vnd.japannet-jpnstore-wakeup
511
+ # application/vnd.japannet-payment-wakeup
512
+ # application/vnd.japannet-registration
513
+ # application/vnd.japannet-registration-wakeup
514
+ # application/vnd.japannet-setstore-wakeup
515
+ # application/vnd.japannet-verification
516
+ # application/vnd.japannet-verification-wakeup
517
+ application/vnd.jcp.javame.midlet-rms rms
518
+ application/vnd.jisp jisp
519
+ application/vnd.joost.joda-archive joda
520
+ application/vnd.kahootz ktz ktr
521
+ application/vnd.kde.karbon karbon
522
+ application/vnd.kde.kchart chrt
523
+ application/vnd.kde.kformula kfo
524
+ application/vnd.kde.kivio flw
525
+ application/vnd.kde.kontour kon
526
+ application/vnd.kde.kpresenter kpr kpt
527
+ application/vnd.kde.kspread ksp
528
+ application/vnd.kde.kword kwd kwt
529
+ application/vnd.kenameaapp htke
530
+ application/vnd.kidspiration kia
531
+ application/vnd.kinar kne knp
532
+ application/vnd.koan skp skd skt skm
533
+ application/vnd.kodak-descriptor sse
534
+ application/vnd.las.las+xml lasxml
535
+ # application/vnd.liberty-request+xml
536
+ application/vnd.llamagraphics.life-balance.desktop lbd
537
+ application/vnd.llamagraphics.life-balance.exchange+xml lbe
538
+ application/vnd.lotus-1-2-3 123
539
+ application/vnd.lotus-approach apr
540
+ application/vnd.lotus-freelance pre
541
+ application/vnd.lotus-notes nsf
542
+ application/vnd.lotus-organizer org
543
+ application/vnd.lotus-screencam scm
544
+ application/vnd.lotus-wordpro lwp
545
+ application/vnd.macports.portpkg portpkg
546
+ # application/vnd.marlin.drm.actiontoken+xml
547
+ # application/vnd.marlin.drm.conftoken+xml
548
+ # application/vnd.marlin.drm.license+xml
549
+ # application/vnd.marlin.drm.mdcf
550
+ application/vnd.mcd mcd
551
+ application/vnd.medcalcdata mc1
552
+ application/vnd.mediastation.cdkey cdkey
553
+ # application/vnd.meridian-slingshot
554
+ application/vnd.mfer mwf
555
+ application/vnd.mfmp mfm
556
+ application/vnd.micrografx.flo flo
557
+ application/vnd.micrografx.igx igx
558
+ application/vnd.mif mif
559
+ # application/vnd.minisoft-hp3000-save
560
+ # application/vnd.mitsubishi.misty-guard.trustweb
561
+ application/vnd.mobius.daf daf
562
+ application/vnd.mobius.dis dis
563
+ application/vnd.mobius.mbk mbk
564
+ application/vnd.mobius.mqy mqy
565
+ application/vnd.mobius.msl msl
566
+ application/vnd.mobius.plc plc
567
+ application/vnd.mobius.txf txf
568
+ application/vnd.mophun.application mpn
569
+ application/vnd.mophun.certificate mpc
570
+ # application/vnd.motorola.flexsuite
571
+ # application/vnd.motorola.flexsuite.adsi
572
+ # application/vnd.motorola.flexsuite.fis
573
+ # application/vnd.motorola.flexsuite.gotap
574
+ # application/vnd.motorola.flexsuite.kmr
575
+ # application/vnd.motorola.flexsuite.ttc
576
+ # application/vnd.motorola.flexsuite.wem
577
+ # application/vnd.motorola.iprm
578
+ application/vnd.mozilla.xul+xml xul
579
+ application/vnd.ms-artgalry cil
580
+ # application/vnd.ms-asf
581
+ application/vnd.ms-cab-compressed cab
582
+ # application/vnd.ms-color.iccprofile
583
+ application/vnd.ms-excel xls xlm xla xlc xlt xlw
584
+ application/vnd.ms-excel.addin.macroenabled.12 xlam
585
+ application/vnd.ms-excel.sheet.binary.macroenabled.12 xlsb
586
+ application/vnd.ms-excel.sheet.macroenabled.12 xlsm
587
+ application/vnd.ms-excel.template.macroenabled.12 xltm
588
+ application/vnd.ms-fontobject eot
589
+ application/vnd.ms-htmlhelp chm
590
+ application/vnd.ms-ims ims
591
+ application/vnd.ms-lrm lrm
592
+ # application/vnd.ms-office.activex+xml
593
+ application/vnd.ms-officetheme thmx
594
+ # application/vnd.ms-opentype
595
+ # application/vnd.ms-package.obfuscated-opentype
596
+ application/vnd.ms-pki.seccat cat
597
+ application/vnd.ms-pki.stl stl
598
+ # application/vnd.ms-playready.initiator+xml
599
+ application/vnd.ms-powerpoint ppt pps pot
600
+ application/vnd.ms-powerpoint.addin.macroenabled.12 ppam
601
+ application/vnd.ms-powerpoint.presentation.macroenabled.12 pptm
602
+ application/vnd.ms-powerpoint.slide.macroenabled.12 sldm
603
+ application/vnd.ms-powerpoint.slideshow.macroenabled.12 ppsm
604
+ application/vnd.ms-powerpoint.template.macroenabled.12 potm
605
+ # application/vnd.ms-printing.printticket+xml
606
+ application/vnd.ms-project mpp mpt
607
+ # application/vnd.ms-tnef
608
+ # application/vnd.ms-wmdrm.lic-chlg-req
609
+ # application/vnd.ms-wmdrm.lic-resp
610
+ # application/vnd.ms-wmdrm.meter-chlg-req
611
+ # application/vnd.ms-wmdrm.meter-resp
612
+ application/vnd.ms-word.document.macroenabled.12 docm
613
+ application/vnd.ms-word.template.macroenabled.12 dotm
614
+ application/vnd.ms-works wps wks wcm wdb
615
+ application/vnd.ms-wpl wpl
616
+ application/vnd.ms-xpsdocument xps
617
+ application/vnd.mseq mseq
618
+ # application/vnd.msign
619
+ # application/vnd.multiad.creator
620
+ # application/vnd.multiad.creator.cif
621
+ # application/vnd.music-niff
622
+ application/vnd.musician mus
623
+ application/vnd.muvee.style msty
624
+ application/vnd.mynfc taglet
625
+ # application/vnd.ncd.control
626
+ # application/vnd.ncd.reference
627
+ # application/vnd.nervana
628
+ # application/vnd.netfpx
629
+ application/vnd.neurolanguage.nlu nlu
630
+ application/vnd.nitf ntf nitf
631
+ application/vnd.noblenet-directory nnd
632
+ application/vnd.noblenet-sealer nns
633
+ application/vnd.noblenet-web nnw
634
+ # application/vnd.nokia.catalogs
635
+ # application/vnd.nokia.conml+wbxml
636
+ # application/vnd.nokia.conml+xml
637
+ # application/vnd.nokia.isds-radio-presets
638
+ # application/vnd.nokia.iptv.config+xml
639
+ # application/vnd.nokia.landmark+wbxml
640
+ # application/vnd.nokia.landmark+xml
641
+ # application/vnd.nokia.landmarkcollection+xml
642
+ # application/vnd.nokia.n-gage.ac+xml
643
+ application/vnd.nokia.n-gage.data ngdat
644
+ application/vnd.nokia.n-gage.symbian.install n-gage
645
+ # application/vnd.nokia.ncd
646
+ # application/vnd.nokia.pcd+wbxml
647
+ # application/vnd.nokia.pcd+xml
648
+ application/vnd.nokia.radio-preset rpst
649
+ application/vnd.nokia.radio-presets rpss
650
+ application/vnd.novadigm.edm edm
651
+ application/vnd.novadigm.edx edx
652
+ application/vnd.novadigm.ext ext
653
+ # application/vnd.ntt-local.file-transfer
654
+ # application/vnd.ntt-local.sip-ta_remote
655
+ # application/vnd.ntt-local.sip-ta_tcp_stream
656
+ application/vnd.oasis.opendocument.chart odc
657
+ application/vnd.oasis.opendocument.chart-template otc
658
+ application/vnd.oasis.opendocument.database odb
659
+ application/vnd.oasis.opendocument.formula odf
660
+ application/vnd.oasis.opendocument.formula-template odft
661
+ application/vnd.oasis.opendocument.graphics odg
662
+ application/vnd.oasis.opendocument.graphics-template otg
663
+ application/vnd.oasis.opendocument.image odi
664
+ application/vnd.oasis.opendocument.image-template oti
665
+ application/vnd.oasis.opendocument.presentation odp
666
+ application/vnd.oasis.opendocument.presentation-template otp
667
+ application/vnd.oasis.opendocument.spreadsheet ods
668
+ application/vnd.oasis.opendocument.spreadsheet-template ots
669
+ application/vnd.oasis.opendocument.text odt
670
+ application/vnd.oasis.opendocument.text-master odm
671
+ application/vnd.oasis.opendocument.text-template ott
672
+ application/vnd.oasis.opendocument.text-web oth
673
+ # application/vnd.obn
674
+ # application/vnd.oftn.l10n+json
675
+ # application/vnd.oipf.contentaccessdownload+xml
676
+ # application/vnd.oipf.contentaccessstreaming+xml
677
+ # application/vnd.oipf.cspg-hexbinary
678
+ # application/vnd.oipf.dae.svg+xml
679
+ # application/vnd.oipf.dae.xhtml+xml
680
+ # application/vnd.oipf.mippvcontrolmessage+xml
681
+ # application/vnd.oipf.pae.gem
682
+ # application/vnd.oipf.spdiscovery+xml
683
+ # application/vnd.oipf.spdlist+xml
684
+ # application/vnd.oipf.ueprofile+xml
685
+ # application/vnd.oipf.userprofile+xml
686
+ application/vnd.olpc-sugar xo
687
+ # application/vnd.oma-scws-config
688
+ # application/vnd.oma-scws-http-request
689
+ # application/vnd.oma-scws-http-response
690
+ # application/vnd.oma.bcast.associated-procedure-parameter+xml
691
+ # application/vnd.oma.bcast.drm-trigger+xml
692
+ # application/vnd.oma.bcast.imd+xml
693
+ # application/vnd.oma.bcast.ltkm
694
+ # application/vnd.oma.bcast.notification+xml
695
+ # application/vnd.oma.bcast.provisioningtrigger
696
+ # application/vnd.oma.bcast.sgboot
697
+ # application/vnd.oma.bcast.sgdd+xml
698
+ # application/vnd.oma.bcast.sgdu
699
+ # application/vnd.oma.bcast.simple-symbol-container
700
+ # application/vnd.oma.bcast.smartcard-trigger+xml
701
+ # application/vnd.oma.bcast.sprov+xml
702
+ # application/vnd.oma.bcast.stkm
703
+ # application/vnd.oma.cab-address-book+xml
704
+ # application/vnd.oma.cab-feature-handler+xml
705
+ # application/vnd.oma.cab-pcc+xml
706
+ # application/vnd.oma.cab-user-prefs+xml
707
+ # application/vnd.oma.dcd
708
+ # application/vnd.oma.dcdc
709
+ application/vnd.oma.dd2+xml dd2
710
+ # application/vnd.oma.drm.risd+xml
711
+ # application/vnd.oma.group-usage-list+xml
712
+ # application/vnd.oma.pal+xml
713
+ # application/vnd.oma.poc.detailed-progress-report+xml
714
+ # application/vnd.oma.poc.final-report+xml
715
+ # application/vnd.oma.poc.groups+xml
716
+ # application/vnd.oma.poc.invocation-descriptor+xml
717
+ # application/vnd.oma.poc.optimized-progress-report+xml
718
+ # application/vnd.oma.push
719
+ # application/vnd.oma.scidm.messages+xml
720
+ # application/vnd.oma.xcap-directory+xml
721
+ # application/vnd.omads-email+xml
722
+ # application/vnd.omads-file+xml
723
+ # application/vnd.omads-folder+xml
724
+ # application/vnd.omaloc-supl-init
725
+ application/vnd.openofficeorg.extension oxt
726
+ # application/vnd.openxmlformats-officedocument.custom-properties+xml
727
+ # application/vnd.openxmlformats-officedocument.customxmlproperties+xml
728
+ # application/vnd.openxmlformats-officedocument.drawing+xml
729
+ # application/vnd.openxmlformats-officedocument.drawingml.chart+xml
730
+ # application/vnd.openxmlformats-officedocument.drawingml.chartshapes+xml
731
+ # application/vnd.openxmlformats-officedocument.drawingml.diagramcolors+xml
732
+ # application/vnd.openxmlformats-officedocument.drawingml.diagramdata+xml
733
+ # application/vnd.openxmlformats-officedocument.drawingml.diagramlayout+xml
734
+ # application/vnd.openxmlformats-officedocument.drawingml.diagramstyle+xml
735
+ # application/vnd.openxmlformats-officedocument.extended-properties+xml
736
+ # application/vnd.openxmlformats-officedocument.presentationml.commentauthors+xml
737
+ # application/vnd.openxmlformats-officedocument.presentationml.comments+xml
738
+ # application/vnd.openxmlformats-officedocument.presentationml.handoutmaster+xml
739
+ # application/vnd.openxmlformats-officedocument.presentationml.notesmaster+xml
740
+ # application/vnd.openxmlformats-officedocument.presentationml.notesslide+xml
741
+ application/vnd.openxmlformats-officedocument.presentationml.presentation pptx
742
+ # application/vnd.openxmlformats-officedocument.presentationml.presentation.main+xml
743
+ # application/vnd.openxmlformats-officedocument.presentationml.presprops+xml
744
+ application/vnd.openxmlformats-officedocument.presentationml.slide sldx
745
+ # application/vnd.openxmlformats-officedocument.presentationml.slide+xml
746
+ # application/vnd.openxmlformats-officedocument.presentationml.slidelayout+xml
747
+ # application/vnd.openxmlformats-officedocument.presentationml.slidemaster+xml
748
+ application/vnd.openxmlformats-officedocument.presentationml.slideshow ppsx
749
+ # application/vnd.openxmlformats-officedocument.presentationml.slideshow.main+xml
750
+ # application/vnd.openxmlformats-officedocument.presentationml.slideupdateinfo+xml
751
+ # application/vnd.openxmlformats-officedocument.presentationml.tablestyles+xml
752
+ # application/vnd.openxmlformats-officedocument.presentationml.tags+xml
753
+ application/vnd.openxmlformats-officedocument.presentationml.template potx
754
+ # application/vnd.openxmlformats-officedocument.presentationml.template.main+xml
755
+ # application/vnd.openxmlformats-officedocument.presentationml.viewprops+xml
756
+ # application/vnd.openxmlformats-officedocument.spreadsheetml.calcchain+xml
757
+ # application/vnd.openxmlformats-officedocument.spreadsheetml.chartsheet+xml
758
+ # application/vnd.openxmlformats-officedocument.spreadsheetml.comments+xml
759
+ # application/vnd.openxmlformats-officedocument.spreadsheetml.connections+xml
760
+ # application/vnd.openxmlformats-officedocument.spreadsheetml.dialogsheet+xml
761
+ # application/vnd.openxmlformats-officedocument.spreadsheetml.externallink+xml
762
+ # application/vnd.openxmlformats-officedocument.spreadsheetml.pivotcachedefinition+xml
763
+ # application/vnd.openxmlformats-officedocument.spreadsheetml.pivotcacherecords+xml
764
+ # application/vnd.openxmlformats-officedocument.spreadsheetml.pivottable+xml
765
+ # application/vnd.openxmlformats-officedocument.spreadsheetml.querytable+xml
766
+ # application/vnd.openxmlformats-officedocument.spreadsheetml.revisionheaders+xml
767
+ # application/vnd.openxmlformats-officedocument.spreadsheetml.revisionlog+xml
768
+ # application/vnd.openxmlformats-officedocument.spreadsheetml.sharedstrings+xml
769
+ application/vnd.openxmlformats-officedocument.spreadsheetml.sheet xlsx
770
+ # application/vnd.openxmlformats-officedocument.spreadsheetml.sheet.main+xml
771
+ # application/vnd.openxmlformats-officedocument.spreadsheetml.sheetmetadata+xml
772
+ # application/vnd.openxmlformats-officedocument.spreadsheetml.styles+xml
773
+ # application/vnd.openxmlformats-officedocument.spreadsheetml.table+xml
774
+ # application/vnd.openxmlformats-officedocument.spreadsheetml.tablesinglecells+xml
775
+ application/vnd.openxmlformats-officedocument.spreadsheetml.template xltx
776
+ # application/vnd.openxmlformats-officedocument.spreadsheetml.template.main+xml
777
+ # application/vnd.openxmlformats-officedocument.spreadsheetml.usernames+xml
778
+ # application/vnd.openxmlformats-officedocument.spreadsheetml.volatiledependencies+xml
779
+ # application/vnd.openxmlformats-officedocument.spreadsheetml.worksheet+xml
780
+ # application/vnd.openxmlformats-officedocument.theme+xml
781
+ # application/vnd.openxmlformats-officedocument.themeoverride+xml
782
+ # application/vnd.openxmlformats-officedocument.vmldrawing
783
+ # application/vnd.openxmlformats-officedocument.wordprocessingml.comments+xml
784
+ application/vnd.openxmlformats-officedocument.wordprocessingml.document docx
785
+ # application/vnd.openxmlformats-officedocument.wordprocessingml.document.glossary+xml
786
+ # application/vnd.openxmlformats-officedocument.wordprocessingml.document.main+xml
787
+ # application/vnd.openxmlformats-officedocument.wordprocessingml.endnotes+xml
788
+ # application/vnd.openxmlformats-officedocument.wordprocessingml.fonttable+xml
789
+ # application/vnd.openxmlformats-officedocument.wordprocessingml.footer+xml
790
+ # application/vnd.openxmlformats-officedocument.wordprocessingml.footnotes+xml
791
+ # application/vnd.openxmlformats-officedocument.wordprocessingml.numbering+xml
792
+ # application/vnd.openxmlformats-officedocument.wordprocessingml.settings+xml
793
+ # application/vnd.openxmlformats-officedocument.wordprocessingml.styles+xml
794
+ application/vnd.openxmlformats-officedocument.wordprocessingml.template dotx
795
+ # application/vnd.openxmlformats-officedocument.wordprocessingml.template.main+xml
796
+ # application/vnd.openxmlformats-officedocument.wordprocessingml.websettings+xml
797
+ # application/vnd.openxmlformats-package.core-properties+xml
798
+ # application/vnd.openxmlformats-package.digital-signature-xmlsignature+xml
799
+ # application/vnd.openxmlformats-package.relationships+xml
800
+ # application/vnd.quobject-quoxdocument
801
+ # application/vnd.osa.netdeploy
802
+ application/vnd.osgeo.mapguide.package mgp
803
+ # application/vnd.osgi.bundle
804
+ application/vnd.osgi.dp dp
805
+ application/vnd.osgi.subsystem esa
806
+ # application/vnd.otps.ct-kip+xml
807
+ application/vnd.palm pdb pqa oprc
808
+ # application/vnd.paos.xml
809
+ application/vnd.pawaafile paw
810
+ application/vnd.pg.format str
811
+ application/vnd.pg.osasli ei6
812
+ # application/vnd.piaccess.application-licence
813
+ application/vnd.picsel efif
814
+ application/vnd.pmi.widget wg
815
+ # application/vnd.poc.group-advertisement+xml
816
+ application/vnd.pocketlearn plf
817
+ application/vnd.powerbuilder6 pbd
818
+ # application/vnd.powerbuilder6-s
819
+ # application/vnd.powerbuilder7
820
+ # application/vnd.powerbuilder7-s
821
+ # application/vnd.powerbuilder75
822
+ # application/vnd.powerbuilder75-s
823
+ # application/vnd.preminet
824
+ application/vnd.previewsystems.box box
825
+ application/vnd.proteus.magazine mgz
826
+ application/vnd.publishare-delta-tree qps
827
+ application/vnd.pvi.ptid1 ptid
828
+ # application/vnd.pwg-multiplexed
829
+ # application/vnd.pwg-xhtml-print+xml
830
+ # application/vnd.qualcomm.brew-app-res
831
+ application/vnd.quark.quarkxpress qxd qxt qwd qwt qxl qxb
832
+ # application/vnd.radisys.moml+xml
833
+ # application/vnd.radisys.msml+xml
834
+ # application/vnd.radisys.msml-audit+xml
835
+ # application/vnd.radisys.msml-audit-conf+xml
836
+ # application/vnd.radisys.msml-audit-conn+xml
837
+ # application/vnd.radisys.msml-audit-dialog+xml
838
+ # application/vnd.radisys.msml-audit-stream+xml
839
+ # application/vnd.radisys.msml-conf+xml
840
+ # application/vnd.radisys.msml-dialog+xml
841
+ # application/vnd.radisys.msml-dialog-base+xml
842
+ # application/vnd.radisys.msml-dialog-fax-detect+xml
843
+ # application/vnd.radisys.msml-dialog-fax-sendrecv+xml
844
+ # application/vnd.radisys.msml-dialog-group+xml
845
+ # application/vnd.radisys.msml-dialog-speech+xml
846
+ # application/vnd.radisys.msml-dialog-transform+xml
847
+ # application/vnd.rainstor.data
848
+ # application/vnd.rapid
849
+ application/vnd.realvnc.bed bed
850
+ application/vnd.recordare.musicxml mxl
851
+ application/vnd.recordare.musicxml+xml musicxml
852
+ # application/vnd.renlearn.rlprint
853
+ application/vnd.rig.cryptonote cryptonote
854
+ application/vnd.rim.cod cod
855
+ application/vnd.rn-realmedia rm
856
+ application/vnd.rn-realmedia-vbr rmvb
857
+ application/vnd.route66.link66+xml link66
858
+ # application/vnd.rs-274x
859
+ # application/vnd.ruckus.download
860
+ # application/vnd.s3sms
861
+ application/vnd.sailingtracker.track st
862
+ # application/vnd.sbm.cid
863
+ # application/vnd.sbm.mid2
864
+ # application/vnd.scribus
865
+ # application/vnd.sealed.3df
866
+ # application/vnd.sealed.csf
867
+ # application/vnd.sealed.doc
868
+ # application/vnd.sealed.eml
869
+ # application/vnd.sealed.mht
870
+ # application/vnd.sealed.net
871
+ # application/vnd.sealed.ppt
872
+ # application/vnd.sealed.tiff
873
+ # application/vnd.sealed.xls
874
+ # application/vnd.sealedmedia.softseal.html
875
+ # application/vnd.sealedmedia.softseal.pdf
876
+ application/vnd.seemail see
877
+ application/vnd.sema sema
878
+ application/vnd.semd semd
879
+ application/vnd.semf semf
880
+ application/vnd.shana.informed.formdata ifm
881
+ application/vnd.shana.informed.formtemplate itp
882
+ application/vnd.shana.informed.interchange iif
883
+ application/vnd.shana.informed.package ipk
884
+ application/vnd.simtech-mindmapper twd twds
885
+ application/vnd.smaf mmf
886
+ # application/vnd.smart.notebook
887
+ application/vnd.smart.teacher teacher
888
+ # application/vnd.software602.filler.form+xml
889
+ # application/vnd.software602.filler.form-xml-zip
890
+ application/vnd.solent.sdkm+xml sdkm sdkd
891
+ application/vnd.spotfire.dxp dxp
892
+ application/vnd.spotfire.sfs sfs
893
+ # application/vnd.sss-cod
894
+ # application/vnd.sss-dtf
895
+ # application/vnd.sss-ntf
896
+ application/vnd.stardivision.calc sdc
897
+ application/vnd.stardivision.draw sda
898
+ application/vnd.stardivision.impress sdd
899
+ application/vnd.stardivision.math smf
900
+ application/vnd.stardivision.writer sdw vor
901
+ application/vnd.stardivision.writer-global sgl
902
+ application/vnd.stepmania.package smzip
903
+ application/vnd.stepmania.stepchart sm
904
+ # application/vnd.street-stream
905
+ application/vnd.sun.xml.calc sxc
906
+ application/vnd.sun.xml.calc.template stc
907
+ application/vnd.sun.xml.draw sxd
908
+ application/vnd.sun.xml.draw.template std
909
+ application/vnd.sun.xml.impress sxi
910
+ application/vnd.sun.xml.impress.template sti
911
+ application/vnd.sun.xml.math sxm
912
+ application/vnd.sun.xml.writer sxw
913
+ application/vnd.sun.xml.writer.global sxg
914
+ application/vnd.sun.xml.writer.template stw
915
+ # application/vnd.sun.wadl+xml
916
+ application/vnd.sus-calendar sus susp
917
+ application/vnd.svd svd
918
+ # application/vnd.swiftview-ics
919
+ application/vnd.symbian.install sis sisx
920
+ application/vnd.syncml+xml xsm
921
+ application/vnd.syncml.dm+wbxml bdm
922
+ application/vnd.syncml.dm+xml xdm
923
+ # application/vnd.syncml.dm.notification
924
+ # application/vnd.syncml.ds.notification
925
+ application/vnd.tao.intent-module-archive tao
926
+ application/vnd.tcpdump.pcap pcap cap dmp
927
+ application/vnd.tmobile-livetv tmo
928
+ application/vnd.trid.tpt tpt
929
+ application/vnd.triscape.mxs mxs
930
+ application/vnd.trueapp tra
931
+ # application/vnd.truedoc
932
+ # application/vnd.ubisoft.webplayer
933
+ application/vnd.ufdl ufd ufdl
934
+ application/vnd.uiq.theme utz
935
+ application/vnd.umajin umj
936
+ application/vnd.unity unityweb
937
+ application/vnd.uoml+xml uoml
938
+ # application/vnd.uplanet.alert
939
+ # application/vnd.uplanet.alert-wbxml
940
+ # application/vnd.uplanet.bearer-choice
941
+ # application/vnd.uplanet.bearer-choice-wbxml
942
+ # application/vnd.uplanet.cacheop
943
+ # application/vnd.uplanet.cacheop-wbxml
944
+ # application/vnd.uplanet.channel
945
+ # application/vnd.uplanet.channel-wbxml
946
+ # application/vnd.uplanet.list
947
+ # application/vnd.uplanet.list-wbxml
948
+ # application/vnd.uplanet.listcmd
949
+ # application/vnd.uplanet.listcmd-wbxml
950
+ # application/vnd.uplanet.signal
951
+ application/vnd.vcx vcx
952
+ # application/vnd.vd-study
953
+ # application/vnd.vectorworks
954
+ # application/vnd.verimatrix.vcas
955
+ # application/vnd.vidsoft.vidconference
956
+ application/vnd.visio vsd vst vss vsw
957
+ application/vnd.visionary vis
958
+ # application/vnd.vividence.scriptfile
959
+ application/vnd.vsf vsf
960
+ # application/vnd.wap.sic
961
+ # application/vnd.wap.slc
962
+ application/vnd.wap.wbxml wbxml
963
+ application/vnd.wap.wmlc wmlc
964
+ application/vnd.wap.wmlscriptc wmlsc
965
+ application/vnd.webturbo wtb
966
+ # application/vnd.wfa.wsc
967
+ # application/vnd.wmc
968
+ # application/vnd.wmf.bootstrap
969
+ # application/vnd.wolfram.mathematica
970
+ # application/vnd.wolfram.mathematica.package
971
+ application/vnd.wolfram.player nbp
972
+ application/vnd.wordperfect wpd
973
+ application/vnd.wqd wqd
974
+ # application/vnd.wrq-hp3000-labelled
975
+ application/vnd.wt.stf stf
976
+ # application/vnd.wv.csp+wbxml
977
+ # application/vnd.wv.csp+xml
978
+ # application/vnd.wv.ssp+xml
979
+ application/vnd.xara xar
980
+ application/vnd.xfdl xfdl
981
+ # application/vnd.xfdl.webform
982
+ # application/vnd.xmi+xml
983
+ # application/vnd.xmpie.cpkg
984
+ # application/vnd.xmpie.dpkg
985
+ # application/vnd.xmpie.plan
986
+ # application/vnd.xmpie.ppkg
987
+ # application/vnd.xmpie.xlim
988
+ application/vnd.yamaha.hv-dic hvd
989
+ application/vnd.yamaha.hv-script hvs
990
+ application/vnd.yamaha.hv-voice hvp
991
+ application/vnd.yamaha.openscoreformat osf
992
+ application/vnd.yamaha.openscoreformat.osfpvg+xml osfpvg
993
+ # application/vnd.yamaha.remote-setup
994
+ application/vnd.yamaha.smaf-audio saf
995
+ application/vnd.yamaha.smaf-phrase spf
996
+ # application/vnd.yamaha.through-ngn
997
+ # application/vnd.yamaha.tunnel-udpencap
998
+ application/vnd.yellowriver-custom-menu cmp
999
+ application/vnd.zul zir zirz
1000
+ application/vnd.zzazz.deck+xml zaz
1001
+ application/voicexml+xml vxml
1002
+ # application/vq-rtcpxr
1003
+ # application/watcherinfo+xml
1004
+ # application/whoispp-query
1005
+ # application/whoispp-response
1006
+ application/widget wgt
1007
+ application/winhlp hlp
1008
+ # application/wita
1009
+ # application/wordperfect5.1
1010
+ application/wsdl+xml wsdl
1011
+ application/wspolicy+xml wspolicy
1012
+ application/x-7z-compressed 7z
1013
+ application/x-abiword abw
1014
+ application/x-ace-compressed ace
1015
+ # application/x-amf
1016
+ application/x-apple-diskimage dmg
1017
+ application/x-authorware-bin aab x32 u32 vox
1018
+ application/x-authorware-map aam
1019
+ application/x-authorware-seg aas
1020
+ application/x-bcpio bcpio
1021
+ application/x-bittorrent torrent
1022
+ application/x-blorb blb blorb
1023
+ application/x-bzip bz
1024
+ application/x-bzip2 bz2 boz
1025
+ application/x-cbr cbr cba cbt cbz cb7
1026
+ application/x-cdlink vcd
1027
+ application/x-cfs-compressed cfs
1028
+ application/x-chat chat
1029
+ application/x-chess-pgn pgn
1030
+ application/x-conference nsc
1031
+ # application/x-compress
1032
+ application/x-cpio cpio
1033
+ application/x-csh csh
1034
+ application/x-debian-package deb udeb
1035
+ application/x-dgc-compressed dgc
1036
+ application/x-director dir dcr dxr cst cct cxt w3d fgd swa
1037
+ application/x-doom wad
1038
+ application/x-dtbncx+xml ncx
1039
+ application/x-dtbook+xml dtb
1040
+ application/x-dtbresource+xml res
1041
+ application/x-dvi dvi
1042
+ application/x-envoy evy
1043
+ application/x-eva eva
1044
+ application/x-font-bdf bdf
1045
+ # application/x-font-dos
1046
+ # application/x-font-framemaker
1047
+ application/x-font-ghostscript gsf
1048
+ # application/x-font-libgrx
1049
+ application/x-font-linux-psf psf
1050
+ application/x-font-otf otf
1051
+ application/x-font-pcf pcf
1052
+ application/x-font-snf snf
1053
+ # application/x-font-speedo
1054
+ # application/x-font-sunos-news
1055
+ application/x-font-ttf ttf ttc
1056
+ application/x-font-type1 pfa pfb pfm afm
1057
+ application/font-woff woff
1058
+ # application/x-font-vfont
1059
+ application/x-freearc arc
1060
+ application/x-futuresplash spl
1061
+ application/x-gca-compressed gca
1062
+ application/x-glulx ulx
1063
+ application/x-gnumeric gnumeric
1064
+ application/x-gramps-xml gramps
1065
+ application/x-gtar gtar
1066
+ # application/x-gzip
1067
+ application/x-hdf hdf
1068
+ application/x-install-instructions install
1069
+ application/x-iso9660-image iso
1070
+ application/x-java-jnlp-file jnlp
1071
+ application/x-latex latex
1072
+ application/x-lzh-compressed lzh lha
1073
+ application/x-mie mie
1074
+ application/x-mobipocket-ebook prc mobi
1075
+ application/x-ms-application application
1076
+ application/x-ms-shortcut lnk
1077
+ application/x-ms-wmd wmd
1078
+ application/x-ms-wmz wmz
1079
+ application/x-ms-xbap xbap
1080
+ application/x-msaccess mdb
1081
+ application/x-msbinder obd
1082
+ application/x-mscardfile crd
1083
+ application/x-msclip clp
1084
+ application/x-msdownload exe dll com bat msi
1085
+ application/x-msmediaview mvb m13 m14
1086
+ application/x-msmetafile wmf wmz emf emz
1087
+ application/x-msmoney mny
1088
+ application/x-mspublisher pub
1089
+ application/x-msschedule scd
1090
+ application/x-msterminal trm
1091
+ application/x-mswrite wri
1092
+ application/x-netcdf nc cdf
1093
+ application/x-nzb nzb
1094
+ application/x-pkcs12 p12 pfx
1095
+ application/x-pkcs7-certificates p7b spc
1096
+ application/x-pkcs7-certreqresp p7r
1097
+ application/x-rar-compressed rar
1098
+ application/x-research-info-systems ris
1099
+ application/x-sh sh
1100
+ application/x-shar shar
1101
+ application/x-shockwave-flash swf
1102
+ application/x-silverlight-app xap
1103
+ application/x-sql sql
1104
+ application/x-stuffit sit
1105
+ application/x-stuffitx sitx
1106
+ application/x-subrip srt
1107
+ application/x-sv4cpio sv4cpio
1108
+ application/x-sv4crc sv4crc
1109
+ application/x-t3vm-image t3
1110
+ application/x-tads gam
1111
+ application/x-tar tar
1112
+ application/x-tcl tcl
1113
+ application/x-tex tex
1114
+ application/x-tex-tfm tfm
1115
+ application/x-texinfo texinfo texi
1116
+ application/x-tgif obj
1117
+ application/x-ustar ustar
1118
+ application/x-wais-source src
1119
+ application/x-x509-ca-cert der crt
1120
+ application/x-xfig fig
1121
+ application/x-xliff+xml xlf
1122
+ application/x-xpinstall xpi
1123
+ application/x-xz xz
1124
+ application/x-zmachine z1 z2 z3 z4 z5 z6 z7 z8
1125
+ # application/x400-bp
1126
+ application/xaml+xml xaml
1127
+ # application/xcap-att+xml
1128
+ # application/xcap-caps+xml
1129
+ application/xcap-diff+xml xdf
1130
+ # application/xcap-el+xml
1131
+ # application/xcap-error+xml
1132
+ # application/xcap-ns+xml
1133
+ # application/xcon-conference-info-diff+xml
1134
+ # application/xcon-conference-info+xml
1135
+ application/xenc+xml xenc
1136
+ application/xhtml+xml xhtml xht
1137
+ # application/xhtml-voice+xml
1138
+ application/xml xml xsl
1139
+ application/xml-dtd dtd
1140
+ # application/xml-external-parsed-entity
1141
+ # application/xmpp+xml
1142
+ application/xop+xml xop
1143
+ application/xproc+xml xpl
1144
+ application/xslt+xml xslt
1145
+ application/xspf+xml xspf
1146
+ application/xv+xml mxml xhvml xvml xvm
1147
+ application/yang yang
1148
+ application/yin+xml yin
1149
+ application/zip zip
1150
+ # audio/1d-interleaved-parityfec
1151
+ # audio/32kadpcm
1152
+ # audio/3gpp
1153
+ # audio/3gpp2
1154
+ # audio/ac3
1155
+ audio/adpcm adp
1156
+ # audio/amr
1157
+ # audio/amr-wb
1158
+ # audio/amr-wb+
1159
+ # audio/asc
1160
+ # audio/atrac-advanced-lossless
1161
+ # audio/atrac-x
1162
+ # audio/atrac3
1163
+ audio/basic au snd
1164
+ # audio/bv16
1165
+ # audio/bv32
1166
+ # audio/clearmode
1167
+ # audio/cn
1168
+ # audio/dat12
1169
+ # audio/dls
1170
+ # audio/dsr-es201108
1171
+ # audio/dsr-es202050
1172
+ # audio/dsr-es202211
1173
+ # audio/dsr-es202212
1174
+ # audio/dv
1175
+ # audio/dvi4
1176
+ # audio/eac3
1177
+ # audio/evrc
1178
+ # audio/evrc-qcp
1179
+ # audio/evrc0
1180
+ # audio/evrc1
1181
+ # audio/evrcb
1182
+ # audio/evrcb0
1183
+ # audio/evrcb1
1184
+ # audio/evrcwb
1185
+ # audio/evrcwb0
1186
+ # audio/evrcwb1
1187
+ # audio/example
1188
+ # audio/fwdred
1189
+ # audio/g719
1190
+ # audio/g722
1191
+ # audio/g7221
1192
+ # audio/g723
1193
+ # audio/g726-16
1194
+ # audio/g726-24
1195
+ # audio/g726-32
1196
+ # audio/g726-40
1197
+ # audio/g728
1198
+ # audio/g729
1199
+ # audio/g7291
1200
+ # audio/g729d
1201
+ # audio/g729e
1202
+ # audio/gsm
1203
+ # audio/gsm-efr
1204
+ # audio/gsm-hr-08
1205
+ # audio/ilbc
1206
+ # audio/ip-mr_v2.5
1207
+ # audio/isac
1208
+ # audio/l16
1209
+ # audio/l20
1210
+ # audio/l24
1211
+ # audio/l8
1212
+ # audio/lpc
1213
+ audio/midi mid midi kar rmi
1214
+ # audio/mobile-xmf
1215
+ audio/mp4 mp4a
1216
+ # audio/mp4a-latm
1217
+ # audio/mpa
1218
+ # audio/mpa-robust
1219
+ audio/mpeg mpga mp2 mp2a mp3 m2a m3a
1220
+ # audio/mpeg4-generic
1221
+ # audio/musepack
1222
+ audio/ogg oga ogg spx
1223
+ # audio/opus
1224
+ # audio/parityfec
1225
+ # audio/pcma
1226
+ # audio/pcma-wb
1227
+ # audio/pcmu-wb
1228
+ # audio/pcmu
1229
+ # audio/prs.sid
1230
+ # audio/qcelp
1231
+ # audio/red
1232
+ # audio/rtp-enc-aescm128
1233
+ # audio/rtp-midi
1234
+ # audio/rtx
1235
+ audio/s3m s3m
1236
+ audio/silk sil
1237
+ # audio/smv
1238
+ # audio/smv0
1239
+ # audio/smv-qcp
1240
+ # audio/sp-midi
1241
+ # audio/speex
1242
+ # audio/t140c
1243
+ # audio/t38
1244
+ # audio/telephone-event
1245
+ # audio/tone
1246
+ # audio/uemclip
1247
+ # audio/ulpfec
1248
+ # audio/vdvi
1249
+ # audio/vmr-wb
1250
+ # audio/vnd.3gpp.iufp
1251
+ # audio/vnd.4sb
1252
+ # audio/vnd.audiokoz
1253
+ # audio/vnd.celp
1254
+ # audio/vnd.cisco.nse
1255
+ # audio/vnd.cmles.radio-events
1256
+ # audio/vnd.cns.anp1
1257
+ # audio/vnd.cns.inf1
1258
+ audio/vnd.dece.audio uva uvva
1259
+ audio/vnd.digital-winds eol
1260
+ # audio/vnd.dlna.adts
1261
+ # audio/vnd.dolby.heaac.1
1262
+ # audio/vnd.dolby.heaac.2
1263
+ # audio/vnd.dolby.mlp
1264
+ # audio/vnd.dolby.mps
1265
+ # audio/vnd.dolby.pl2
1266
+ # audio/vnd.dolby.pl2x
1267
+ # audio/vnd.dolby.pl2z
1268
+ # audio/vnd.dolby.pulse.1
1269
+ audio/vnd.dra dra
1270
+ audio/vnd.dts dts
1271
+ audio/vnd.dts.hd dtshd
1272
+ # audio/vnd.dvb.file
1273
+ # audio/vnd.everad.plj
1274
+ # audio/vnd.hns.audio
1275
+ audio/vnd.lucent.voice lvp
1276
+ audio/vnd.ms-playready.media.pya pya
1277
+ # audio/vnd.nokia.mobile-xmf
1278
+ # audio/vnd.nortel.vbk
1279
+ audio/vnd.nuera.ecelp4800 ecelp4800
1280
+ audio/vnd.nuera.ecelp7470 ecelp7470
1281
+ audio/vnd.nuera.ecelp9600 ecelp9600
1282
+ # audio/vnd.octel.sbc
1283
+ # audio/vnd.qcelp
1284
+ # audio/vnd.rhetorex.32kadpcm
1285
+ audio/vnd.rip rip
1286
+ # audio/vnd.sealedmedia.softseal.mpeg
1287
+ # audio/vnd.vmx.cvsd
1288
+ # audio/vorbis
1289
+ # audio/vorbis-config
1290
+ audio/webm weba
1291
+ audio/x-aac aac
1292
+ audio/x-aiff aif aiff aifc
1293
+ audio/x-caf caf
1294
+ audio/x-flac flac
1295
+ audio/x-matroska mka
1296
+ audio/x-mpegurl m3u
1297
+ audio/x-ms-wax wax
1298
+ audio/x-ms-wma wma
1299
+ audio/x-pn-realaudio ram ra
1300
+ audio/x-pn-realaudio-plugin rmp
1301
+ # audio/x-tta
1302
+ audio/x-wav wav
1303
+ audio/xm xm
1304
+ chemical/x-cdx cdx
1305
+ chemical/x-cif cif
1306
+ chemical/x-cmdf cmdf
1307
+ chemical/x-cml cml
1308
+ chemical/x-csml csml
1309
+ # chemical/x-pdb
1310
+ chemical/x-xyz xyz
1311
+ image/bmp bmp
1312
+ image/cgm cgm
1313
+ # image/example
1314
+ # image/fits
1315
+ image/g3fax g3
1316
+ image/gif gif
1317
+ image/ief ief
1318
+ # image/jp2
1319
+ image/jpeg jpeg jpg jpe
1320
+ # image/jpm
1321
+ # image/jpx
1322
+ image/ktx ktx
1323
+ # image/naplps
1324
+ image/png png
1325
+ image/prs.btif btif
1326
+ # image/prs.pti
1327
+ image/sgi sgi
1328
+ image/svg+xml svg svgz
1329
+ # image/t38
1330
+ image/tiff tiff tif
1331
+ # image/tiff-fx
1332
+ image/vnd.adobe.photoshop psd
1333
+ # image/vnd.cns.inf2
1334
+ image/vnd.dece.graphic uvi uvvi uvg uvvg
1335
+ image/vnd.dvb.subtitle sub
1336
+ image/vnd.djvu djvu djv
1337
+ image/vnd.dwg dwg
1338
+ image/vnd.dxf dxf
1339
+ image/vnd.fastbidsheet fbs
1340
+ image/vnd.fpx fpx
1341
+ image/vnd.fst fst
1342
+ image/vnd.fujixerox.edmics-mmr mmr
1343
+ image/vnd.fujixerox.edmics-rlc rlc
1344
+ # image/vnd.globalgraphics.pgb
1345
+ # image/vnd.microsoft.icon
1346
+ # image/vnd.mix
1347
+ image/vnd.ms-modi mdi
1348
+ image/vnd.ms-photo wdp
1349
+ image/vnd.net-fpx npx
1350
+ # image/vnd.radiance
1351
+ # image/vnd.sealed.png
1352
+ # image/vnd.sealedmedia.softseal.gif
1353
+ # image/vnd.sealedmedia.softseal.jpg
1354
+ # image/vnd.svf
1355
+ image/vnd.wap.wbmp wbmp
1356
+ image/vnd.xiff xif
1357
+ image/webp webp
1358
+ image/x-3ds 3ds
1359
+ image/x-cmu-raster ras
1360
+ image/x-cmx cmx
1361
+ image/x-freehand fh fhc fh4 fh5 fh7
1362
+ image/x-icon ico
1363
+ image/x-mrsid-image sid
1364
+ image/x-pcx pcx
1365
+ image/x-pict pic pct
1366
+ image/x-portable-anymap pnm
1367
+ image/x-portable-bitmap pbm
1368
+ image/x-portable-graymap pgm
1369
+ image/x-portable-pixmap ppm
1370
+ image/x-rgb rgb
1371
+ image/x-tga tga
1372
+ image/x-xbitmap xbm
1373
+ image/x-xpixmap xpm
1374
+ image/x-xwindowdump xwd
1375
+ # message/cpim
1376
+ # message/delivery-status
1377
+ # message/disposition-notification
1378
+ # message/example
1379
+ # message/external-body
1380
+ # message/feedback-report
1381
+ # message/global
1382
+ # message/global-delivery-status
1383
+ # message/global-disposition-notification
1384
+ # message/global-headers
1385
+ # message/http
1386
+ # message/imdn+xml
1387
+ # message/news
1388
+ # message/partial
1389
+ message/rfc822 eml mime
1390
+ # message/s-http
1391
+ # message/sip
1392
+ # message/sipfrag
1393
+ # message/tracking-status
1394
+ # message/vnd.si.simp
1395
+ # model/example
1396
+ model/iges igs iges
1397
+ model/mesh msh mesh silo
1398
+ model/vnd.collada+xml dae
1399
+ model/vnd.dwf dwf
1400
+ # model/vnd.flatland.3dml
1401
+ model/vnd.gdl gdl
1402
+ # model/vnd.gs-gdl
1403
+ # model/vnd.gs.gdl
1404
+ model/vnd.gtw gtw
1405
+ # model/vnd.moml+xml
1406
+ model/vnd.mts mts
1407
+ # model/vnd.parasolid.transmit.binary
1408
+ # model/vnd.parasolid.transmit.text
1409
+ model/vnd.vtu vtu
1410
+ model/vrml wrl vrml
1411
+ model/x3d+binary x3db x3dbz
1412
+ model/x3d+vrml x3dv x3dvz
1413
+ model/x3d+xml x3d x3dz
1414
+ # multipart/alternative
1415
+ # multipart/appledouble
1416
+ # multipart/byteranges
1417
+ # multipart/digest
1418
+ # multipart/encrypted
1419
+ # multipart/example
1420
+ # multipart/form-data
1421
+ # multipart/header-set
1422
+ # multipart/mixed
1423
+ # multipart/parallel
1424
+ # multipart/related
1425
+ # multipart/report
1426
+ # multipart/signed
1427
+ # multipart/voice-message
1428
+ # text/1d-interleaved-parityfec
1429
+ text/cache-manifest appcache
1430
+ text/calendar ics ifb
1431
+ text/css css
1432
+ text/csv csv
1433
+ # text/directory
1434
+ # text/dns
1435
+ # text/ecmascript
1436
+ # text/enriched
1437
+ # text/example
1438
+ # text/fwdred
1439
+ text/html html htm
1440
+ # text/javascript
1441
+ text/n3 n3
1442
+ # text/parityfec
1443
+ text/plain txt text conf def list log in
1444
+ # text/prs.fallenstein.rst
1445
+ text/prs.lines.tag dsc
1446
+ # text/vnd.radisys.msml-basic-layout
1447
+ # text/red
1448
+ # text/rfc822-headers
1449
+ text/richtext rtx
1450
+ # text/rtf
1451
+ # text/rtp-enc-aescm128
1452
+ # text/rtx
1453
+ text/sgml sgml sgm
1454
+ # text/t140
1455
+ text/tab-separated-values tsv
1456
+ text/troff t tr roff man me ms
1457
+ text/turtle ttl
1458
+ # text/ulpfec
1459
+ text/uri-list uri uris urls
1460
+ text/vcard vcard
1461
+ # text/vnd.abc
1462
+ text/vnd.curl curl
1463
+ text/vnd.curl.dcurl dcurl
1464
+ text/vnd.curl.scurl scurl
1465
+ text/vnd.curl.mcurl mcurl
1466
+ # text/vnd.dmclientscript
1467
+ text/vnd.dvb.subtitle sub
1468
+ # text/vnd.esmertec.theme-descriptor
1469
+ text/vnd.fly fly
1470
+ text/vnd.fmi.flexstor flx
1471
+ text/vnd.graphviz gv
1472
+ text/vnd.in3d.3dml 3dml
1473
+ text/vnd.in3d.spot spot
1474
+ # text/vnd.iptc.newsml
1475
+ # text/vnd.iptc.nitf
1476
+ # text/vnd.latex-z
1477
+ # text/vnd.motorola.reflex
1478
+ # text/vnd.ms-mediapackage
1479
+ # text/vnd.net2phone.commcenter.command
1480
+ # text/vnd.si.uricatalogue
1481
+ text/vnd.sun.j2me.app-descriptor jad
1482
+ # text/vnd.trolltech.linguist
1483
+ # text/vnd.wap.si
1484
+ # text/vnd.wap.sl
1485
+ text/vnd.wap.wml wml
1486
+ text/vnd.wap.wmlscript wmls
1487
+ text/x-asm s asm
1488
+ text/x-c c cc cxx cpp h hh dic
1489
+ text/x-fortran f for f77 f90
1490
+ text/x-java-source java
1491
+ text/x-opml opml
1492
+ text/x-pascal p pas
1493
+ text/x-nfo nfo
1494
+ text/x-setext etx
1495
+ text/x-sfv sfv
1496
+ text/x-uuencode uu
1497
+ text/x-vcalendar vcs
1498
+ text/x-vcard vcf
1499
+ # text/xml
1500
+ # text/xml-external-parsed-entity
1501
+ # video/1d-interleaved-parityfec
1502
+ video/3gpp 3gp
1503
+ # video/3gpp-tt
1504
+ video/3gpp2 3g2
1505
+ # video/bmpeg
1506
+ # video/bt656
1507
+ # video/celb
1508
+ # video/dv
1509
+ # video/example
1510
+ video/h261 h261
1511
+ video/h263 h263
1512
+ # video/h263-1998
1513
+ # video/h263-2000
1514
+ video/h264 h264
1515
+ # video/h264-rcdo
1516
+ # video/h264-svc
1517
+ video/jpeg jpgv
1518
+ # video/jpeg2000
1519
+ video/jpm jpm jpgm
1520
+ video/mj2 mj2 mjp2
1521
+ # video/mp1s
1522
+ # video/mp2p
1523
+ # video/mp2t
1524
+ video/mp4 mp4 mp4v mpg4
1525
+ # video/mp4v-es
1526
+ video/mpeg mpeg mpg mpe m1v m2v
1527
+ # video/mpeg4-generic
1528
+ # video/mpv
1529
+ # video/nv
1530
+ video/ogg ogv
1531
+ # video/parityfec
1532
+ # video/pointer
1533
+ video/quicktime qt mov
1534
+ # video/raw
1535
+ # video/rtp-enc-aescm128
1536
+ # video/rtx
1537
+ # video/smpte292m
1538
+ # video/ulpfec
1539
+ # video/vc1
1540
+ # video/vnd.cctv
1541
+ video/vnd.dece.hd uvh uvvh
1542
+ video/vnd.dece.mobile uvm uvvm
1543
+ # video/vnd.dece.mp4
1544
+ video/vnd.dece.pd uvp uvvp
1545
+ video/vnd.dece.sd uvs uvvs
1546
+ video/vnd.dece.video uvv uvvv
1547
+ # video/vnd.directv.mpeg
1548
+ # video/vnd.directv.mpeg-tts
1549
+ # video/vnd.dlna.mpeg-tts
1550
+ video/vnd.dvb.file dvb
1551
+ video/vnd.fvt fvt
1552
+ # video/vnd.hns.video
1553
+ # video/vnd.iptvforum.1dparityfec-1010
1554
+ # video/vnd.iptvforum.1dparityfec-2005
1555
+ # video/vnd.iptvforum.2dparityfec-1010
1556
+ # video/vnd.iptvforum.2dparityfec-2005
1557
+ # video/vnd.iptvforum.ttsavc
1558
+ # video/vnd.iptvforum.ttsmpeg2
1559
+ # video/vnd.motorola.video
1560
+ # video/vnd.motorola.videop
1561
+ video/vnd.mpegurl mxu m4u
1562
+ video/vnd.ms-playready.media.pyv pyv
1563
+ # video/vnd.nokia.interleaved-multimedia
1564
+ # video/vnd.nokia.videovoip
1565
+ # video/vnd.objectvideo
1566
+ # video/vnd.sealed.mpeg1
1567
+ # video/vnd.sealed.mpeg4
1568
+ # video/vnd.sealed.swf
1569
+ # video/vnd.sealedmedia.softseal.mov
1570
+ video/vnd.uvvu.mp4 uvu uvvu
1571
+ video/vnd.vivo viv
1572
+ video/webm webm
1573
+ video/x-f4v f4v
1574
+ video/x-fli fli
1575
+ video/x-flv flv
1576
+ video/x-m4v m4v
1577
+ video/x-matroska mkv mk3d mks
1578
+ video/x-mng mng
1579
+ video/x-ms-asf asf asx
1580
+ video/x-ms-vob vob
1581
+ video/x-ms-wm wm
1582
+ video/x-ms-wmv wmv
1583
+ video/x-ms-wmx wmx
1584
+ video/x-ms-wvx wvx
1585
+ video/x-msvideo avi
1586
+ video/x-sgi-movie movie
1587
+ video/x-smv smv
1588
+ x-conference/x-cooltalk ice