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,17 @@
1
+
2
+ ### Sources for custom types
3
+
4
+ This is a list of sources for any custom mime types.
5
+ When adding custom mime types, please link to where you found the mime type,
6
+ even if it's from an unofficial source.
7
+
8
+ - `text/coffeescript` - http://coffeescript.org/#scripts
9
+ - `text/x-handlebars-template` - https://handlebarsjs.com/#getting-started
10
+ - `text/x-sass` & `text/x-scss` - https://github.com/janlelis/rubybuntu-mime/blob/master/sass.xml
11
+ - `text.jsx` - http://facebook.github.io/react/docs/getting-started.html [[2]](https://github.com/facebook/react/blob/f230e0a03154e6f8a616e0da1fb3d97ffa1a6472/vendor/browser-transforms.js#L210)
12
+
13
+ [Sources for node.json types](https://github.com/broofa/node-mime/blob/master/types/node.types)
14
+
15
+ ### Notes on weird types
16
+
17
+ - `font/opentype` - This type is technically invalid according to the spec. No valid types begin with `font/`. No-one uses the official type of `application/vnd.ms-opentype` as the community standardized `application/x-font-otf`. However, chrome logs nonsense warnings unless opentype fonts are served with `font/opentype`. [[1]](http://stackoverflow.com/questions/2871655/proper-mime-type-for-fonts)
@@ -0,0 +1,16 @@
1
+ {
2
+ "name": "mime-types",
3
+ "description": "The ultimate javascript content-type utility.",
4
+ "version": "0.1.0",
5
+ "author": {
6
+ "name": "Jonathan Ong",
7
+ "email": "me@jongleberry.com",
8
+ "url": "http://jongleberry.com",
9
+ "twitter": "https://twitter.com/jongleberry"
10
+ },
11
+ "repository": "expressjs/mime-types",
12
+ "license": "MIT",
13
+ "main": "lib/index.js",
14
+ "scripts": ["lib/index.js"],
15
+ "json": ["mime.json", "node.json", "custom.json"]
16
+ }
@@ -0,0 +1,27 @@
1
+ {
2
+ "text/jade": [
3
+ "jade"
4
+ ],
5
+ "text/stylus": [
6
+ "stylus",
7
+ "styl"
8
+ ],
9
+ "text/less": [
10
+ "less"
11
+ ],
12
+ "text/x-sass": [
13
+ "sass"
14
+ ],
15
+ "text/x-scss": [
16
+ "scss"
17
+ ],
18
+ "text/coffeescript": [
19
+ "coffee"
20
+ ],
21
+ "text/x-handlebars-template": [
22
+ "hbs"
23
+ ],
24
+ "text/jsx": [
25
+ "jsx"
26
+ ]
27
+ }
@@ -0,0 +1,75 @@
1
+
2
+ // types[extension] = type
3
+ exports.types = Object.create(null)
4
+ // extensions[type] = [extensions]
5
+ exports.extensions = Object.create(null)
6
+ // define more mime types
7
+ exports.define = define
8
+
9
+ // store the json files
10
+ exports.json = {
11
+ mime: require('./mime.json'),
12
+ node: require('./node.json'),
13
+ custom: require('./custom.json'),
14
+ }
15
+
16
+ exports.lookup = function (string) {
17
+ if (!string || typeof string !== "string") return false
18
+ string = string.replace(/.*[\.\/\\]/, '').toLowerCase()
19
+ if (!string) return false
20
+ return exports.types[string] || false
21
+ }
22
+
23
+ exports.extension = function (type) {
24
+ if (!type || typeof type !== "string") return false
25
+ type = type.match(/^\s*([^;\s]*)(?:;|\s|$)/)
26
+ if (!type) return false
27
+ var exts = exports.extensions[type[1].toLowerCase()]
28
+ if (!exts || !exts.length) return false
29
+ return exts[0]
30
+ }
31
+
32
+ // type has to be an exact mime type
33
+ exports.charset = function (type) {
34
+ // special cases
35
+ switch (type) {
36
+ case 'application/json': return 'UTF-8'
37
+ case 'application/javascript': return 'UTF-8'
38
+ }
39
+
40
+ // default text/* to utf-8
41
+ if (/^text\//.test(type)) return 'UTF-8'
42
+
43
+ return false
44
+ }
45
+
46
+ // backwards compatibility
47
+ exports.charsets = {
48
+ lookup: exports.charset
49
+ }
50
+
51
+ exports.contentType = function (type) {
52
+ if (!type || typeof type !== "string") return false
53
+ if (!~type.indexOf('/')) type = exports.lookup(type)
54
+ if (!type) return false
55
+ if (!~type.indexOf('charset')) {
56
+ var charset = exports.charset(type)
57
+ if (charset) type += '; charset=' + charset.toLowerCase()
58
+ }
59
+ return type
60
+ }
61
+
62
+ define(exports.json.mime)
63
+ define(exports.json.node)
64
+ define(exports.json.custom)
65
+
66
+ function define(json) {
67
+ Object.keys(json).forEach(function (type) {
68
+ var exts = json[type] || []
69
+ exports.extensions[type] = exports.extensions[type] || []
70
+ exts.forEach(function (ext) {
71
+ if (!~exports.extensions[type].indexOf(ext)) exports.extensions[type].push(ext)
72
+ exports.types[ext] = type
73
+ })
74
+ })
75
+ }
@@ -0,0 +1,3317 @@
1
+ {
2
+ "application/1d-interleaved-parityfec": [],
3
+ "application/3gpp-ims+xml": [],
4
+ "application/activemessage": [],
5
+ "application/andrew-inset": [
6
+ "ez"
7
+ ],
8
+ "application/applefile": [],
9
+ "application/applixware": [
10
+ "aw"
11
+ ],
12
+ "application/atom+xml": [
13
+ "atom"
14
+ ],
15
+ "application/atomcat+xml": [
16
+ "atomcat"
17
+ ],
18
+ "application/atomicmail": [],
19
+ "application/atomsvc+xml": [
20
+ "atomsvc"
21
+ ],
22
+ "application/auth-policy+xml": [],
23
+ "application/batch-smtp": [],
24
+ "application/beep+xml": [],
25
+ "application/calendar+xml": [],
26
+ "application/cals-1840": [],
27
+ "application/ccmp+xml": [],
28
+ "application/ccxml+xml": [
29
+ "ccxml"
30
+ ],
31
+ "application/cdmi-capability": [
32
+ "cdmia"
33
+ ],
34
+ "application/cdmi-container": [
35
+ "cdmic"
36
+ ],
37
+ "application/cdmi-domain": [
38
+ "cdmid"
39
+ ],
40
+ "application/cdmi-object": [
41
+ "cdmio"
42
+ ],
43
+ "application/cdmi-queue": [
44
+ "cdmiq"
45
+ ],
46
+ "application/cea-2018+xml": [],
47
+ "application/cellml+xml": [],
48
+ "application/cfw": [],
49
+ "application/cnrp+xml": [],
50
+ "application/commonground": [],
51
+ "application/conference-info+xml": [],
52
+ "application/cpl+xml": [],
53
+ "application/csta+xml": [],
54
+ "application/cstadata+xml": [],
55
+ "application/cu-seeme": [
56
+ "cu"
57
+ ],
58
+ "application/cybercash": [],
59
+ "application/davmount+xml": [
60
+ "davmount"
61
+ ],
62
+ "application/dca-rft": [],
63
+ "application/dec-dx": [],
64
+ "application/dialog-info+xml": [],
65
+ "application/dicom": [],
66
+ "application/dns": [],
67
+ "application/docbook+xml": [
68
+ "dbk"
69
+ ],
70
+ "application/dskpp+xml": [],
71
+ "application/dssc+der": [
72
+ "dssc"
73
+ ],
74
+ "application/dssc+xml": [
75
+ "xdssc"
76
+ ],
77
+ "application/dvcs": [],
78
+ "application/ecmascript": [
79
+ "ecma"
80
+ ],
81
+ "application/edi-consent": [],
82
+ "application/edi-x12": [],
83
+ "application/edifact": [],
84
+ "application/emma+xml": [
85
+ "emma"
86
+ ],
87
+ "application/epp+xml": [],
88
+ "application/epub+zip": [
89
+ "epub"
90
+ ],
91
+ "application/eshop": [],
92
+ "application/example": [],
93
+ "application/exi": [
94
+ "exi"
95
+ ],
96
+ "application/fastinfoset": [],
97
+ "application/fastsoap": [],
98
+ "application/fits": [],
99
+ "application/font-tdpfr": [
100
+ "pfr"
101
+ ],
102
+ "application/framework-attributes+xml": [],
103
+ "application/gml+xml": [
104
+ "gml"
105
+ ],
106
+ "application/gpx+xml": [
107
+ "gpx"
108
+ ],
109
+ "application/gxf": [
110
+ "gxf"
111
+ ],
112
+ "application/h224": [],
113
+ "application/held+xml": [],
114
+ "application/http": [],
115
+ "application/hyperstudio": [
116
+ "stk"
117
+ ],
118
+ "application/ibe-key-request+xml": [],
119
+ "application/ibe-pkg-reply+xml": [],
120
+ "application/ibe-pp-data": [],
121
+ "application/iges": [],
122
+ "application/im-iscomposing+xml": [],
123
+ "application/index": [],
124
+ "application/index.cmd": [],
125
+ "application/index.obj": [],
126
+ "application/index.response": [],
127
+ "application/index.vnd": [],
128
+ "application/inkml+xml": [
129
+ "ink",
130
+ "inkml"
131
+ ],
132
+ "application/iotp": [],
133
+ "application/ipfix": [
134
+ "ipfix"
135
+ ],
136
+ "application/ipp": [],
137
+ "application/isup": [],
138
+ "application/java-archive": [
139
+ "jar"
140
+ ],
141
+ "application/java-serialized-object": [
142
+ "ser"
143
+ ],
144
+ "application/java-vm": [
145
+ "class"
146
+ ],
147
+ "application/javascript": [
148
+ "js"
149
+ ],
150
+ "application/json": [
151
+ "json"
152
+ ],
153
+ "application/jsonml+json": [
154
+ "jsonml"
155
+ ],
156
+ "application/kpml-request+xml": [],
157
+ "application/kpml-response+xml": [],
158
+ "application/lost+xml": [
159
+ "lostxml"
160
+ ],
161
+ "application/mac-binhex40": [
162
+ "hqx"
163
+ ],
164
+ "application/mac-compactpro": [
165
+ "cpt"
166
+ ],
167
+ "application/macwriteii": [],
168
+ "application/mads+xml": [
169
+ "mads"
170
+ ],
171
+ "application/marc": [
172
+ "mrc"
173
+ ],
174
+ "application/marcxml+xml": [
175
+ "mrcx"
176
+ ],
177
+ "application/mathematica": [
178
+ "ma",
179
+ "nb",
180
+ "mb"
181
+ ],
182
+ "application/mathml-content+xml": [],
183
+ "application/mathml-presentation+xml": [],
184
+ "application/mathml+xml": [
185
+ "mathml"
186
+ ],
187
+ "application/mbms-associated-procedure-description+xml": [],
188
+ "application/mbms-deregister+xml": [],
189
+ "application/mbms-envelope+xml": [],
190
+ "application/mbms-msk+xml": [],
191
+ "application/mbms-msk-response+xml": [],
192
+ "application/mbms-protection-description+xml": [],
193
+ "application/mbms-reception-report+xml": [],
194
+ "application/mbms-register+xml": [],
195
+ "application/mbms-register-response+xml": [],
196
+ "application/mbms-user-service-description+xml": [],
197
+ "application/mbox": [
198
+ "mbox"
199
+ ],
200
+ "application/media_control+xml": [],
201
+ "application/mediaservercontrol+xml": [
202
+ "mscml"
203
+ ],
204
+ "application/metalink+xml": [
205
+ "metalink"
206
+ ],
207
+ "application/metalink4+xml": [
208
+ "meta4"
209
+ ],
210
+ "application/mets+xml": [
211
+ "mets"
212
+ ],
213
+ "application/mikey": [],
214
+ "application/mods+xml": [
215
+ "mods"
216
+ ],
217
+ "application/moss-keys": [],
218
+ "application/moss-signature": [],
219
+ "application/mosskey-data": [],
220
+ "application/mosskey-request": [],
221
+ "application/mp21": [
222
+ "m21",
223
+ "mp21"
224
+ ],
225
+ "application/mp4": [
226
+ "mp4s"
227
+ ],
228
+ "application/mpeg4-generic": [],
229
+ "application/mpeg4-iod": [],
230
+ "application/mpeg4-iod-xmt": [],
231
+ "application/msc-ivr+xml": [],
232
+ "application/msc-mixer+xml": [],
233
+ "application/msword": [
234
+ "doc",
235
+ "dot"
236
+ ],
237
+ "application/mxf": [
238
+ "mxf"
239
+ ],
240
+ "application/nasdata": [],
241
+ "application/news-checkgroups": [],
242
+ "application/news-groupinfo": [],
243
+ "application/news-transmission": [],
244
+ "application/nss": [],
245
+ "application/ocsp-request": [],
246
+ "application/ocsp-response": [],
247
+ "application/octet-stream": [
248
+ "bin",
249
+ "dms",
250
+ "lrf",
251
+ "mar",
252
+ "so",
253
+ "dist",
254
+ "distz",
255
+ "pkg",
256
+ "bpk",
257
+ "dump",
258
+ "elc",
259
+ "deploy"
260
+ ],
261
+ "application/oda": [
262
+ "oda"
263
+ ],
264
+ "application/oebps-package+xml": [
265
+ "opf"
266
+ ],
267
+ "application/ogg": [
268
+ "ogx"
269
+ ],
270
+ "application/omdoc+xml": [
271
+ "omdoc"
272
+ ],
273
+ "application/onenote": [
274
+ "onetoc",
275
+ "onetoc2",
276
+ "onetmp",
277
+ "onepkg"
278
+ ],
279
+ "application/oxps": [
280
+ "oxps"
281
+ ],
282
+ "application/parityfec": [],
283
+ "application/patch-ops-error+xml": [
284
+ "xer"
285
+ ],
286
+ "application/pdf": [
287
+ "pdf"
288
+ ],
289
+ "application/pgp-encrypted": [
290
+ "pgp"
291
+ ],
292
+ "application/pgp-keys": [],
293
+ "application/pgp-signature": [
294
+ "asc",
295
+ "sig"
296
+ ],
297
+ "application/pics-rules": [
298
+ "prf"
299
+ ],
300
+ "application/pidf+xml": [],
301
+ "application/pidf-diff+xml": [],
302
+ "application/pkcs10": [
303
+ "p10"
304
+ ],
305
+ "application/pkcs7-mime": [
306
+ "p7m",
307
+ "p7c"
308
+ ],
309
+ "application/pkcs7-signature": [
310
+ "p7s"
311
+ ],
312
+ "application/pkcs8": [
313
+ "p8"
314
+ ],
315
+ "application/pkix-attr-cert": [
316
+ "ac"
317
+ ],
318
+ "application/pkix-cert": [
319
+ "cer"
320
+ ],
321
+ "application/pkix-crl": [
322
+ "crl"
323
+ ],
324
+ "application/pkix-pkipath": [
325
+ "pkipath"
326
+ ],
327
+ "application/pkixcmp": [
328
+ "pki"
329
+ ],
330
+ "application/pls+xml": [
331
+ "pls"
332
+ ],
333
+ "application/poc-settings+xml": [],
334
+ "application/postscript": [
335
+ "ai",
336
+ "eps",
337
+ "ps"
338
+ ],
339
+ "application/prs.alvestrand.titrax-sheet": [],
340
+ "application/prs.cww": [
341
+ "cww"
342
+ ],
343
+ "application/prs.nprend": [],
344
+ "application/prs.plucker": [],
345
+ "application/prs.rdf-xml-crypt": [],
346
+ "application/prs.xsf+xml": [],
347
+ "application/pskc+xml": [
348
+ "pskcxml"
349
+ ],
350
+ "application/qsig": [],
351
+ "application/rdf+xml": [
352
+ "rdf"
353
+ ],
354
+ "application/reginfo+xml": [
355
+ "rif"
356
+ ],
357
+ "application/relax-ng-compact-syntax": [
358
+ "rnc"
359
+ ],
360
+ "application/remote-printing": [],
361
+ "application/resource-lists+xml": [
362
+ "rl"
363
+ ],
364
+ "application/resource-lists-diff+xml": [
365
+ "rld"
366
+ ],
367
+ "application/riscos": [],
368
+ "application/rlmi+xml": [],
369
+ "application/rls-services+xml": [
370
+ "rs"
371
+ ],
372
+ "application/rpki-ghostbusters": [
373
+ "gbr"
374
+ ],
375
+ "application/rpki-manifest": [
376
+ "mft"
377
+ ],
378
+ "application/rpki-roa": [
379
+ "roa"
380
+ ],
381
+ "application/rpki-updown": [],
382
+ "application/rsd+xml": [
383
+ "rsd"
384
+ ],
385
+ "application/rss+xml": [
386
+ "rss"
387
+ ],
388
+ "application/rtf": [
389
+ "rtf"
390
+ ],
391
+ "application/rtx": [],
392
+ "application/samlassertion+xml": [],
393
+ "application/samlmetadata+xml": [],
394
+ "application/sbml+xml": [
395
+ "sbml"
396
+ ],
397
+ "application/scvp-cv-request": [
398
+ "scq"
399
+ ],
400
+ "application/scvp-cv-response": [
401
+ "scs"
402
+ ],
403
+ "application/scvp-vp-request": [
404
+ "spq"
405
+ ],
406
+ "application/scvp-vp-response": [
407
+ "spp"
408
+ ],
409
+ "application/sdp": [
410
+ "sdp"
411
+ ],
412
+ "application/set-payment": [],
413
+ "application/set-payment-initiation": [
414
+ "setpay"
415
+ ],
416
+ "application/set-registration": [],
417
+ "application/set-registration-initiation": [
418
+ "setreg"
419
+ ],
420
+ "application/sgml": [],
421
+ "application/sgml-open-catalog": [],
422
+ "application/shf+xml": [
423
+ "shf"
424
+ ],
425
+ "application/sieve": [],
426
+ "application/simple-filter+xml": [],
427
+ "application/simple-message-summary": [],
428
+ "application/simplesymbolcontainer": [],
429
+ "application/slate": [],
430
+ "application/smil": [],
431
+ "application/smil+xml": [
432
+ "smi",
433
+ "smil"
434
+ ],
435
+ "application/soap+fastinfoset": [],
436
+ "application/soap+xml": [],
437
+ "application/sparql-query": [
438
+ "rq"
439
+ ],
440
+ "application/sparql-results+xml": [
441
+ "srx"
442
+ ],
443
+ "application/spirits-event+xml": [],
444
+ "application/srgs": [
445
+ "gram"
446
+ ],
447
+ "application/srgs+xml": [
448
+ "grxml"
449
+ ],
450
+ "application/sru+xml": [
451
+ "sru"
452
+ ],
453
+ "application/ssdl+xml": [
454
+ "ssdl"
455
+ ],
456
+ "application/ssml+xml": [
457
+ "ssml"
458
+ ],
459
+ "application/tamp-apex-update": [],
460
+ "application/tamp-apex-update-confirm": [],
461
+ "application/tamp-community-update": [],
462
+ "application/tamp-community-update-confirm": [],
463
+ "application/tamp-error": [],
464
+ "application/tamp-sequence-adjust": [],
465
+ "application/tamp-sequence-adjust-confirm": [],
466
+ "application/tamp-status-query": [],
467
+ "application/tamp-status-response": [],
468
+ "application/tamp-update": [],
469
+ "application/tamp-update-confirm": [],
470
+ "application/tei+xml": [
471
+ "tei",
472
+ "teicorpus"
473
+ ],
474
+ "application/thraud+xml": [
475
+ "tfi"
476
+ ],
477
+ "application/timestamp-query": [],
478
+ "application/timestamp-reply": [],
479
+ "application/timestamped-data": [
480
+ "tsd"
481
+ ],
482
+ "application/tve-trigger": [],
483
+ "application/ulpfec": [],
484
+ "application/vcard+xml": [],
485
+ "application/vemmi": [],
486
+ "application/vividence.scriptfile": [],
487
+ "application/vnd.3gpp.bsf+xml": [],
488
+ "application/vnd.3gpp.pic-bw-large": [
489
+ "plb"
490
+ ],
491
+ "application/vnd.3gpp.pic-bw-small": [
492
+ "psb"
493
+ ],
494
+ "application/vnd.3gpp.pic-bw-var": [
495
+ "pvb"
496
+ ],
497
+ "application/vnd.3gpp.sms": [],
498
+ "application/vnd.3gpp2.bcmcsinfo+xml": [],
499
+ "application/vnd.3gpp2.sms": [],
500
+ "application/vnd.3gpp2.tcap": [
501
+ "tcap"
502
+ ],
503
+ "application/vnd.3m.post-it-notes": [
504
+ "pwn"
505
+ ],
506
+ "application/vnd.accpac.simply.aso": [
507
+ "aso"
508
+ ],
509
+ "application/vnd.accpac.simply.imp": [
510
+ "imp"
511
+ ],
512
+ "application/vnd.acucobol": [
513
+ "acu"
514
+ ],
515
+ "application/vnd.acucorp": [
516
+ "atc",
517
+ "acutc"
518
+ ],
519
+ "application/vnd.adobe.air-application-installer-package+zip": [
520
+ "air"
521
+ ],
522
+ "application/vnd.adobe.formscentral.fcdt": [
523
+ "fcdt"
524
+ ],
525
+ "application/vnd.adobe.fxp": [
526
+ "fxp",
527
+ "fxpl"
528
+ ],
529
+ "application/vnd.adobe.partial-upload": [],
530
+ "application/vnd.adobe.xdp+xml": [
531
+ "xdp"
532
+ ],
533
+ "application/vnd.adobe.xfdf": [
534
+ "xfdf"
535
+ ],
536
+ "application/vnd.aether.imp": [],
537
+ "application/vnd.ah-barcode": [],
538
+ "application/vnd.ahead.space": [
539
+ "ahead"
540
+ ],
541
+ "application/vnd.airzip.filesecure.azf": [
542
+ "azf"
543
+ ],
544
+ "application/vnd.airzip.filesecure.azs": [
545
+ "azs"
546
+ ],
547
+ "application/vnd.amazon.ebook": [
548
+ "azw"
549
+ ],
550
+ "application/vnd.americandynamics.acc": [
551
+ "acc"
552
+ ],
553
+ "application/vnd.amiga.ami": [
554
+ "ami"
555
+ ],
556
+ "application/vnd.amundsen.maze+xml": [],
557
+ "application/vnd.android.package-archive": [
558
+ "apk"
559
+ ],
560
+ "application/vnd.anser-web-certificate-issue-initiation": [
561
+ "cii"
562
+ ],
563
+ "application/vnd.anser-web-funds-transfer-initiation": [
564
+ "fti"
565
+ ],
566
+ "application/vnd.antix.game-component": [
567
+ "atx"
568
+ ],
569
+ "application/vnd.apple.installer+xml": [
570
+ "mpkg"
571
+ ],
572
+ "application/vnd.apple.mpegurl": [
573
+ "m3u8"
574
+ ],
575
+ "application/vnd.arastra.swi": [],
576
+ "application/vnd.aristanetworks.swi": [
577
+ "swi"
578
+ ],
579
+ "application/vnd.astraea-software.iota": [
580
+ "iota"
581
+ ],
582
+ "application/vnd.audiograph": [
583
+ "aep"
584
+ ],
585
+ "application/vnd.autopackage": [],
586
+ "application/vnd.avistar+xml": [],
587
+ "application/vnd.blueice.multipass": [
588
+ "mpm"
589
+ ],
590
+ "application/vnd.bluetooth.ep.oob": [],
591
+ "application/vnd.bmi": [
592
+ "bmi"
593
+ ],
594
+ "application/vnd.businessobjects": [
595
+ "rep"
596
+ ],
597
+ "application/vnd.cab-jscript": [],
598
+ "application/vnd.canon-cpdl": [],
599
+ "application/vnd.canon-lips": [],
600
+ "application/vnd.cendio.thinlinc.clientconf": [],
601
+ "application/vnd.chemdraw+xml": [
602
+ "cdxml"
603
+ ],
604
+ "application/vnd.chipnuts.karaoke-mmd": [
605
+ "mmd"
606
+ ],
607
+ "application/vnd.cinderella": [
608
+ "cdy"
609
+ ],
610
+ "application/vnd.cirpack.isdn-ext": [],
611
+ "application/vnd.claymore": [
612
+ "cla"
613
+ ],
614
+ "application/vnd.cloanto.rp9": [
615
+ "rp9"
616
+ ],
617
+ "application/vnd.clonk.c4group": [
618
+ "c4g",
619
+ "c4d",
620
+ "c4f",
621
+ "c4p",
622
+ "c4u"
623
+ ],
624
+ "application/vnd.cluetrust.cartomobile-config": [
625
+ "c11amc"
626
+ ],
627
+ "application/vnd.cluetrust.cartomobile-config-pkg": [
628
+ "c11amz"
629
+ ],
630
+ "application/vnd.collection+json": [],
631
+ "application/vnd.commerce-battelle": [],
632
+ "application/vnd.commonspace": [
633
+ "csp"
634
+ ],
635
+ "application/vnd.contact.cmsg": [
636
+ "cdbcmsg"
637
+ ],
638
+ "application/vnd.cosmocaller": [
639
+ "cmc"
640
+ ],
641
+ "application/vnd.crick.clicker": [
642
+ "clkx"
643
+ ],
644
+ "application/vnd.crick.clicker.keyboard": [
645
+ "clkk"
646
+ ],
647
+ "application/vnd.crick.clicker.palette": [
648
+ "clkp"
649
+ ],
650
+ "application/vnd.crick.clicker.template": [
651
+ "clkt"
652
+ ],
653
+ "application/vnd.crick.clicker.wordbank": [
654
+ "clkw"
655
+ ],
656
+ "application/vnd.criticaltools.wbs+xml": [
657
+ "wbs"
658
+ ],
659
+ "application/vnd.ctc-posml": [
660
+ "pml"
661
+ ],
662
+ "application/vnd.ctct.ws+xml": [],
663
+ "application/vnd.cups-pdf": [],
664
+ "application/vnd.cups-postscript": [],
665
+ "application/vnd.cups-ppd": [
666
+ "ppd"
667
+ ],
668
+ "application/vnd.cups-raster": [],
669
+ "application/vnd.cups-raw": [],
670
+ "application/vnd.curl": [],
671
+ "application/vnd.curl.car": [
672
+ "car"
673
+ ],
674
+ "application/vnd.curl.pcurl": [
675
+ "pcurl"
676
+ ],
677
+ "application/vnd.cybank": [],
678
+ "application/vnd.dart": [
679
+ "dart"
680
+ ],
681
+ "application/vnd.data-vision.rdz": [
682
+ "rdz"
683
+ ],
684
+ "application/vnd.dece.data": [
685
+ "uvf",
686
+ "uvvf",
687
+ "uvd",
688
+ "uvvd"
689
+ ],
690
+ "application/vnd.dece.ttml+xml": [
691
+ "uvt",
692
+ "uvvt"
693
+ ],
694
+ "application/vnd.dece.unspecified": [
695
+ "uvx",
696
+ "uvvx"
697
+ ],
698
+ "application/vnd.dece.zip": [
699
+ "uvz",
700
+ "uvvz"
701
+ ],
702
+ "application/vnd.denovo.fcselayout-link": [
703
+ "fe_launch"
704
+ ],
705
+ "application/vnd.dir-bi.plate-dl-nosuffix": [],
706
+ "application/vnd.dna": [
707
+ "dna"
708
+ ],
709
+ "application/vnd.dolby.mlp": [
710
+ "mlp"
711
+ ],
712
+ "application/vnd.dolby.mobile.1": [],
713
+ "application/vnd.dolby.mobile.2": [],
714
+ "application/vnd.dpgraph": [
715
+ "dpg"
716
+ ],
717
+ "application/vnd.dreamfactory": [
718
+ "dfac"
719
+ ],
720
+ "application/vnd.ds-keypoint": [
721
+ "kpxx"
722
+ ],
723
+ "application/vnd.dvb.ait": [
724
+ "ait"
725
+ ],
726
+ "application/vnd.dvb.dvbj": [],
727
+ "application/vnd.dvb.esgcontainer": [],
728
+ "application/vnd.dvb.ipdcdftnotifaccess": [],
729
+ "application/vnd.dvb.ipdcesgaccess": [],
730
+ "application/vnd.dvb.ipdcesgaccess2": [],
731
+ "application/vnd.dvb.ipdcesgpdd": [],
732
+ "application/vnd.dvb.ipdcroaming": [],
733
+ "application/vnd.dvb.iptv.alfec-base": [],
734
+ "application/vnd.dvb.iptv.alfec-enhancement": [],
735
+ "application/vnd.dvb.notif-aggregate-root+xml": [],
736
+ "application/vnd.dvb.notif-container+xml": [],
737
+ "application/vnd.dvb.notif-generic+xml": [],
738
+ "application/vnd.dvb.notif-ia-msglist+xml": [],
739
+ "application/vnd.dvb.notif-ia-registration-request+xml": [],
740
+ "application/vnd.dvb.notif-ia-registration-response+xml": [],
741
+ "application/vnd.dvb.notif-init+xml": [],
742
+ "application/vnd.dvb.pfr": [],
743
+ "application/vnd.dvb.service": [
744
+ "svc"
745
+ ],
746
+ "application/vnd.dxr": [],
747
+ "application/vnd.dynageo": [
748
+ "geo"
749
+ ],
750
+ "application/vnd.easykaraoke.cdgdownload": [],
751
+ "application/vnd.ecdis-update": [],
752
+ "application/vnd.ecowin.chart": [
753
+ "mag"
754
+ ],
755
+ "application/vnd.ecowin.filerequest": [],
756
+ "application/vnd.ecowin.fileupdate": [],
757
+ "application/vnd.ecowin.series": [],
758
+ "application/vnd.ecowin.seriesrequest": [],
759
+ "application/vnd.ecowin.seriesupdate": [],
760
+ "application/vnd.emclient.accessrequest+xml": [],
761
+ "application/vnd.enliven": [
762
+ "nml"
763
+ ],
764
+ "application/vnd.eprints.data+xml": [],
765
+ "application/vnd.epson.esf": [
766
+ "esf"
767
+ ],
768
+ "application/vnd.epson.msf": [
769
+ "msf"
770
+ ],
771
+ "application/vnd.epson.quickanime": [
772
+ "qam"
773
+ ],
774
+ "application/vnd.epson.salt": [
775
+ "slt"
776
+ ],
777
+ "application/vnd.epson.ssf": [
778
+ "ssf"
779
+ ],
780
+ "application/vnd.ericsson.quickcall": [],
781
+ "application/vnd.eszigno3+xml": [
782
+ "es3",
783
+ "et3"
784
+ ],
785
+ "application/vnd.etsi.aoc+xml": [],
786
+ "application/vnd.etsi.cug+xml": [],
787
+ "application/vnd.etsi.iptvcommand+xml": [],
788
+ "application/vnd.etsi.iptvdiscovery+xml": [],
789
+ "application/vnd.etsi.iptvprofile+xml": [],
790
+ "application/vnd.etsi.iptvsad-bc+xml": [],
791
+ "application/vnd.etsi.iptvsad-cod+xml": [],
792
+ "application/vnd.etsi.iptvsad-npvr+xml": [],
793
+ "application/vnd.etsi.iptvservice+xml": [],
794
+ "application/vnd.etsi.iptvsync+xml": [],
795
+ "application/vnd.etsi.iptvueprofile+xml": [],
796
+ "application/vnd.etsi.mcid+xml": [],
797
+ "application/vnd.etsi.overload-control-policy-dataset+xml": [],
798
+ "application/vnd.etsi.sci+xml": [],
799
+ "application/vnd.etsi.simservs+xml": [],
800
+ "application/vnd.etsi.tsl+xml": [],
801
+ "application/vnd.etsi.tsl.der": [],
802
+ "application/vnd.eudora.data": [],
803
+ "application/vnd.ezpix-album": [
804
+ "ez2"
805
+ ],
806
+ "application/vnd.ezpix-package": [
807
+ "ez3"
808
+ ],
809
+ "application/vnd.f-secure.mobile": [],
810
+ "application/vnd.fdf": [
811
+ "fdf"
812
+ ],
813
+ "application/vnd.fdsn.mseed": [
814
+ "mseed"
815
+ ],
816
+ "application/vnd.fdsn.seed": [
817
+ "seed",
818
+ "dataless"
819
+ ],
820
+ "application/vnd.ffsns": [],
821
+ "application/vnd.fints": [],
822
+ "application/vnd.flographit": [
823
+ "gph"
824
+ ],
825
+ "application/vnd.fluxtime.clip": [
826
+ "ftc"
827
+ ],
828
+ "application/vnd.font-fontforge-sfd": [],
829
+ "application/vnd.framemaker": [
830
+ "fm",
831
+ "frame",
832
+ "maker",
833
+ "book"
834
+ ],
835
+ "application/vnd.frogans.fnc": [
836
+ "fnc"
837
+ ],
838
+ "application/vnd.frogans.ltf": [
839
+ "ltf"
840
+ ],
841
+ "application/vnd.fsc.weblaunch": [
842
+ "fsc"
843
+ ],
844
+ "application/vnd.fujitsu.oasys": [
845
+ "oas"
846
+ ],
847
+ "application/vnd.fujitsu.oasys2": [
848
+ "oa2"
849
+ ],
850
+ "application/vnd.fujitsu.oasys3": [
851
+ "oa3"
852
+ ],
853
+ "application/vnd.fujitsu.oasysgp": [
854
+ "fg5"
855
+ ],
856
+ "application/vnd.fujitsu.oasysprs": [
857
+ "bh2"
858
+ ],
859
+ "application/vnd.fujixerox.art-ex": [],
860
+ "application/vnd.fujixerox.art4": [],
861
+ "application/vnd.fujixerox.hbpl": [],
862
+ "application/vnd.fujixerox.ddd": [
863
+ "ddd"
864
+ ],
865
+ "application/vnd.fujixerox.docuworks": [
866
+ "xdw"
867
+ ],
868
+ "application/vnd.fujixerox.docuworks.binder": [
869
+ "xbd"
870
+ ],
871
+ "application/vnd.fut-misnet": [],
872
+ "application/vnd.fuzzysheet": [
873
+ "fzs"
874
+ ],
875
+ "application/vnd.genomatix.tuxedo": [
876
+ "txd"
877
+ ],
878
+ "application/vnd.geocube+xml": [],
879
+ "application/vnd.geogebra.file": [
880
+ "ggb"
881
+ ],
882
+ "application/vnd.geogebra.tool": [
883
+ "ggt"
884
+ ],
885
+ "application/vnd.geometry-explorer": [
886
+ "gex",
887
+ "gre"
888
+ ],
889
+ "application/vnd.geonext": [
890
+ "gxt"
891
+ ],
892
+ "application/vnd.geoplan": [
893
+ "g2w"
894
+ ],
895
+ "application/vnd.geospace": [
896
+ "g3w"
897
+ ],
898
+ "application/vnd.globalplatform.card-content-mgt": [],
899
+ "application/vnd.globalplatform.card-content-mgt-response": [],
900
+ "application/vnd.gmx": [
901
+ "gmx"
902
+ ],
903
+ "application/vnd.google-earth.kml+xml": [
904
+ "kml"
905
+ ],
906
+ "application/vnd.google-earth.kmz": [
907
+ "kmz"
908
+ ],
909
+ "application/vnd.grafeq": [
910
+ "gqf",
911
+ "gqs"
912
+ ],
913
+ "application/vnd.gridmp": [],
914
+ "application/vnd.groove-account": [
915
+ "gac"
916
+ ],
917
+ "application/vnd.groove-help": [
918
+ "ghf"
919
+ ],
920
+ "application/vnd.groove-identity-message": [
921
+ "gim"
922
+ ],
923
+ "application/vnd.groove-injector": [
924
+ "grv"
925
+ ],
926
+ "application/vnd.groove-tool-message": [
927
+ "gtm"
928
+ ],
929
+ "application/vnd.groove-tool-template": [
930
+ "tpl"
931
+ ],
932
+ "application/vnd.groove-vcard": [
933
+ "vcg"
934
+ ],
935
+ "application/vnd.hal+json": [],
936
+ "application/vnd.hal+xml": [
937
+ "hal"
938
+ ],
939
+ "application/vnd.handheld-entertainment+xml": [
940
+ "zmm"
941
+ ],
942
+ "application/vnd.hbci": [
943
+ "hbci"
944
+ ],
945
+ "application/vnd.hcl-bireports": [],
946
+ "application/vnd.hhe.lesson-player": [
947
+ "les"
948
+ ],
949
+ "application/vnd.hp-hpgl": [
950
+ "hpgl"
951
+ ],
952
+ "application/vnd.hp-hpid": [
953
+ "hpid"
954
+ ],
955
+ "application/vnd.hp-hps": [
956
+ "hps"
957
+ ],
958
+ "application/vnd.hp-jlyt": [
959
+ "jlt"
960
+ ],
961
+ "application/vnd.hp-pcl": [
962
+ "pcl"
963
+ ],
964
+ "application/vnd.hp-pclxl": [
965
+ "pclxl"
966
+ ],
967
+ "application/vnd.httphone": [],
968
+ "application/vnd.hzn-3d-crossword": [],
969
+ "application/vnd.ibm.afplinedata": [],
970
+ "application/vnd.ibm.electronic-media": [],
971
+ "application/vnd.ibm.minipay": [
972
+ "mpy"
973
+ ],
974
+ "application/vnd.ibm.modcap": [
975
+ "afp",
976
+ "listafp",
977
+ "list3820"
978
+ ],
979
+ "application/vnd.ibm.rights-management": [
980
+ "irm"
981
+ ],
982
+ "application/vnd.ibm.secure-container": [
983
+ "sc"
984
+ ],
985
+ "application/vnd.iccprofile": [
986
+ "icc",
987
+ "icm"
988
+ ],
989
+ "application/vnd.igloader": [
990
+ "igl"
991
+ ],
992
+ "application/vnd.immervision-ivp": [
993
+ "ivp"
994
+ ],
995
+ "application/vnd.immervision-ivu": [
996
+ "ivu"
997
+ ],
998
+ "application/vnd.informedcontrol.rms+xml": [],
999
+ "application/vnd.informix-visionary": [],
1000
+ "application/vnd.infotech.project": [],
1001
+ "application/vnd.infotech.project+xml": [],
1002
+ "application/vnd.innopath.wamp.notification": [],
1003
+ "application/vnd.insors.igm": [
1004
+ "igm"
1005
+ ],
1006
+ "application/vnd.intercon.formnet": [
1007
+ "xpw",
1008
+ "xpx"
1009
+ ],
1010
+ "application/vnd.intergeo": [
1011
+ "i2g"
1012
+ ],
1013
+ "application/vnd.intertrust.digibox": [],
1014
+ "application/vnd.intertrust.nncp": [],
1015
+ "application/vnd.intu.qbo": [
1016
+ "qbo"
1017
+ ],
1018
+ "application/vnd.intu.qfx": [
1019
+ "qfx"
1020
+ ],
1021
+ "application/vnd.iptc.g2.conceptitem+xml": [],
1022
+ "application/vnd.iptc.g2.knowledgeitem+xml": [],
1023
+ "application/vnd.iptc.g2.newsitem+xml": [],
1024
+ "application/vnd.iptc.g2.newsmessage+xml": [],
1025
+ "application/vnd.iptc.g2.packageitem+xml": [],
1026
+ "application/vnd.iptc.g2.planningitem+xml": [],
1027
+ "application/vnd.ipunplugged.rcprofile": [
1028
+ "rcprofile"
1029
+ ],
1030
+ "application/vnd.irepository.package+xml": [
1031
+ "irp"
1032
+ ],
1033
+ "application/vnd.is-xpr": [
1034
+ "xpr"
1035
+ ],
1036
+ "application/vnd.isac.fcs": [
1037
+ "fcs"
1038
+ ],
1039
+ "application/vnd.jam": [
1040
+ "jam"
1041
+ ],
1042
+ "application/vnd.japannet-directory-service": [],
1043
+ "application/vnd.japannet-jpnstore-wakeup": [],
1044
+ "application/vnd.japannet-payment-wakeup": [],
1045
+ "application/vnd.japannet-registration": [],
1046
+ "application/vnd.japannet-registration-wakeup": [],
1047
+ "application/vnd.japannet-setstore-wakeup": [],
1048
+ "application/vnd.japannet-verification": [],
1049
+ "application/vnd.japannet-verification-wakeup": [],
1050
+ "application/vnd.jcp.javame.midlet-rms": [
1051
+ "rms"
1052
+ ],
1053
+ "application/vnd.jisp": [
1054
+ "jisp"
1055
+ ],
1056
+ "application/vnd.joost.joda-archive": [
1057
+ "joda"
1058
+ ],
1059
+ "application/vnd.kahootz": [
1060
+ "ktz",
1061
+ "ktr"
1062
+ ],
1063
+ "application/vnd.kde.karbon": [
1064
+ "karbon"
1065
+ ],
1066
+ "application/vnd.kde.kchart": [
1067
+ "chrt"
1068
+ ],
1069
+ "application/vnd.kde.kformula": [
1070
+ "kfo"
1071
+ ],
1072
+ "application/vnd.kde.kivio": [
1073
+ "flw"
1074
+ ],
1075
+ "application/vnd.kde.kontour": [
1076
+ "kon"
1077
+ ],
1078
+ "application/vnd.kde.kpresenter": [
1079
+ "kpr",
1080
+ "kpt"
1081
+ ],
1082
+ "application/vnd.kde.kspread": [
1083
+ "ksp"
1084
+ ],
1085
+ "application/vnd.kde.kword": [
1086
+ "kwd",
1087
+ "kwt"
1088
+ ],
1089
+ "application/vnd.kenameaapp": [
1090
+ "htke"
1091
+ ],
1092
+ "application/vnd.kidspiration": [
1093
+ "kia"
1094
+ ],
1095
+ "application/vnd.kinar": [
1096
+ "kne",
1097
+ "knp"
1098
+ ],
1099
+ "application/vnd.koan": [
1100
+ "skp",
1101
+ "skd",
1102
+ "skt",
1103
+ "skm"
1104
+ ],
1105
+ "application/vnd.kodak-descriptor": [
1106
+ "sse"
1107
+ ],
1108
+ "application/vnd.las.las+xml": [
1109
+ "lasxml"
1110
+ ],
1111
+ "application/vnd.liberty-request+xml": [],
1112
+ "application/vnd.llamagraphics.life-balance.desktop": [
1113
+ "lbd"
1114
+ ],
1115
+ "application/vnd.llamagraphics.life-balance.exchange+xml": [
1116
+ "lbe"
1117
+ ],
1118
+ "application/vnd.lotus-1-2-3": [
1119
+ "123"
1120
+ ],
1121
+ "application/vnd.lotus-approach": [
1122
+ "apr"
1123
+ ],
1124
+ "application/vnd.lotus-freelance": [
1125
+ "pre"
1126
+ ],
1127
+ "application/vnd.lotus-notes": [
1128
+ "nsf"
1129
+ ],
1130
+ "application/vnd.lotus-organizer": [
1131
+ "org"
1132
+ ],
1133
+ "application/vnd.lotus-screencam": [
1134
+ "scm"
1135
+ ],
1136
+ "application/vnd.lotus-wordpro": [
1137
+ "lwp"
1138
+ ],
1139
+ "application/vnd.macports.portpkg": [
1140
+ "portpkg"
1141
+ ],
1142
+ "application/vnd.marlin.drm.actiontoken+xml": [],
1143
+ "application/vnd.marlin.drm.conftoken+xml": [],
1144
+ "application/vnd.marlin.drm.license+xml": [],
1145
+ "application/vnd.marlin.drm.mdcf": [],
1146
+ "application/vnd.mcd": [
1147
+ "mcd"
1148
+ ],
1149
+ "application/vnd.medcalcdata": [
1150
+ "mc1"
1151
+ ],
1152
+ "application/vnd.mediastation.cdkey": [
1153
+ "cdkey"
1154
+ ],
1155
+ "application/vnd.meridian-slingshot": [],
1156
+ "application/vnd.mfer": [
1157
+ "mwf"
1158
+ ],
1159
+ "application/vnd.mfmp": [
1160
+ "mfm"
1161
+ ],
1162
+ "application/vnd.micrografx.flo": [
1163
+ "flo"
1164
+ ],
1165
+ "application/vnd.micrografx.igx": [
1166
+ "igx"
1167
+ ],
1168
+ "application/vnd.mif": [
1169
+ "mif"
1170
+ ],
1171
+ "application/vnd.minisoft-hp3000-save": [],
1172
+ "application/vnd.mitsubishi.misty-guard.trustweb": [],
1173
+ "application/vnd.mobius.daf": [
1174
+ "daf"
1175
+ ],
1176
+ "application/vnd.mobius.dis": [
1177
+ "dis"
1178
+ ],
1179
+ "application/vnd.mobius.mbk": [
1180
+ "mbk"
1181
+ ],
1182
+ "application/vnd.mobius.mqy": [
1183
+ "mqy"
1184
+ ],
1185
+ "application/vnd.mobius.msl": [
1186
+ "msl"
1187
+ ],
1188
+ "application/vnd.mobius.plc": [
1189
+ "plc"
1190
+ ],
1191
+ "application/vnd.mobius.txf": [
1192
+ "txf"
1193
+ ],
1194
+ "application/vnd.mophun.application": [
1195
+ "mpn"
1196
+ ],
1197
+ "application/vnd.mophun.certificate": [
1198
+ "mpc"
1199
+ ],
1200
+ "application/vnd.motorola.flexsuite": [],
1201
+ "application/vnd.motorola.flexsuite.adsi": [],
1202
+ "application/vnd.motorola.flexsuite.fis": [],
1203
+ "application/vnd.motorola.flexsuite.gotap": [],
1204
+ "application/vnd.motorola.flexsuite.kmr": [],
1205
+ "application/vnd.motorola.flexsuite.ttc": [],
1206
+ "application/vnd.motorola.flexsuite.wem": [],
1207
+ "application/vnd.motorola.iprm": [],
1208
+ "application/vnd.mozilla.xul+xml": [
1209
+ "xul"
1210
+ ],
1211
+ "application/vnd.ms-artgalry": [
1212
+ "cil"
1213
+ ],
1214
+ "application/vnd.ms-asf": [],
1215
+ "application/vnd.ms-cab-compressed": [
1216
+ "cab"
1217
+ ],
1218
+ "application/vnd.ms-color.iccprofile": [],
1219
+ "application/vnd.ms-excel": [
1220
+ "xls",
1221
+ "xlm",
1222
+ "xla",
1223
+ "xlc",
1224
+ "xlt",
1225
+ "xlw"
1226
+ ],
1227
+ "application/vnd.ms-excel.addin.macroenabled.12": [
1228
+ "xlam"
1229
+ ],
1230
+ "application/vnd.ms-excel.sheet.binary.macroenabled.12": [
1231
+ "xlsb"
1232
+ ],
1233
+ "application/vnd.ms-excel.sheet.macroenabled.12": [
1234
+ "xlsm"
1235
+ ],
1236
+ "application/vnd.ms-excel.template.macroenabled.12": [
1237
+ "xltm"
1238
+ ],
1239
+ "application/vnd.ms-fontobject": [
1240
+ "eot"
1241
+ ],
1242
+ "application/vnd.ms-htmlhelp": [
1243
+ "chm"
1244
+ ],
1245
+ "application/vnd.ms-ims": [
1246
+ "ims"
1247
+ ],
1248
+ "application/vnd.ms-lrm": [
1249
+ "lrm"
1250
+ ],
1251
+ "application/vnd.ms-office.activex+xml": [],
1252
+ "application/vnd.ms-officetheme": [
1253
+ "thmx"
1254
+ ],
1255
+ "application/vnd.ms-opentype": [],
1256
+ "application/vnd.ms-package.obfuscated-opentype": [],
1257
+ "application/vnd.ms-pki.seccat": [
1258
+ "cat"
1259
+ ],
1260
+ "application/vnd.ms-pki.stl": [
1261
+ "stl"
1262
+ ],
1263
+ "application/vnd.ms-playready.initiator+xml": [],
1264
+ "application/vnd.ms-powerpoint": [
1265
+ "ppt",
1266
+ "pps",
1267
+ "pot"
1268
+ ],
1269
+ "application/vnd.ms-powerpoint.addin.macroenabled.12": [
1270
+ "ppam"
1271
+ ],
1272
+ "application/vnd.ms-powerpoint.presentation.macroenabled.12": [
1273
+ "pptm"
1274
+ ],
1275
+ "application/vnd.ms-powerpoint.slide.macroenabled.12": [
1276
+ "sldm"
1277
+ ],
1278
+ "application/vnd.ms-powerpoint.slideshow.macroenabled.12": [
1279
+ "ppsm"
1280
+ ],
1281
+ "application/vnd.ms-powerpoint.template.macroenabled.12": [
1282
+ "potm"
1283
+ ],
1284
+ "application/vnd.ms-printing.printticket+xml": [],
1285
+ "application/vnd.ms-project": [
1286
+ "mpp",
1287
+ "mpt"
1288
+ ],
1289
+ "application/vnd.ms-tnef": [],
1290
+ "application/vnd.ms-wmdrm.lic-chlg-req": [],
1291
+ "application/vnd.ms-wmdrm.lic-resp": [],
1292
+ "application/vnd.ms-wmdrm.meter-chlg-req": [],
1293
+ "application/vnd.ms-wmdrm.meter-resp": [],
1294
+ "application/vnd.ms-word.document.macroenabled.12": [
1295
+ "docm"
1296
+ ],
1297
+ "application/vnd.ms-word.template.macroenabled.12": [
1298
+ "dotm"
1299
+ ],
1300
+ "application/vnd.ms-works": [
1301
+ "wps",
1302
+ "wks",
1303
+ "wcm",
1304
+ "wdb"
1305
+ ],
1306
+ "application/vnd.ms-wpl": [
1307
+ "wpl"
1308
+ ],
1309
+ "application/vnd.ms-xpsdocument": [
1310
+ "xps"
1311
+ ],
1312
+ "application/vnd.mseq": [
1313
+ "mseq"
1314
+ ],
1315
+ "application/vnd.msign": [],
1316
+ "application/vnd.multiad.creator": [],
1317
+ "application/vnd.multiad.creator.cif": [],
1318
+ "application/vnd.music-niff": [],
1319
+ "application/vnd.musician": [
1320
+ "mus"
1321
+ ],
1322
+ "application/vnd.muvee.style": [
1323
+ "msty"
1324
+ ],
1325
+ "application/vnd.mynfc": [
1326
+ "taglet"
1327
+ ],
1328
+ "application/vnd.ncd.control": [],
1329
+ "application/vnd.ncd.reference": [],
1330
+ "application/vnd.nervana": [],
1331
+ "application/vnd.netfpx": [],
1332
+ "application/vnd.neurolanguage.nlu": [
1333
+ "nlu"
1334
+ ],
1335
+ "application/vnd.nitf": [
1336
+ "ntf",
1337
+ "nitf"
1338
+ ],
1339
+ "application/vnd.noblenet-directory": [
1340
+ "nnd"
1341
+ ],
1342
+ "application/vnd.noblenet-sealer": [
1343
+ "nns"
1344
+ ],
1345
+ "application/vnd.noblenet-web": [
1346
+ "nnw"
1347
+ ],
1348
+ "application/vnd.nokia.catalogs": [],
1349
+ "application/vnd.nokia.conml+wbxml": [],
1350
+ "application/vnd.nokia.conml+xml": [],
1351
+ "application/vnd.nokia.isds-radio-presets": [],
1352
+ "application/vnd.nokia.iptv.config+xml": [],
1353
+ "application/vnd.nokia.landmark+wbxml": [],
1354
+ "application/vnd.nokia.landmark+xml": [],
1355
+ "application/vnd.nokia.landmarkcollection+xml": [],
1356
+ "application/vnd.nokia.n-gage.ac+xml": [],
1357
+ "application/vnd.nokia.n-gage.data": [
1358
+ "ngdat"
1359
+ ],
1360
+ "application/vnd.nokia.ncd": [],
1361
+ "application/vnd.nokia.pcd+wbxml": [],
1362
+ "application/vnd.nokia.pcd+xml": [],
1363
+ "application/vnd.nokia.radio-preset": [
1364
+ "rpst"
1365
+ ],
1366
+ "application/vnd.nokia.radio-presets": [
1367
+ "rpss"
1368
+ ],
1369
+ "application/vnd.novadigm.edm": [
1370
+ "edm"
1371
+ ],
1372
+ "application/vnd.novadigm.edx": [
1373
+ "edx"
1374
+ ],
1375
+ "application/vnd.novadigm.ext": [
1376
+ "ext"
1377
+ ],
1378
+ "application/vnd.ntt-local.file-transfer": [],
1379
+ "application/vnd.ntt-local.sip-ta_remote": [],
1380
+ "application/vnd.ntt-local.sip-ta_tcp_stream": [],
1381
+ "application/vnd.oasis.opendocument.chart": [
1382
+ "odc"
1383
+ ],
1384
+ "application/vnd.oasis.opendocument.chart-template": [
1385
+ "otc"
1386
+ ],
1387
+ "application/vnd.oasis.opendocument.database": [
1388
+ "odb"
1389
+ ],
1390
+ "application/vnd.oasis.opendocument.formula": [
1391
+ "odf"
1392
+ ],
1393
+ "application/vnd.oasis.opendocument.formula-template": [
1394
+ "odft"
1395
+ ],
1396
+ "application/vnd.oasis.opendocument.graphics": [
1397
+ "odg"
1398
+ ],
1399
+ "application/vnd.oasis.opendocument.graphics-template": [
1400
+ "otg"
1401
+ ],
1402
+ "application/vnd.oasis.opendocument.image": [
1403
+ "odi"
1404
+ ],
1405
+ "application/vnd.oasis.opendocument.image-template": [
1406
+ "oti"
1407
+ ],
1408
+ "application/vnd.oasis.opendocument.presentation": [
1409
+ "odp"
1410
+ ],
1411
+ "application/vnd.oasis.opendocument.presentation-template": [
1412
+ "otp"
1413
+ ],
1414
+ "application/vnd.oasis.opendocument.spreadsheet": [
1415
+ "ods"
1416
+ ],
1417
+ "application/vnd.oasis.opendocument.spreadsheet-template": [
1418
+ "ots"
1419
+ ],
1420
+ "application/vnd.oasis.opendocument.text": [
1421
+ "odt"
1422
+ ],
1423
+ "application/vnd.oasis.opendocument.text-master": [
1424
+ "odm"
1425
+ ],
1426
+ "application/vnd.oasis.opendocument.text-template": [
1427
+ "ott"
1428
+ ],
1429
+ "application/vnd.oasis.opendocument.text-web": [
1430
+ "oth"
1431
+ ],
1432
+ "application/vnd.obn": [],
1433
+ "application/vnd.oftn.l10n+json": [],
1434
+ "application/vnd.oipf.contentaccessdownload+xml": [],
1435
+ "application/vnd.oipf.contentaccessstreaming+xml": [],
1436
+ "application/vnd.oipf.cspg-hexbinary": [],
1437
+ "application/vnd.oipf.dae.svg+xml": [],
1438
+ "application/vnd.oipf.dae.xhtml+xml": [],
1439
+ "application/vnd.oipf.mippvcontrolmessage+xml": [],
1440
+ "application/vnd.oipf.pae.gem": [],
1441
+ "application/vnd.oipf.spdiscovery+xml": [],
1442
+ "application/vnd.oipf.spdlist+xml": [],
1443
+ "application/vnd.oipf.ueprofile+xml": [],
1444
+ "application/vnd.oipf.userprofile+xml": [],
1445
+ "application/vnd.olpc-sugar": [
1446
+ "xo"
1447
+ ],
1448
+ "application/vnd.oma-scws-config": [],
1449
+ "application/vnd.oma-scws-http-request": [],
1450
+ "application/vnd.oma-scws-http-response": [],
1451
+ "application/vnd.oma.bcast.associated-procedure-parameter+xml": [],
1452
+ "application/vnd.oma.bcast.drm-trigger+xml": [],
1453
+ "application/vnd.oma.bcast.imd+xml": [],
1454
+ "application/vnd.oma.bcast.ltkm": [],
1455
+ "application/vnd.oma.bcast.notification+xml": [],
1456
+ "application/vnd.oma.bcast.provisioningtrigger": [],
1457
+ "application/vnd.oma.bcast.sgboot": [],
1458
+ "application/vnd.oma.bcast.sgdd+xml": [],
1459
+ "application/vnd.oma.bcast.sgdu": [],
1460
+ "application/vnd.oma.bcast.simple-symbol-container": [],
1461
+ "application/vnd.oma.bcast.smartcard-trigger+xml": [],
1462
+ "application/vnd.oma.bcast.sprov+xml": [],
1463
+ "application/vnd.oma.bcast.stkm": [],
1464
+ "application/vnd.oma.cab-address-book+xml": [],
1465
+ "application/vnd.oma.cab-feature-handler+xml": [],
1466
+ "application/vnd.oma.cab-pcc+xml": [],
1467
+ "application/vnd.oma.cab-user-prefs+xml": [],
1468
+ "application/vnd.oma.dcd": [],
1469
+ "application/vnd.oma.dcdc": [],
1470
+ "application/vnd.oma.dd2+xml": [
1471
+ "dd2"
1472
+ ],
1473
+ "application/vnd.oma.drm.risd+xml": [],
1474
+ "application/vnd.oma.group-usage-list+xml": [],
1475
+ "application/vnd.oma.pal+xml": [],
1476
+ "application/vnd.oma.poc.detailed-progress-report+xml": [],
1477
+ "application/vnd.oma.poc.final-report+xml": [],
1478
+ "application/vnd.oma.poc.groups+xml": [],
1479
+ "application/vnd.oma.poc.invocation-descriptor+xml": [],
1480
+ "application/vnd.oma.poc.optimized-progress-report+xml": [],
1481
+ "application/vnd.oma.push": [],
1482
+ "application/vnd.oma.scidm.messages+xml": [],
1483
+ "application/vnd.oma.xcap-directory+xml": [],
1484
+ "application/vnd.omads-email+xml": [],
1485
+ "application/vnd.omads-file+xml": [],
1486
+ "application/vnd.omads-folder+xml": [],
1487
+ "application/vnd.omaloc-supl-init": [],
1488
+ "application/vnd.openofficeorg.extension": [
1489
+ "oxt"
1490
+ ],
1491
+ "application/vnd.openxmlformats-officedocument.custom-properties+xml": [],
1492
+ "application/vnd.openxmlformats-officedocument.customxmlproperties+xml": [],
1493
+ "application/vnd.openxmlformats-officedocument.drawing+xml": [],
1494
+ "application/vnd.openxmlformats-officedocument.drawingml.chart+xml": [],
1495
+ "application/vnd.openxmlformats-officedocument.drawingml.chartshapes+xml": [],
1496
+ "application/vnd.openxmlformats-officedocument.drawingml.diagramcolors+xml": [],
1497
+ "application/vnd.openxmlformats-officedocument.drawingml.diagramdata+xml": [],
1498
+ "application/vnd.openxmlformats-officedocument.drawingml.diagramlayout+xml": [],
1499
+ "application/vnd.openxmlformats-officedocument.drawingml.diagramstyle+xml": [],
1500
+ "application/vnd.openxmlformats-officedocument.extended-properties+xml": [],
1501
+ "application/vnd.openxmlformats-officedocument.presentationml.commentauthors+xml": [],
1502
+ "application/vnd.openxmlformats-officedocument.presentationml.comments+xml": [],
1503
+ "application/vnd.openxmlformats-officedocument.presentationml.handoutmaster+xml": [],
1504
+ "application/vnd.openxmlformats-officedocument.presentationml.notesmaster+xml": [],
1505
+ "application/vnd.openxmlformats-officedocument.presentationml.notesslide+xml": [],
1506
+ "application/vnd.openxmlformats-officedocument.presentationml.presentation": [
1507
+ "pptx"
1508
+ ],
1509
+ "application/vnd.openxmlformats-officedocument.presentationml.presentation.main+xml": [],
1510
+ "application/vnd.openxmlformats-officedocument.presentationml.presprops+xml": [],
1511
+ "application/vnd.openxmlformats-officedocument.presentationml.slide": [
1512
+ "sldx"
1513
+ ],
1514
+ "application/vnd.openxmlformats-officedocument.presentationml.slide+xml": [],
1515
+ "application/vnd.openxmlformats-officedocument.presentationml.slidelayout+xml": [],
1516
+ "application/vnd.openxmlformats-officedocument.presentationml.slidemaster+xml": [],
1517
+ "application/vnd.openxmlformats-officedocument.presentationml.slideshow": [
1518
+ "ppsx"
1519
+ ],
1520
+ "application/vnd.openxmlformats-officedocument.presentationml.slideshow.main+xml": [],
1521
+ "application/vnd.openxmlformats-officedocument.presentationml.slideupdateinfo+xml": [],
1522
+ "application/vnd.openxmlformats-officedocument.presentationml.tablestyles+xml": [],
1523
+ "application/vnd.openxmlformats-officedocument.presentationml.tags+xml": [],
1524
+ "application/vnd.openxmlformats-officedocument.presentationml.template": [
1525
+ "potx"
1526
+ ],
1527
+ "application/vnd.openxmlformats-officedocument.presentationml.template.main+xml": [],
1528
+ "application/vnd.openxmlformats-officedocument.presentationml.viewprops+xml": [],
1529
+ "application/vnd.openxmlformats-officedocument.spreadsheetml.calcchain+xml": [],
1530
+ "application/vnd.openxmlformats-officedocument.spreadsheetml.chartsheet+xml": [],
1531
+ "application/vnd.openxmlformats-officedocument.spreadsheetml.comments+xml": [],
1532
+ "application/vnd.openxmlformats-officedocument.spreadsheetml.connections+xml": [],
1533
+ "application/vnd.openxmlformats-officedocument.spreadsheetml.dialogsheet+xml": [],
1534
+ "application/vnd.openxmlformats-officedocument.spreadsheetml.externallink+xml": [],
1535
+ "application/vnd.openxmlformats-officedocument.spreadsheetml.pivotcachedefinition+xml": [],
1536
+ "application/vnd.openxmlformats-officedocument.spreadsheetml.pivotcacherecords+xml": [],
1537
+ "application/vnd.openxmlformats-officedocument.spreadsheetml.pivottable+xml": [],
1538
+ "application/vnd.openxmlformats-officedocument.spreadsheetml.querytable+xml": [],
1539
+ "application/vnd.openxmlformats-officedocument.spreadsheetml.revisionheaders+xml": [],
1540
+ "application/vnd.openxmlformats-officedocument.spreadsheetml.revisionlog+xml": [],
1541
+ "application/vnd.openxmlformats-officedocument.spreadsheetml.sharedstrings+xml": [],
1542
+ "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet": [
1543
+ "xlsx"
1544
+ ],
1545
+ "application/vnd.openxmlformats-officedocument.spreadsheetml.sheet.main+xml": [],
1546
+ "application/vnd.openxmlformats-officedocument.spreadsheetml.sheetmetadata+xml": [],
1547
+ "application/vnd.openxmlformats-officedocument.spreadsheetml.styles+xml": [],
1548
+ "application/vnd.openxmlformats-officedocument.spreadsheetml.table+xml": [],
1549
+ "application/vnd.openxmlformats-officedocument.spreadsheetml.tablesinglecells+xml": [],
1550
+ "application/vnd.openxmlformats-officedocument.spreadsheetml.template": [
1551
+ "xltx"
1552
+ ],
1553
+ "application/vnd.openxmlformats-officedocument.spreadsheetml.template.main+xml": [],
1554
+ "application/vnd.openxmlformats-officedocument.spreadsheetml.usernames+xml": [],
1555
+ "application/vnd.openxmlformats-officedocument.spreadsheetml.volatiledependencies+xml": [],
1556
+ "application/vnd.openxmlformats-officedocument.spreadsheetml.worksheet+xml": [],
1557
+ "application/vnd.openxmlformats-officedocument.theme+xml": [],
1558
+ "application/vnd.openxmlformats-officedocument.themeoverride+xml": [],
1559
+ "application/vnd.openxmlformats-officedocument.vmldrawing": [],
1560
+ "application/vnd.openxmlformats-officedocument.wordprocessingml.comments+xml": [],
1561
+ "application/vnd.openxmlformats-officedocument.wordprocessingml.document": [
1562
+ "docx"
1563
+ ],
1564
+ "application/vnd.openxmlformats-officedocument.wordprocessingml.document.glossary+xml": [],
1565
+ "application/vnd.openxmlformats-officedocument.wordprocessingml.document.main+xml": [],
1566
+ "application/vnd.openxmlformats-officedocument.wordprocessingml.endnotes+xml": [],
1567
+ "application/vnd.openxmlformats-officedocument.wordprocessingml.fonttable+xml": [],
1568
+ "application/vnd.openxmlformats-officedocument.wordprocessingml.footer+xml": [],
1569
+ "application/vnd.openxmlformats-officedocument.wordprocessingml.footnotes+xml": [],
1570
+ "application/vnd.openxmlformats-officedocument.wordprocessingml.numbering+xml": [],
1571
+ "application/vnd.openxmlformats-officedocument.wordprocessingml.settings+xml": [],
1572
+ "application/vnd.openxmlformats-officedocument.wordprocessingml.styles+xml": [],
1573
+ "application/vnd.openxmlformats-officedocument.wordprocessingml.template": [
1574
+ "dotx"
1575
+ ],
1576
+ "application/vnd.openxmlformats-officedocument.wordprocessingml.template.main+xml": [],
1577
+ "application/vnd.openxmlformats-officedocument.wordprocessingml.websettings+xml": [],
1578
+ "application/vnd.openxmlformats-package.core-properties+xml": [],
1579
+ "application/vnd.openxmlformats-package.digital-signature-xmlsignature+xml": [],
1580
+ "application/vnd.openxmlformats-package.relationships+xml": [],
1581
+ "application/vnd.quobject-quoxdocument": [],
1582
+ "application/vnd.osa.netdeploy": [],
1583
+ "application/vnd.osgeo.mapguide.package": [
1584
+ "mgp"
1585
+ ],
1586
+ "application/vnd.osgi.bundle": [],
1587
+ "application/vnd.osgi.dp": [
1588
+ "dp"
1589
+ ],
1590
+ "application/vnd.osgi.subsystem": [
1591
+ "esa"
1592
+ ],
1593
+ "application/vnd.otps.ct-kip+xml": [],
1594
+ "application/vnd.palm": [
1595
+ "pdb",
1596
+ "pqa",
1597
+ "oprc"
1598
+ ],
1599
+ "application/vnd.paos.xml": [],
1600
+ "application/vnd.pawaafile": [
1601
+ "paw"
1602
+ ],
1603
+ "application/vnd.pg.format": [
1604
+ "str"
1605
+ ],
1606
+ "application/vnd.pg.osasli": [
1607
+ "ei6"
1608
+ ],
1609
+ "application/vnd.piaccess.application-licence": [],
1610
+ "application/vnd.picsel": [
1611
+ "efif"
1612
+ ],
1613
+ "application/vnd.pmi.widget": [
1614
+ "wg"
1615
+ ],
1616
+ "application/vnd.poc.group-advertisement+xml": [],
1617
+ "application/vnd.pocketlearn": [
1618
+ "plf"
1619
+ ],
1620
+ "application/vnd.powerbuilder6": [
1621
+ "pbd"
1622
+ ],
1623
+ "application/vnd.powerbuilder6-s": [],
1624
+ "application/vnd.powerbuilder7": [],
1625
+ "application/vnd.powerbuilder7-s": [],
1626
+ "application/vnd.powerbuilder75": [],
1627
+ "application/vnd.powerbuilder75-s": [],
1628
+ "application/vnd.preminet": [],
1629
+ "application/vnd.previewsystems.box": [
1630
+ "box"
1631
+ ],
1632
+ "application/vnd.proteus.magazine": [
1633
+ "mgz"
1634
+ ],
1635
+ "application/vnd.publishare-delta-tree": [
1636
+ "qps"
1637
+ ],
1638
+ "application/vnd.pvi.ptid1": [
1639
+ "ptid"
1640
+ ],
1641
+ "application/vnd.pwg-multiplexed": [],
1642
+ "application/vnd.pwg-xhtml-print+xml": [],
1643
+ "application/vnd.qualcomm.brew-app-res": [],
1644
+ "application/vnd.quark.quarkxpress": [
1645
+ "qxd",
1646
+ "qxt",
1647
+ "qwd",
1648
+ "qwt",
1649
+ "qxl",
1650
+ "qxb"
1651
+ ],
1652
+ "application/vnd.radisys.moml+xml": [],
1653
+ "application/vnd.radisys.msml+xml": [],
1654
+ "application/vnd.radisys.msml-audit+xml": [],
1655
+ "application/vnd.radisys.msml-audit-conf+xml": [],
1656
+ "application/vnd.radisys.msml-audit-conn+xml": [],
1657
+ "application/vnd.radisys.msml-audit-dialog+xml": [],
1658
+ "application/vnd.radisys.msml-audit-stream+xml": [],
1659
+ "application/vnd.radisys.msml-conf+xml": [],
1660
+ "application/vnd.radisys.msml-dialog+xml": [],
1661
+ "application/vnd.radisys.msml-dialog-base+xml": [],
1662
+ "application/vnd.radisys.msml-dialog-fax-detect+xml": [],
1663
+ "application/vnd.radisys.msml-dialog-fax-sendrecv+xml": [],
1664
+ "application/vnd.radisys.msml-dialog-group+xml": [],
1665
+ "application/vnd.radisys.msml-dialog-speech+xml": [],
1666
+ "application/vnd.radisys.msml-dialog-transform+xml": [],
1667
+ "application/vnd.rainstor.data": [],
1668
+ "application/vnd.rapid": [],
1669
+ "application/vnd.realvnc.bed": [
1670
+ "bed"
1671
+ ],
1672
+ "application/vnd.recordare.musicxml": [
1673
+ "mxl"
1674
+ ],
1675
+ "application/vnd.recordare.musicxml+xml": [
1676
+ "musicxml"
1677
+ ],
1678
+ "application/vnd.renlearn.rlprint": [],
1679
+ "application/vnd.rig.cryptonote": [
1680
+ "cryptonote"
1681
+ ],
1682
+ "application/vnd.rim.cod": [
1683
+ "cod"
1684
+ ],
1685
+ "application/vnd.rn-realmedia": [
1686
+ "rm"
1687
+ ],
1688
+ "application/vnd.rn-realmedia-vbr": [
1689
+ "rmvb"
1690
+ ],
1691
+ "application/vnd.route66.link66+xml": [
1692
+ "link66"
1693
+ ],
1694
+ "application/vnd.rs-274x": [],
1695
+ "application/vnd.ruckus.download": [],
1696
+ "application/vnd.s3sms": [],
1697
+ "application/vnd.sailingtracker.track": [
1698
+ "st"
1699
+ ],
1700
+ "application/vnd.sbm.cid": [],
1701
+ "application/vnd.sbm.mid2": [],
1702
+ "application/vnd.scribus": [],
1703
+ "application/vnd.sealed.3df": [],
1704
+ "application/vnd.sealed.csf": [],
1705
+ "application/vnd.sealed.doc": [],
1706
+ "application/vnd.sealed.eml": [],
1707
+ "application/vnd.sealed.mht": [],
1708
+ "application/vnd.sealed.net": [],
1709
+ "application/vnd.sealed.ppt": [],
1710
+ "application/vnd.sealed.tiff": [],
1711
+ "application/vnd.sealed.xls": [],
1712
+ "application/vnd.sealedmedia.softseal.html": [],
1713
+ "application/vnd.sealedmedia.softseal.pdf": [],
1714
+ "application/vnd.seemail": [
1715
+ "see"
1716
+ ],
1717
+ "application/vnd.sema": [
1718
+ "sema"
1719
+ ],
1720
+ "application/vnd.semd": [
1721
+ "semd"
1722
+ ],
1723
+ "application/vnd.semf": [
1724
+ "semf"
1725
+ ],
1726
+ "application/vnd.shana.informed.formdata": [
1727
+ "ifm"
1728
+ ],
1729
+ "application/vnd.shana.informed.formtemplate": [
1730
+ "itp"
1731
+ ],
1732
+ "application/vnd.shana.informed.interchange": [
1733
+ "iif"
1734
+ ],
1735
+ "application/vnd.shana.informed.package": [
1736
+ "ipk"
1737
+ ],
1738
+ "application/vnd.simtech-mindmapper": [
1739
+ "twd",
1740
+ "twds"
1741
+ ],
1742
+ "application/vnd.smaf": [
1743
+ "mmf"
1744
+ ],
1745
+ "application/vnd.smart.notebook": [],
1746
+ "application/vnd.smart.teacher": [
1747
+ "teacher"
1748
+ ],
1749
+ "application/vnd.software602.filler.form+xml": [],
1750
+ "application/vnd.software602.filler.form-xml-zip": [],
1751
+ "application/vnd.solent.sdkm+xml": [
1752
+ "sdkm",
1753
+ "sdkd"
1754
+ ],
1755
+ "application/vnd.spotfire.dxp": [
1756
+ "dxp"
1757
+ ],
1758
+ "application/vnd.spotfire.sfs": [
1759
+ "sfs"
1760
+ ],
1761
+ "application/vnd.sss-cod": [],
1762
+ "application/vnd.sss-dtf": [],
1763
+ "application/vnd.sss-ntf": [],
1764
+ "application/vnd.stardivision.calc": [
1765
+ "sdc"
1766
+ ],
1767
+ "application/vnd.stardivision.draw": [
1768
+ "sda"
1769
+ ],
1770
+ "application/vnd.stardivision.impress": [
1771
+ "sdd"
1772
+ ],
1773
+ "application/vnd.stardivision.math": [
1774
+ "smf"
1775
+ ],
1776
+ "application/vnd.stardivision.writer": [
1777
+ "sdw",
1778
+ "vor"
1779
+ ],
1780
+ "application/vnd.stardivision.writer-global": [
1781
+ "sgl"
1782
+ ],
1783
+ "application/vnd.stepmania.package": [
1784
+ "smzip"
1785
+ ],
1786
+ "application/vnd.stepmania.stepchart": [
1787
+ "sm"
1788
+ ],
1789
+ "application/vnd.street-stream": [],
1790
+ "application/vnd.sun.xml.calc": [
1791
+ "sxc"
1792
+ ],
1793
+ "application/vnd.sun.xml.calc.template": [
1794
+ "stc"
1795
+ ],
1796
+ "application/vnd.sun.xml.draw": [
1797
+ "sxd"
1798
+ ],
1799
+ "application/vnd.sun.xml.draw.template": [
1800
+ "std"
1801
+ ],
1802
+ "application/vnd.sun.xml.impress": [
1803
+ "sxi"
1804
+ ],
1805
+ "application/vnd.sun.xml.impress.template": [
1806
+ "sti"
1807
+ ],
1808
+ "application/vnd.sun.xml.math": [
1809
+ "sxm"
1810
+ ],
1811
+ "application/vnd.sun.xml.writer": [
1812
+ "sxw"
1813
+ ],
1814
+ "application/vnd.sun.xml.writer.global": [
1815
+ "sxg"
1816
+ ],
1817
+ "application/vnd.sun.xml.writer.template": [
1818
+ "stw"
1819
+ ],
1820
+ "application/vnd.sun.wadl+xml": [],
1821
+ "application/vnd.sus-calendar": [
1822
+ "sus",
1823
+ "susp"
1824
+ ],
1825
+ "application/vnd.svd": [
1826
+ "svd"
1827
+ ],
1828
+ "application/vnd.swiftview-ics": [],
1829
+ "application/vnd.symbian.install": [
1830
+ "sis",
1831
+ "sisx"
1832
+ ],
1833
+ "application/vnd.syncml+xml": [
1834
+ "xsm"
1835
+ ],
1836
+ "application/vnd.syncml.dm+wbxml": [
1837
+ "bdm"
1838
+ ],
1839
+ "application/vnd.syncml.dm+xml": [
1840
+ "xdm"
1841
+ ],
1842
+ "application/vnd.syncml.dm.notification": [],
1843
+ "application/vnd.syncml.ds.notification": [],
1844
+ "application/vnd.tao.intent-module-archive": [
1845
+ "tao"
1846
+ ],
1847
+ "application/vnd.tcpdump.pcap": [
1848
+ "pcap",
1849
+ "cap",
1850
+ "dmp"
1851
+ ],
1852
+ "application/vnd.tmobile-livetv": [
1853
+ "tmo"
1854
+ ],
1855
+ "application/vnd.trid.tpt": [
1856
+ "tpt"
1857
+ ],
1858
+ "application/vnd.triscape.mxs": [
1859
+ "mxs"
1860
+ ],
1861
+ "application/vnd.trueapp": [
1862
+ "tra"
1863
+ ],
1864
+ "application/vnd.truedoc": [],
1865
+ "application/vnd.ubisoft.webplayer": [],
1866
+ "application/vnd.ufdl": [
1867
+ "ufd",
1868
+ "ufdl"
1869
+ ],
1870
+ "application/vnd.uiq.theme": [
1871
+ "utz"
1872
+ ],
1873
+ "application/vnd.umajin": [
1874
+ "umj"
1875
+ ],
1876
+ "application/vnd.unity": [
1877
+ "unityweb"
1878
+ ],
1879
+ "application/vnd.uoml+xml": [
1880
+ "uoml"
1881
+ ],
1882
+ "application/vnd.uplanet.alert": [],
1883
+ "application/vnd.uplanet.alert-wbxml": [],
1884
+ "application/vnd.uplanet.bearer-choice": [],
1885
+ "application/vnd.uplanet.bearer-choice-wbxml": [],
1886
+ "application/vnd.uplanet.cacheop": [],
1887
+ "application/vnd.uplanet.cacheop-wbxml": [],
1888
+ "application/vnd.uplanet.channel": [],
1889
+ "application/vnd.uplanet.channel-wbxml": [],
1890
+ "application/vnd.uplanet.list": [],
1891
+ "application/vnd.uplanet.list-wbxml": [],
1892
+ "application/vnd.uplanet.listcmd": [],
1893
+ "application/vnd.uplanet.listcmd-wbxml": [],
1894
+ "application/vnd.uplanet.signal": [],
1895
+ "application/vnd.vcx": [
1896
+ "vcx"
1897
+ ],
1898
+ "application/vnd.vd-study": [],
1899
+ "application/vnd.vectorworks": [],
1900
+ "application/vnd.verimatrix.vcas": [],
1901
+ "application/vnd.vidsoft.vidconference": [],
1902
+ "application/vnd.visio": [
1903
+ "vsd",
1904
+ "vst",
1905
+ "vss",
1906
+ "vsw"
1907
+ ],
1908
+ "application/vnd.visionary": [
1909
+ "vis"
1910
+ ],
1911
+ "application/vnd.vividence.scriptfile": [],
1912
+ "application/vnd.vsf": [
1913
+ "vsf"
1914
+ ],
1915
+ "application/vnd.wap.sic": [],
1916
+ "application/vnd.wap.slc": [],
1917
+ "application/vnd.wap.wbxml": [
1918
+ "wbxml"
1919
+ ],
1920
+ "application/vnd.wap.wmlc": [
1921
+ "wmlc"
1922
+ ],
1923
+ "application/vnd.wap.wmlscriptc": [
1924
+ "wmlsc"
1925
+ ],
1926
+ "application/vnd.webturbo": [
1927
+ "wtb"
1928
+ ],
1929
+ "application/vnd.wfa.wsc": [],
1930
+ "application/vnd.wmc": [],
1931
+ "application/vnd.wmf.bootstrap": [],
1932
+ "application/vnd.wolfram.mathematica": [],
1933
+ "application/vnd.wolfram.mathematica.package": [],
1934
+ "application/vnd.wolfram.player": [
1935
+ "nbp"
1936
+ ],
1937
+ "application/vnd.wordperfect": [
1938
+ "wpd"
1939
+ ],
1940
+ "application/vnd.wqd": [
1941
+ "wqd"
1942
+ ],
1943
+ "application/vnd.wrq-hp3000-labelled": [],
1944
+ "application/vnd.wt.stf": [
1945
+ "stf"
1946
+ ],
1947
+ "application/vnd.wv.csp+wbxml": [],
1948
+ "application/vnd.wv.csp+xml": [],
1949
+ "application/vnd.wv.ssp+xml": [],
1950
+ "application/vnd.xara": [
1951
+ "xar"
1952
+ ],
1953
+ "application/vnd.xfdl": [
1954
+ "xfdl"
1955
+ ],
1956
+ "application/vnd.xfdl.webform": [],
1957
+ "application/vnd.xmi+xml": [],
1958
+ "application/vnd.xmpie.cpkg": [],
1959
+ "application/vnd.xmpie.dpkg": [],
1960
+ "application/vnd.xmpie.plan": [],
1961
+ "application/vnd.xmpie.ppkg": [],
1962
+ "application/vnd.xmpie.xlim": [],
1963
+ "application/vnd.yamaha.hv-dic": [
1964
+ "hvd"
1965
+ ],
1966
+ "application/vnd.yamaha.hv-script": [
1967
+ "hvs"
1968
+ ],
1969
+ "application/vnd.yamaha.hv-voice": [
1970
+ "hvp"
1971
+ ],
1972
+ "application/vnd.yamaha.openscoreformat": [
1973
+ "osf"
1974
+ ],
1975
+ "application/vnd.yamaha.openscoreformat.osfpvg+xml": [
1976
+ "osfpvg"
1977
+ ],
1978
+ "application/vnd.yamaha.remote-setup": [],
1979
+ "application/vnd.yamaha.smaf-audio": [
1980
+ "saf"
1981
+ ],
1982
+ "application/vnd.yamaha.smaf-phrase": [
1983
+ "spf"
1984
+ ],
1985
+ "application/vnd.yamaha.through-ngn": [],
1986
+ "application/vnd.yamaha.tunnel-udpencap": [],
1987
+ "application/vnd.yellowriver-custom-menu": [
1988
+ "cmp"
1989
+ ],
1990
+ "application/vnd.zul": [
1991
+ "zir",
1992
+ "zirz"
1993
+ ],
1994
+ "application/vnd.zzazz.deck+xml": [
1995
+ "zaz"
1996
+ ],
1997
+ "application/voicexml+xml": [
1998
+ "vxml"
1999
+ ],
2000
+ "application/vq-rtcpxr": [],
2001
+ "application/watcherinfo+xml": [],
2002
+ "application/whoispp-query": [],
2003
+ "application/whoispp-response": [],
2004
+ "application/widget": [
2005
+ "wgt"
2006
+ ],
2007
+ "application/winhlp": [
2008
+ "hlp"
2009
+ ],
2010
+ "application/wita": [],
2011
+ "application/wordperfect5.1": [],
2012
+ "application/wsdl+xml": [
2013
+ "wsdl"
2014
+ ],
2015
+ "application/wspolicy+xml": [
2016
+ "wspolicy"
2017
+ ],
2018
+ "application/x-7z-compressed": [
2019
+ "7z"
2020
+ ],
2021
+ "application/x-abiword": [
2022
+ "abw"
2023
+ ],
2024
+ "application/x-ace-compressed": [
2025
+ "ace"
2026
+ ],
2027
+ "application/x-amf": [],
2028
+ "application/x-apple-diskimage": [
2029
+ "dmg"
2030
+ ],
2031
+ "application/x-authorware-bin": [
2032
+ "aab",
2033
+ "x32",
2034
+ "u32",
2035
+ "vox"
2036
+ ],
2037
+ "application/x-authorware-map": [
2038
+ "aam"
2039
+ ],
2040
+ "application/x-authorware-seg": [
2041
+ "aas"
2042
+ ],
2043
+ "application/x-bcpio": [
2044
+ "bcpio"
2045
+ ],
2046
+ "application/x-bittorrent": [
2047
+ "torrent"
2048
+ ],
2049
+ "application/x-blorb": [
2050
+ "blb",
2051
+ "blorb"
2052
+ ],
2053
+ "application/x-bzip": [
2054
+ "bz"
2055
+ ],
2056
+ "application/x-bzip2": [
2057
+ "bz2",
2058
+ "boz"
2059
+ ],
2060
+ "application/x-cbr": [
2061
+ "cbr",
2062
+ "cba",
2063
+ "cbt",
2064
+ "cbz",
2065
+ "cb7"
2066
+ ],
2067
+ "application/x-cdlink": [
2068
+ "vcd"
2069
+ ],
2070
+ "application/x-cfs-compressed": [
2071
+ "cfs"
2072
+ ],
2073
+ "application/x-chat": [
2074
+ "chat"
2075
+ ],
2076
+ "application/x-chess-pgn": [
2077
+ "pgn"
2078
+ ],
2079
+ "application/x-conference": [
2080
+ "nsc"
2081
+ ],
2082
+ "application/x-compress": [],
2083
+ "application/x-cpio": [
2084
+ "cpio"
2085
+ ],
2086
+ "application/x-csh": [
2087
+ "csh"
2088
+ ],
2089
+ "application/x-debian-package": [
2090
+ "deb",
2091
+ "udeb"
2092
+ ],
2093
+ "application/x-dgc-compressed": [
2094
+ "dgc"
2095
+ ],
2096
+ "application/x-director": [
2097
+ "dir",
2098
+ "dcr",
2099
+ "dxr",
2100
+ "cst",
2101
+ "cct",
2102
+ "cxt",
2103
+ "w3d",
2104
+ "fgd",
2105
+ "swa"
2106
+ ],
2107
+ "application/x-doom": [
2108
+ "wad"
2109
+ ],
2110
+ "application/x-dtbncx+xml": [
2111
+ "ncx"
2112
+ ],
2113
+ "application/x-dtbook+xml": [
2114
+ "dtb"
2115
+ ],
2116
+ "application/x-dtbresource+xml": [
2117
+ "res"
2118
+ ],
2119
+ "application/x-dvi": [
2120
+ "dvi"
2121
+ ],
2122
+ "application/x-envoy": [
2123
+ "evy"
2124
+ ],
2125
+ "application/x-eva": [
2126
+ "eva"
2127
+ ],
2128
+ "application/x-font-bdf": [
2129
+ "bdf"
2130
+ ],
2131
+ "application/x-font-dos": [],
2132
+ "application/x-font-framemaker": [],
2133
+ "application/x-font-ghostscript": [
2134
+ "gsf"
2135
+ ],
2136
+ "application/x-font-libgrx": [],
2137
+ "application/x-font-linux-psf": [
2138
+ "psf"
2139
+ ],
2140
+ "application/x-font-otf": [
2141
+ "otf"
2142
+ ],
2143
+ "application/x-font-pcf": [
2144
+ "pcf"
2145
+ ],
2146
+ "application/x-font-snf": [
2147
+ "snf"
2148
+ ],
2149
+ "application/x-font-speedo": [],
2150
+ "application/x-font-sunos-news": [],
2151
+ "application/x-font-ttf": [
2152
+ "ttf",
2153
+ "ttc"
2154
+ ],
2155
+ "application/x-font-type1": [
2156
+ "pfa",
2157
+ "pfb",
2158
+ "pfm",
2159
+ "afm"
2160
+ ],
2161
+ "application/font-woff": [
2162
+ "woff"
2163
+ ],
2164
+ "application/x-font-vfont": [],
2165
+ "application/x-freearc": [
2166
+ "arc"
2167
+ ],
2168
+ "application/x-futuresplash": [
2169
+ "spl"
2170
+ ],
2171
+ "application/x-gca-compressed": [
2172
+ "gca"
2173
+ ],
2174
+ "application/x-glulx": [
2175
+ "ulx"
2176
+ ],
2177
+ "application/x-gnumeric": [
2178
+ "gnumeric"
2179
+ ],
2180
+ "application/x-gramps-xml": [
2181
+ "gramps"
2182
+ ],
2183
+ "application/x-gtar": [
2184
+ "gtar"
2185
+ ],
2186
+ "application/x-gzip": [],
2187
+ "application/x-hdf": [
2188
+ "hdf"
2189
+ ],
2190
+ "application/x-install-instructions": [
2191
+ "install"
2192
+ ],
2193
+ "application/x-iso9660-image": [
2194
+ "iso"
2195
+ ],
2196
+ "application/x-java-jnlp-file": [
2197
+ "jnlp"
2198
+ ],
2199
+ "application/x-latex": [
2200
+ "latex"
2201
+ ],
2202
+ "application/x-lzh-compressed": [
2203
+ "lzh",
2204
+ "lha"
2205
+ ],
2206
+ "application/x-mie": [
2207
+ "mie"
2208
+ ],
2209
+ "application/x-mobipocket-ebook": [
2210
+ "prc",
2211
+ "mobi"
2212
+ ],
2213
+ "application/x-ms-application": [
2214
+ "application"
2215
+ ],
2216
+ "application/x-ms-shortcut": [
2217
+ "lnk"
2218
+ ],
2219
+ "application/x-ms-wmd": [
2220
+ "wmd"
2221
+ ],
2222
+ "application/x-ms-wmz": [
2223
+ "wmz"
2224
+ ],
2225
+ "application/x-ms-xbap": [
2226
+ "xbap"
2227
+ ],
2228
+ "application/x-msaccess": [
2229
+ "mdb"
2230
+ ],
2231
+ "application/x-msbinder": [
2232
+ "obd"
2233
+ ],
2234
+ "application/x-mscardfile": [
2235
+ "crd"
2236
+ ],
2237
+ "application/x-msclip": [
2238
+ "clp"
2239
+ ],
2240
+ "application/x-msdownload": [
2241
+ "exe",
2242
+ "dll",
2243
+ "com",
2244
+ "bat",
2245
+ "msi"
2246
+ ],
2247
+ "application/x-msmediaview": [
2248
+ "mvb",
2249
+ "m13",
2250
+ "m14"
2251
+ ],
2252
+ "application/x-msmetafile": [
2253
+ "wmf",
2254
+ "wmz",
2255
+ "emf",
2256
+ "emz"
2257
+ ],
2258
+ "application/x-msmoney": [
2259
+ "mny"
2260
+ ],
2261
+ "application/x-mspublisher": [
2262
+ "pub"
2263
+ ],
2264
+ "application/x-msschedule": [
2265
+ "scd"
2266
+ ],
2267
+ "application/x-msterminal": [
2268
+ "trm"
2269
+ ],
2270
+ "application/x-mswrite": [
2271
+ "wri"
2272
+ ],
2273
+ "application/x-netcdf": [
2274
+ "nc",
2275
+ "cdf"
2276
+ ],
2277
+ "application/x-nzb": [
2278
+ "nzb"
2279
+ ],
2280
+ "application/x-pkcs12": [
2281
+ "p12",
2282
+ "pfx"
2283
+ ],
2284
+ "application/x-pkcs7-certificates": [
2285
+ "p7b",
2286
+ "spc"
2287
+ ],
2288
+ "application/x-pkcs7-certreqresp": [
2289
+ "p7r"
2290
+ ],
2291
+ "application/x-rar-compressed": [
2292
+ "rar"
2293
+ ],
2294
+ "application/x-research-info-systems": [
2295
+ "ris"
2296
+ ],
2297
+ "application/x-sh": [
2298
+ "sh"
2299
+ ],
2300
+ "application/x-shar": [
2301
+ "shar"
2302
+ ],
2303
+ "application/x-shockwave-flash": [
2304
+ "swf"
2305
+ ],
2306
+ "application/x-silverlight-app": [
2307
+ "xap"
2308
+ ],
2309
+ "application/x-sql": [
2310
+ "sql"
2311
+ ],
2312
+ "application/x-stuffit": [
2313
+ "sit"
2314
+ ],
2315
+ "application/x-stuffitx": [
2316
+ "sitx"
2317
+ ],
2318
+ "application/x-subrip": [
2319
+ "srt"
2320
+ ],
2321
+ "application/x-sv4cpio": [
2322
+ "sv4cpio"
2323
+ ],
2324
+ "application/x-sv4crc": [
2325
+ "sv4crc"
2326
+ ],
2327
+ "application/x-t3vm-image": [
2328
+ "t3"
2329
+ ],
2330
+ "application/x-tads": [
2331
+ "gam"
2332
+ ],
2333
+ "application/x-tar": [
2334
+ "tar"
2335
+ ],
2336
+ "application/x-tcl": [
2337
+ "tcl"
2338
+ ],
2339
+ "application/x-tex": [
2340
+ "tex"
2341
+ ],
2342
+ "application/x-tex-tfm": [
2343
+ "tfm"
2344
+ ],
2345
+ "application/x-texinfo": [
2346
+ "texinfo",
2347
+ "texi"
2348
+ ],
2349
+ "application/x-tgif": [
2350
+ "obj"
2351
+ ],
2352
+ "application/x-ustar": [
2353
+ "ustar"
2354
+ ],
2355
+ "application/x-wais-source": [
2356
+ "src"
2357
+ ],
2358
+ "application/x-x509-ca-cert": [
2359
+ "der",
2360
+ "crt"
2361
+ ],
2362
+ "application/x-xfig": [
2363
+ "fig"
2364
+ ],
2365
+ "application/x-xliff+xml": [
2366
+ "xlf"
2367
+ ],
2368
+ "application/x-xpinstall": [
2369
+ "xpi"
2370
+ ],
2371
+ "application/x-xz": [
2372
+ "xz"
2373
+ ],
2374
+ "application/x-zmachine": [
2375
+ "z1",
2376
+ "z2",
2377
+ "z3",
2378
+ "z4",
2379
+ "z5",
2380
+ "z6",
2381
+ "z7",
2382
+ "z8"
2383
+ ],
2384
+ "application/x400-bp": [],
2385
+ "application/xaml+xml": [
2386
+ "xaml"
2387
+ ],
2388
+ "application/xcap-att+xml": [],
2389
+ "application/xcap-caps+xml": [],
2390
+ "application/xcap-diff+xml": [
2391
+ "xdf"
2392
+ ],
2393
+ "application/xcap-el+xml": [],
2394
+ "application/xcap-error+xml": [],
2395
+ "application/xcap-ns+xml": [],
2396
+ "application/xcon-conference-info-diff+xml": [],
2397
+ "application/xcon-conference-info+xml": [],
2398
+ "application/xenc+xml": [
2399
+ "xenc"
2400
+ ],
2401
+ "application/xhtml+xml": [
2402
+ "xhtml",
2403
+ "xht"
2404
+ ],
2405
+ "application/xhtml-voice+xml": [],
2406
+ "application/xml": [
2407
+ "xml",
2408
+ "xsl"
2409
+ ],
2410
+ "application/xml-dtd": [
2411
+ "dtd"
2412
+ ],
2413
+ "application/xml-external-parsed-entity": [],
2414
+ "application/xmpp+xml": [],
2415
+ "application/xop+xml": [
2416
+ "xop"
2417
+ ],
2418
+ "application/xproc+xml": [
2419
+ "xpl"
2420
+ ],
2421
+ "application/xslt+xml": [
2422
+ "xslt"
2423
+ ],
2424
+ "application/xspf+xml": [
2425
+ "xspf"
2426
+ ],
2427
+ "application/xv+xml": [
2428
+ "mxml",
2429
+ "xhvml",
2430
+ "xvml",
2431
+ "xvm"
2432
+ ],
2433
+ "application/yang": [
2434
+ "yang"
2435
+ ],
2436
+ "application/yin+xml": [
2437
+ "yin"
2438
+ ],
2439
+ "application/zip": [
2440
+ "zip"
2441
+ ],
2442
+ "audio/1d-interleaved-parityfec": [],
2443
+ "audio/32kadpcm": [],
2444
+ "audio/3gpp": [],
2445
+ "audio/3gpp2": [],
2446
+ "audio/ac3": [],
2447
+ "audio/adpcm": [
2448
+ "adp"
2449
+ ],
2450
+ "audio/amr": [],
2451
+ "audio/amr-wb": [],
2452
+ "audio/amr-wb+": [],
2453
+ "audio/asc": [],
2454
+ "audio/atrac-advanced-lossless": [],
2455
+ "audio/atrac-x": [],
2456
+ "audio/atrac3": [],
2457
+ "audio/basic": [
2458
+ "au",
2459
+ "snd"
2460
+ ],
2461
+ "audio/bv16": [],
2462
+ "audio/bv32": [],
2463
+ "audio/clearmode": [],
2464
+ "audio/cn": [],
2465
+ "audio/dat12": [],
2466
+ "audio/dls": [],
2467
+ "audio/dsr-es201108": [],
2468
+ "audio/dsr-es202050": [],
2469
+ "audio/dsr-es202211": [],
2470
+ "audio/dsr-es202212": [],
2471
+ "audio/dv": [],
2472
+ "audio/dvi4": [],
2473
+ "audio/eac3": [],
2474
+ "audio/evrc": [],
2475
+ "audio/evrc-qcp": [],
2476
+ "audio/evrc0": [],
2477
+ "audio/evrc1": [],
2478
+ "audio/evrcb": [],
2479
+ "audio/evrcb0": [],
2480
+ "audio/evrcb1": [],
2481
+ "audio/evrcwb": [],
2482
+ "audio/evrcwb0": [],
2483
+ "audio/evrcwb1": [],
2484
+ "audio/example": [],
2485
+ "audio/fwdred": [],
2486
+ "audio/g719": [],
2487
+ "audio/g722": [],
2488
+ "audio/g7221": [],
2489
+ "audio/g723": [],
2490
+ "audio/g726-16": [],
2491
+ "audio/g726-24": [],
2492
+ "audio/g726-32": [],
2493
+ "audio/g726-40": [],
2494
+ "audio/g728": [],
2495
+ "audio/g729": [],
2496
+ "audio/g7291": [],
2497
+ "audio/g729d": [],
2498
+ "audio/g729e": [],
2499
+ "audio/gsm": [],
2500
+ "audio/gsm-efr": [],
2501
+ "audio/gsm-hr-08": [],
2502
+ "audio/ilbc": [],
2503
+ "audio/ip-mr_v2.5": [],
2504
+ "audio/isac": [],
2505
+ "audio/l16": [],
2506
+ "audio/l20": [],
2507
+ "audio/l24": [],
2508
+ "audio/l8": [],
2509
+ "audio/lpc": [],
2510
+ "audio/midi": [
2511
+ "mid",
2512
+ "midi",
2513
+ "kar",
2514
+ "rmi"
2515
+ ],
2516
+ "audio/mobile-xmf": [],
2517
+ "audio/mp4": [
2518
+ "mp4a"
2519
+ ],
2520
+ "audio/mp4a-latm": [],
2521
+ "audio/mpa": [],
2522
+ "audio/mpa-robust": [],
2523
+ "audio/mpeg": [
2524
+ "mpga",
2525
+ "mp2",
2526
+ "mp2a",
2527
+ "mp3",
2528
+ "m2a",
2529
+ "m3a"
2530
+ ],
2531
+ "audio/mpeg4-generic": [],
2532
+ "audio/musepack": [],
2533
+ "audio/ogg": [
2534
+ "oga",
2535
+ "ogg",
2536
+ "spx"
2537
+ ],
2538
+ "audio/opus": [],
2539
+ "audio/parityfec": [],
2540
+ "audio/pcma": [],
2541
+ "audio/pcma-wb": [],
2542
+ "audio/pcmu-wb": [],
2543
+ "audio/pcmu": [],
2544
+ "audio/prs.sid": [],
2545
+ "audio/qcelp": [],
2546
+ "audio/red": [],
2547
+ "audio/rtp-enc-aescm128": [],
2548
+ "audio/rtp-midi": [],
2549
+ "audio/rtx": [],
2550
+ "audio/s3m": [
2551
+ "s3m"
2552
+ ],
2553
+ "audio/silk": [
2554
+ "sil"
2555
+ ],
2556
+ "audio/smv": [],
2557
+ "audio/smv0": [],
2558
+ "audio/smv-qcp": [],
2559
+ "audio/sp-midi": [],
2560
+ "audio/speex": [],
2561
+ "audio/t140c": [],
2562
+ "audio/t38": [],
2563
+ "audio/telephone-event": [],
2564
+ "audio/tone": [],
2565
+ "audio/uemclip": [],
2566
+ "audio/ulpfec": [],
2567
+ "audio/vdvi": [],
2568
+ "audio/vmr-wb": [],
2569
+ "audio/vnd.3gpp.iufp": [],
2570
+ "audio/vnd.4sb": [],
2571
+ "audio/vnd.audiokoz": [],
2572
+ "audio/vnd.celp": [],
2573
+ "audio/vnd.cisco.nse": [],
2574
+ "audio/vnd.cmles.radio-events": [],
2575
+ "audio/vnd.cns.anp1": [],
2576
+ "audio/vnd.cns.inf1": [],
2577
+ "audio/vnd.dece.audio": [
2578
+ "uva",
2579
+ "uvva"
2580
+ ],
2581
+ "audio/vnd.digital-winds": [
2582
+ "eol"
2583
+ ],
2584
+ "audio/vnd.dlna.adts": [],
2585
+ "audio/vnd.dolby.heaac.1": [],
2586
+ "audio/vnd.dolby.heaac.2": [],
2587
+ "audio/vnd.dolby.mlp": [],
2588
+ "audio/vnd.dolby.mps": [],
2589
+ "audio/vnd.dolby.pl2": [],
2590
+ "audio/vnd.dolby.pl2x": [],
2591
+ "audio/vnd.dolby.pl2z": [],
2592
+ "audio/vnd.dolby.pulse.1": [],
2593
+ "audio/vnd.dra": [
2594
+ "dra"
2595
+ ],
2596
+ "audio/vnd.dts": [
2597
+ "dts"
2598
+ ],
2599
+ "audio/vnd.dts.hd": [
2600
+ "dtshd"
2601
+ ],
2602
+ "audio/vnd.dvb.file": [],
2603
+ "audio/vnd.everad.plj": [],
2604
+ "audio/vnd.hns.audio": [],
2605
+ "audio/vnd.lucent.voice": [
2606
+ "lvp"
2607
+ ],
2608
+ "audio/vnd.ms-playready.media.pya": [
2609
+ "pya"
2610
+ ],
2611
+ "audio/vnd.nokia.mobile-xmf": [],
2612
+ "audio/vnd.nortel.vbk": [],
2613
+ "audio/vnd.nuera.ecelp4800": [
2614
+ "ecelp4800"
2615
+ ],
2616
+ "audio/vnd.nuera.ecelp7470": [
2617
+ "ecelp7470"
2618
+ ],
2619
+ "audio/vnd.nuera.ecelp9600": [
2620
+ "ecelp9600"
2621
+ ],
2622
+ "audio/vnd.octel.sbc": [],
2623
+ "audio/vnd.qcelp": [],
2624
+ "audio/vnd.rhetorex.32kadpcm": [],
2625
+ "audio/vnd.rip": [
2626
+ "rip"
2627
+ ],
2628
+ "audio/vnd.sealedmedia.softseal.mpeg": [],
2629
+ "audio/vnd.vmx.cvsd": [],
2630
+ "audio/vorbis": [],
2631
+ "audio/vorbis-config": [],
2632
+ "audio/webm": [
2633
+ "weba"
2634
+ ],
2635
+ "audio/x-aac": [
2636
+ "aac"
2637
+ ],
2638
+ "audio/x-aiff": [
2639
+ "aif",
2640
+ "aiff",
2641
+ "aifc"
2642
+ ],
2643
+ "audio/x-caf": [
2644
+ "caf"
2645
+ ],
2646
+ "audio/x-flac": [
2647
+ "flac"
2648
+ ],
2649
+ "audio/x-matroska": [
2650
+ "mka"
2651
+ ],
2652
+ "audio/x-mpegurl": [
2653
+ "m3u"
2654
+ ],
2655
+ "audio/x-ms-wax": [
2656
+ "wax"
2657
+ ],
2658
+ "audio/x-ms-wma": [
2659
+ "wma"
2660
+ ],
2661
+ "audio/x-pn-realaudio": [
2662
+ "ram",
2663
+ "ra"
2664
+ ],
2665
+ "audio/x-pn-realaudio-plugin": [
2666
+ "rmp"
2667
+ ],
2668
+ "audio/x-tta": [],
2669
+ "audio/x-wav": [
2670
+ "wav"
2671
+ ],
2672
+ "audio/xm": [
2673
+ "xm"
2674
+ ],
2675
+ "chemical/x-cdx": [
2676
+ "cdx"
2677
+ ],
2678
+ "chemical/x-cif": [
2679
+ "cif"
2680
+ ],
2681
+ "chemical/x-cmdf": [
2682
+ "cmdf"
2683
+ ],
2684
+ "chemical/x-cml": [
2685
+ "cml"
2686
+ ],
2687
+ "chemical/x-csml": [
2688
+ "csml"
2689
+ ],
2690
+ "chemical/x-pdb": [],
2691
+ "chemical/x-xyz": [
2692
+ "xyz"
2693
+ ],
2694
+ "image/bmp": [
2695
+ "bmp"
2696
+ ],
2697
+ "image/cgm": [
2698
+ "cgm"
2699
+ ],
2700
+ "image/example": [],
2701
+ "image/fits": [],
2702
+ "image/g3fax": [
2703
+ "g3"
2704
+ ],
2705
+ "image/gif": [
2706
+ "gif"
2707
+ ],
2708
+ "image/ief": [
2709
+ "ief"
2710
+ ],
2711
+ "image/jp2": [],
2712
+ "image/jpeg": [
2713
+ "jpeg",
2714
+ "jpg",
2715
+ "jpe"
2716
+ ],
2717
+ "image/jpm": [],
2718
+ "image/jpx": [],
2719
+ "image/ktx": [
2720
+ "ktx"
2721
+ ],
2722
+ "image/naplps": [],
2723
+ "image/png": [
2724
+ "png"
2725
+ ],
2726
+ "image/prs.btif": [
2727
+ "btif"
2728
+ ],
2729
+ "image/prs.pti": [],
2730
+ "image/sgi": [
2731
+ "sgi"
2732
+ ],
2733
+ "image/svg+xml": [
2734
+ "svg",
2735
+ "svgz"
2736
+ ],
2737
+ "image/t38": [],
2738
+ "image/tiff": [
2739
+ "tiff",
2740
+ "tif"
2741
+ ],
2742
+ "image/tiff-fx": [],
2743
+ "image/vnd.adobe.photoshop": [
2744
+ "psd"
2745
+ ],
2746
+ "image/vnd.cns.inf2": [],
2747
+ "image/vnd.dece.graphic": [
2748
+ "uvi",
2749
+ "uvvi",
2750
+ "uvg",
2751
+ "uvvg"
2752
+ ],
2753
+ "image/vnd.dvb.subtitle": [
2754
+ "sub"
2755
+ ],
2756
+ "image/vnd.djvu": [
2757
+ "djvu",
2758
+ "djv"
2759
+ ],
2760
+ "image/vnd.dwg": [
2761
+ "dwg"
2762
+ ],
2763
+ "image/vnd.dxf": [
2764
+ "dxf"
2765
+ ],
2766
+ "image/vnd.fastbidsheet": [
2767
+ "fbs"
2768
+ ],
2769
+ "image/vnd.fpx": [
2770
+ "fpx"
2771
+ ],
2772
+ "image/vnd.fst": [
2773
+ "fst"
2774
+ ],
2775
+ "image/vnd.fujixerox.edmics-mmr": [
2776
+ "mmr"
2777
+ ],
2778
+ "image/vnd.fujixerox.edmics-rlc": [
2779
+ "rlc"
2780
+ ],
2781
+ "image/vnd.globalgraphics.pgb": [],
2782
+ "image/vnd.microsoft.icon": [],
2783
+ "image/vnd.mix": [],
2784
+ "image/vnd.ms-modi": [
2785
+ "mdi"
2786
+ ],
2787
+ "image/vnd.ms-photo": [
2788
+ "wdp"
2789
+ ],
2790
+ "image/vnd.net-fpx": [
2791
+ "npx"
2792
+ ],
2793
+ "image/vnd.radiance": [],
2794
+ "image/vnd.sealed.png": [],
2795
+ "image/vnd.sealedmedia.softseal.gif": [],
2796
+ "image/vnd.sealedmedia.softseal.jpg": [],
2797
+ "image/vnd.svf": [],
2798
+ "image/vnd.wap.wbmp": [
2799
+ "wbmp"
2800
+ ],
2801
+ "image/vnd.xiff": [
2802
+ "xif"
2803
+ ],
2804
+ "image/webp": [
2805
+ "webp"
2806
+ ],
2807
+ "image/x-3ds": [
2808
+ "3ds"
2809
+ ],
2810
+ "image/x-cmu-raster": [
2811
+ "ras"
2812
+ ],
2813
+ "image/x-cmx": [
2814
+ "cmx"
2815
+ ],
2816
+ "image/x-freehand": [
2817
+ "fh",
2818
+ "fhc",
2819
+ "fh4",
2820
+ "fh5",
2821
+ "fh7"
2822
+ ],
2823
+ "image/x-icon": [
2824
+ "ico"
2825
+ ],
2826
+ "image/x-mrsid-image": [
2827
+ "sid"
2828
+ ],
2829
+ "image/x-pcx": [
2830
+ "pcx"
2831
+ ],
2832
+ "image/x-pict": [
2833
+ "pic",
2834
+ "pct"
2835
+ ],
2836
+ "image/x-portable-anymap": [
2837
+ "pnm"
2838
+ ],
2839
+ "image/x-portable-bitmap": [
2840
+ "pbm"
2841
+ ],
2842
+ "image/x-portable-graymap": [
2843
+ "pgm"
2844
+ ],
2845
+ "image/x-portable-pixmap": [
2846
+ "ppm"
2847
+ ],
2848
+ "image/x-rgb": [
2849
+ "rgb"
2850
+ ],
2851
+ "image/x-tga": [
2852
+ "tga"
2853
+ ],
2854
+ "image/x-xbitmap": [
2855
+ "xbm"
2856
+ ],
2857
+ "image/x-xpixmap": [
2858
+ "xpm"
2859
+ ],
2860
+ "image/x-xwindowdump": [
2861
+ "xwd"
2862
+ ],
2863
+ "message/cpim": [],
2864
+ "message/delivery-status": [],
2865
+ "message/disposition-notification": [],
2866
+ "message/example": [],
2867
+ "message/external-body": [],
2868
+ "message/feedback-report": [],
2869
+ "message/global": [],
2870
+ "message/global-delivery-status": [],
2871
+ "message/global-disposition-notification": [],
2872
+ "message/global-headers": [],
2873
+ "message/http": [],
2874
+ "message/imdn+xml": [],
2875
+ "message/news": [],
2876
+ "message/partial": [],
2877
+ "message/rfc822": [
2878
+ "eml",
2879
+ "mime"
2880
+ ],
2881
+ "message/s-http": [],
2882
+ "message/sip": [],
2883
+ "message/sipfrag": [],
2884
+ "message/tracking-status": [],
2885
+ "message/vnd.si.simp": [],
2886
+ "model/example": [],
2887
+ "model/iges": [
2888
+ "igs",
2889
+ "iges"
2890
+ ],
2891
+ "model/mesh": [
2892
+ "msh",
2893
+ "mesh",
2894
+ "silo"
2895
+ ],
2896
+ "model/vnd.collada+xml": [
2897
+ "dae"
2898
+ ],
2899
+ "model/vnd.dwf": [
2900
+ "dwf"
2901
+ ],
2902
+ "model/vnd.flatland.3dml": [],
2903
+ "model/vnd.gdl": [
2904
+ "gdl"
2905
+ ],
2906
+ "model/vnd.gs-gdl": [],
2907
+ "model/vnd.gs.gdl": [],
2908
+ "model/vnd.gtw": [
2909
+ "gtw"
2910
+ ],
2911
+ "model/vnd.moml+xml": [],
2912
+ "model/vnd.mts": [
2913
+ "mts"
2914
+ ],
2915
+ "model/vnd.parasolid.transmit.binary": [],
2916
+ "model/vnd.parasolid.transmit.text": [],
2917
+ "model/vnd.vtu": [
2918
+ "vtu"
2919
+ ],
2920
+ "model/vrml": [
2921
+ "wrl",
2922
+ "vrml"
2923
+ ],
2924
+ "model/x3d+binary": [
2925
+ "x3db",
2926
+ "x3dbz"
2927
+ ],
2928
+ "model/x3d+vrml": [
2929
+ "x3dv",
2930
+ "x3dvz"
2931
+ ],
2932
+ "model/x3d+xml": [
2933
+ "x3d",
2934
+ "x3dz"
2935
+ ],
2936
+ "multipart/alternative": [],
2937
+ "multipart/appledouble": [],
2938
+ "multipart/byteranges": [],
2939
+ "multipart/digest": [],
2940
+ "multipart/encrypted": [],
2941
+ "multipart/example": [],
2942
+ "multipart/form-data": [],
2943
+ "multipart/header-set": [],
2944
+ "multipart/mixed": [],
2945
+ "multipart/parallel": [],
2946
+ "multipart/related": [],
2947
+ "multipart/report": [],
2948
+ "multipart/signed": [],
2949
+ "multipart/voice-message": [],
2950
+ "text/1d-interleaved-parityfec": [],
2951
+ "text/cache-manifest": [
2952
+ "appcache"
2953
+ ],
2954
+ "text/calendar": [
2955
+ "ics",
2956
+ "ifb"
2957
+ ],
2958
+ "text/css": [
2959
+ "css"
2960
+ ],
2961
+ "text/csv": [
2962
+ "csv"
2963
+ ],
2964
+ "text/directory": [],
2965
+ "text/dns": [],
2966
+ "text/ecmascript": [],
2967
+ "text/enriched": [],
2968
+ "text/example": [],
2969
+ "text/fwdred": [],
2970
+ "text/html": [
2971
+ "html",
2972
+ "htm"
2973
+ ],
2974
+ "text/javascript": [],
2975
+ "text/n3": [
2976
+ "n3"
2977
+ ],
2978
+ "text/parityfec": [],
2979
+ "text/plain": [
2980
+ "txt",
2981
+ "text",
2982
+ "conf",
2983
+ "def",
2984
+ "list",
2985
+ "log",
2986
+ "in"
2987
+ ],
2988
+ "text/prs.fallenstein.rst": [],
2989
+ "text/prs.lines.tag": [
2990
+ "dsc"
2991
+ ],
2992
+ "text/vnd.radisys.msml-basic-layout": [],
2993
+ "text/red": [],
2994
+ "text/rfc822-headers": [],
2995
+ "text/richtext": [
2996
+ "rtx"
2997
+ ],
2998
+ "text/rtf": [],
2999
+ "text/rtp-enc-aescm128": [],
3000
+ "text/rtx": [],
3001
+ "text/sgml": [
3002
+ "sgml",
3003
+ "sgm"
3004
+ ],
3005
+ "text/t140": [],
3006
+ "text/tab-separated-values": [
3007
+ "tsv"
3008
+ ],
3009
+ "text/troff": [
3010
+ "t",
3011
+ "tr",
3012
+ "roff",
3013
+ "man",
3014
+ "me",
3015
+ "ms"
3016
+ ],
3017
+ "text/turtle": [
3018
+ "ttl"
3019
+ ],
3020
+ "text/ulpfec": [],
3021
+ "text/uri-list": [
3022
+ "uri",
3023
+ "uris",
3024
+ "urls"
3025
+ ],
3026
+ "text/vcard": [
3027
+ "vcard"
3028
+ ],
3029
+ "text/vnd.abc": [],
3030
+ "text/vnd.curl": [
3031
+ "curl"
3032
+ ],
3033
+ "text/vnd.curl.dcurl": [
3034
+ "dcurl"
3035
+ ],
3036
+ "text/vnd.curl.scurl": [
3037
+ "scurl"
3038
+ ],
3039
+ "text/vnd.curl.mcurl": [
3040
+ "mcurl"
3041
+ ],
3042
+ "text/vnd.dmclientscript": [],
3043
+ "text/vnd.dvb.subtitle": [
3044
+ "sub"
3045
+ ],
3046
+ "text/vnd.esmertec.theme-descriptor": [],
3047
+ "text/vnd.fly": [
3048
+ "fly"
3049
+ ],
3050
+ "text/vnd.fmi.flexstor": [
3051
+ "flx"
3052
+ ],
3053
+ "text/vnd.graphviz": [
3054
+ "gv"
3055
+ ],
3056
+ "text/vnd.in3d.3dml": [
3057
+ "3dml"
3058
+ ],
3059
+ "text/vnd.in3d.spot": [
3060
+ "spot"
3061
+ ],
3062
+ "text/vnd.iptc.newsml": [],
3063
+ "text/vnd.iptc.nitf": [],
3064
+ "text/vnd.latex-z": [],
3065
+ "text/vnd.motorola.reflex": [],
3066
+ "text/vnd.ms-mediapackage": [],
3067
+ "text/vnd.net2phone.commcenter.command": [],
3068
+ "text/vnd.si.uricatalogue": [],
3069
+ "text/vnd.sun.j2me.app-descriptor": [
3070
+ "jad"
3071
+ ],
3072
+ "text/vnd.trolltech.linguist": [],
3073
+ "text/vnd.wap.si": [],
3074
+ "text/vnd.wap.sl": [],
3075
+ "text/vnd.wap.wml": [
3076
+ "wml"
3077
+ ],
3078
+ "text/vnd.wap.wmlscript": [
3079
+ "wmls"
3080
+ ],
3081
+ "text/x-asm": [
3082
+ "s",
3083
+ "asm"
3084
+ ],
3085
+ "text/x-c": [
3086
+ "c",
3087
+ "cc",
3088
+ "cxx",
3089
+ "cpp",
3090
+ "h",
3091
+ "hh",
3092
+ "dic"
3093
+ ],
3094
+ "text/x-fortran": [
3095
+ "f",
3096
+ "for",
3097
+ "f77",
3098
+ "f90"
3099
+ ],
3100
+ "text/x-java-source": [
3101
+ "java"
3102
+ ],
3103
+ "text/x-opml": [
3104
+ "opml"
3105
+ ],
3106
+ "text/x-pascal": [
3107
+ "p",
3108
+ "pas"
3109
+ ],
3110
+ "text/x-nfo": [
3111
+ "nfo"
3112
+ ],
3113
+ "text/x-setext": [
3114
+ "etx"
3115
+ ],
3116
+ "text/x-sfv": [
3117
+ "sfv"
3118
+ ],
3119
+ "text/x-uuencode": [
3120
+ "uu"
3121
+ ],
3122
+ "text/x-vcalendar": [
3123
+ "vcs"
3124
+ ],
3125
+ "text/x-vcard": [
3126
+ "vcf"
3127
+ ],
3128
+ "text/xml": [],
3129
+ "text/xml-external-parsed-entity": [],
3130
+ "video/1d-interleaved-parityfec": [],
3131
+ "video/3gpp": [
3132
+ "3gp"
3133
+ ],
3134
+ "video/3gpp-tt": [],
3135
+ "video/3gpp2": [
3136
+ "3g2"
3137
+ ],
3138
+ "video/bmpeg": [],
3139
+ "video/bt656": [],
3140
+ "video/celb": [],
3141
+ "video/dv": [],
3142
+ "video/example": [],
3143
+ "video/h261": [
3144
+ "h261"
3145
+ ],
3146
+ "video/h263": [
3147
+ "h263"
3148
+ ],
3149
+ "video/h263-1998": [],
3150
+ "video/h263-2000": [],
3151
+ "video/h264": [
3152
+ "h264"
3153
+ ],
3154
+ "video/h264-rcdo": [],
3155
+ "video/h264-svc": [],
3156
+ "video/jpeg": [
3157
+ "jpgv"
3158
+ ],
3159
+ "video/jpeg2000": [],
3160
+ "video/jpm": [
3161
+ "jpm",
3162
+ "jpgm"
3163
+ ],
3164
+ "video/mj2": [
3165
+ "mj2",
3166
+ "mjp2"
3167
+ ],
3168
+ "video/mp1s": [],
3169
+ "video/mp2p": [],
3170
+ "video/mp2t": [],
3171
+ "video/mp4": [
3172
+ "mp4",
3173
+ "mp4v",
3174
+ "mpg4"
3175
+ ],
3176
+ "video/mp4v-es": [],
3177
+ "video/mpeg": [
3178
+ "mpeg",
3179
+ "mpg",
3180
+ "mpe",
3181
+ "m1v",
3182
+ "m2v"
3183
+ ],
3184
+ "video/mpeg4-generic": [],
3185
+ "video/mpv": [],
3186
+ "video/nv": [],
3187
+ "video/ogg": [
3188
+ "ogv"
3189
+ ],
3190
+ "video/parityfec": [],
3191
+ "video/pointer": [],
3192
+ "video/quicktime": [
3193
+ "qt",
3194
+ "mov"
3195
+ ],
3196
+ "video/raw": [],
3197
+ "video/rtp-enc-aescm128": [],
3198
+ "video/rtx": [],
3199
+ "video/smpte292m": [],
3200
+ "video/ulpfec": [],
3201
+ "video/vc1": [],
3202
+ "video/vnd.cctv": [],
3203
+ "video/vnd.dece.hd": [
3204
+ "uvh",
3205
+ "uvvh"
3206
+ ],
3207
+ "video/vnd.dece.mobile": [
3208
+ "uvm",
3209
+ "uvvm"
3210
+ ],
3211
+ "video/vnd.dece.mp4": [],
3212
+ "video/vnd.dece.pd": [
3213
+ "uvp",
3214
+ "uvvp"
3215
+ ],
3216
+ "video/vnd.dece.sd": [
3217
+ "uvs",
3218
+ "uvvs"
3219
+ ],
3220
+ "video/vnd.dece.video": [
3221
+ "uvv",
3222
+ "uvvv"
3223
+ ],
3224
+ "video/vnd.directv.mpeg": [],
3225
+ "video/vnd.directv.mpeg-tts": [],
3226
+ "video/vnd.dlna.mpeg-tts": [],
3227
+ "video/vnd.dvb.file": [
3228
+ "dvb"
3229
+ ],
3230
+ "video/vnd.fvt": [
3231
+ "fvt"
3232
+ ],
3233
+ "video/vnd.hns.video": [],
3234
+ "video/vnd.iptvforum.1dparityfec-1010": [],
3235
+ "video/vnd.iptvforum.1dparityfec-2005": [],
3236
+ "video/vnd.iptvforum.2dparityfec-1010": [],
3237
+ "video/vnd.iptvforum.2dparityfec-2005": [],
3238
+ "video/vnd.iptvforum.ttsavc": [],
3239
+ "video/vnd.iptvforum.ttsmpeg2": [],
3240
+ "video/vnd.motorola.video": [],
3241
+ "video/vnd.motorola.videop": [],
3242
+ "video/vnd.mpegurl": [
3243
+ "mxu",
3244
+ "m4u"
3245
+ ],
3246
+ "video/vnd.ms-playready.media.pyv": [
3247
+ "pyv"
3248
+ ],
3249
+ "video/vnd.nokia.interleaved-multimedia": [],
3250
+ "video/vnd.nokia.videovoip": [],
3251
+ "video/vnd.objectvideo": [],
3252
+ "video/vnd.sealed.mpeg1": [],
3253
+ "video/vnd.sealed.mpeg4": [],
3254
+ "video/vnd.sealed.swf": [],
3255
+ "video/vnd.sealedmedia.softseal.mov": [],
3256
+ "video/vnd.uvvu.mp4": [
3257
+ "uvu",
3258
+ "uvvu"
3259
+ ],
3260
+ "video/vnd.vivo": [
3261
+ "viv"
3262
+ ],
3263
+ "video/webm": [
3264
+ "webm"
3265
+ ],
3266
+ "video/x-f4v": [
3267
+ "f4v"
3268
+ ],
3269
+ "video/x-fli": [
3270
+ "fli"
3271
+ ],
3272
+ "video/x-flv": [
3273
+ "flv"
3274
+ ],
3275
+ "video/x-m4v": [
3276
+ "m4v"
3277
+ ],
3278
+ "video/x-matroska": [
3279
+ "mkv",
3280
+ "mk3d",
3281
+ "mks"
3282
+ ],
3283
+ "video/x-mng": [
3284
+ "mng"
3285
+ ],
3286
+ "video/x-ms-asf": [
3287
+ "asf",
3288
+ "asx"
3289
+ ],
3290
+ "video/x-ms-vob": [
3291
+ "vob"
3292
+ ],
3293
+ "video/x-ms-wm": [
3294
+ "wm"
3295
+ ],
3296
+ "video/x-ms-wmv": [
3297
+ "wmv"
3298
+ ],
3299
+ "video/x-ms-wmx": [
3300
+ "wmx"
3301
+ ],
3302
+ "video/x-ms-wvx": [
3303
+ "wvx"
3304
+ ],
3305
+ "video/x-msvideo": [
3306
+ "avi"
3307
+ ],
3308
+ "video/x-sgi-movie": [
3309
+ "movie"
3310
+ ],
3311
+ "video/x-smv": [
3312
+ "smv"
3313
+ ],
3314
+ "x-conference/x-cooltalk": [
3315
+ "ice"
3316
+ ]
3317
+ }