administrate-field-simple_mde_markdown 0.1.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (419) hide show
  1. checksums.yaml +7 -0
  2. data/.circleci/config.yml +72 -0
  3. data/.circleci/setup-rubygems.sh +3 -0
  4. data/.gitignore +11 -0
  5. data/.rspec +3 -0
  6. data/CODE_OF_CONDUCT.md +74 -0
  7. data/Gemfile +8 -0
  8. data/Gemfile.lock +196 -0
  9. data/LICENSE.txt +21 -0
  10. data/README.md +44 -0
  11. data/Rakefile +8 -0
  12. data/administrate-field-simple_mde_markdown.gemspec +31 -0
  13. data/app/assets/javascripts/administrate-field-simple_mde_markdown/application.js +6 -0
  14. data/app/assets/stylesheets/administrate-field-simple_mde_markdown/application.css +3 -0
  15. data/app/views/fields/simple_mde_markdown/_form.html.erb +6 -0
  16. data/app/views/fields/simple_mde_markdown/_index.html.erb +1 -0
  17. data/app/views/fields/simple_mde_markdown/_show.html.erb +1 -0
  18. data/lib/administrate/field/simple_mde_markdown.rb +31 -0
  19. data/node_modules/.bin/marked +1 -0
  20. data/node_modules/codemirror-spell-checker/.eslintrc +23 -0
  21. data/node_modules/codemirror-spell-checker/.npmignore +2 -0
  22. data/node_modules/codemirror-spell-checker/.travis.yml +18 -0
  23. data/node_modules/codemirror-spell-checker/CONTRIBUTING 2.md +10 -0
  24. data/node_modules/codemirror-spell-checker/CONTRIBUTING.md +10 -0
  25. data/node_modules/codemirror-spell-checker/LICENSE +22 -0
  26. data/node_modules/codemirror-spell-checker/README.md +50 -0
  27. data/node_modules/codemirror-spell-checker/bower.json +27 -0
  28. data/node_modules/codemirror-spell-checker/debug/.spell-checker 2.css.icloud +0 -0
  29. data/node_modules/codemirror-spell-checker/debug/spell-checker.css +9 -0
  30. data/node_modules/codemirror-spell-checker/debug/spell-checker.debug.js +2844 -0
  31. data/node_modules/codemirror-spell-checker/debug/spell-checker.js +2841 -0
  32. data/node_modules/codemirror-spell-checker/dist/.spell-checker.min 2.css.icloud +0 -0
  33. data/node_modules/codemirror-spell-checker/dist/en_US.aff +201 -0
  34. data/node_modules/codemirror-spell-checker/dist/en_US.dic +62120 -0
  35. data/node_modules/codemirror-spell-checker/dist/spell-checker.min 2.js +7 -0
  36. data/node_modules/codemirror-spell-checker/dist/spell-checker.min.css +7 -0
  37. data/node_modules/codemirror-spell-checker/dist/spell-checker.min.js +7 -0
  38. data/node_modules/codemirror-spell-checker/gulpfile.js +94 -0
  39. data/node_modules/codemirror-spell-checker/package.json +75 -0
  40. data/node_modules/codemirror-spell-checker/src/css/spell-checker.css +3 -0
  41. data/node_modules/codemirror-spell-checker/src/data/en_US.aff +201 -0
  42. data/node_modules/codemirror-spell-checker/src/data/en_US.dic +62120 -0
  43. data/node_modules/codemirror-spell-checker/src/js/spell-checker.js +119 -0
  44. data/node_modules/codemirror/.package 2.json.icloud +0 -0
  45. data/node_modules/codemirror/AUTHORS +773 -0
  46. data/node_modules/codemirror/CHANGELOG.md +1486 -0
  47. data/node_modules/codemirror/CONTRIBUTING.md +92 -0
  48. data/node_modules/codemirror/LICENSE +21 -0
  49. data/node_modules/codemirror/README.md +49 -0
  50. data/node_modules/codemirror/addon/comment/comment.js +209 -0
  51. data/node_modules/codemirror/addon/comment/continuecomment.js +78 -0
  52. data/node_modules/codemirror/addon/dialog/dialog.css +32 -0
  53. data/node_modules/codemirror/addon/dialog/dialog.js +161 -0
  54. data/node_modules/codemirror/addon/display/autorefresh.js +47 -0
  55. data/node_modules/codemirror/addon/display/fullscreen.css +6 -0
  56. data/node_modules/codemirror/addon/display/fullscreen.js +41 -0
  57. data/node_modules/codemirror/addon/display/panel.js +127 -0
  58. data/node_modules/codemirror/addon/display/placeholder.js +63 -0
  59. data/node_modules/codemirror/addon/display/rulers.js +51 -0
  60. data/node_modules/codemirror/addon/edit/closebrackets.js +187 -0
  61. data/node_modules/codemirror/addon/edit/closetag.js +175 -0
  62. data/node_modules/codemirror/addon/edit/continuelist.js +89 -0
  63. data/node_modules/codemirror/addon/edit/matchbrackets.js +145 -0
  64. data/node_modules/codemirror/addon/edit/matchtags.js +66 -0
  65. data/node_modules/codemirror/addon/edit/trailingspace.js +27 -0
  66. data/node_modules/codemirror/addon/fold/brace-fold.js +105 -0
  67. data/node_modules/codemirror/addon/fold/comment-fold.js +59 -0
  68. data/node_modules/codemirror/addon/fold/foldcode.js +152 -0
  69. data/node_modules/codemirror/addon/fold/foldgutter.css +20 -0
  70. data/node_modules/codemirror/addon/fold/foldgutter.js +146 -0
  71. data/node_modules/codemirror/addon/fold/indent-fold.js +48 -0
  72. data/node_modules/codemirror/addon/fold/markdown-fold.js +49 -0
  73. data/node_modules/codemirror/addon/fold/xml-fold.js +184 -0
  74. data/node_modules/codemirror/addon/hint/anyword-hint.js +41 -0
  75. data/node_modules/codemirror/addon/hint/css-hint.js +60 -0
  76. data/node_modules/codemirror/addon/hint/html-hint.js +348 -0
  77. data/node_modules/codemirror/addon/hint/javascript-hint.js +157 -0
  78. data/node_modules/codemirror/addon/hint/show-hint.css +36 -0
  79. data/node_modules/codemirror/addon/hint/show-hint.js +434 -0
  80. data/node_modules/codemirror/addon/hint/sql-hint.js +299 -0
  81. data/node_modules/codemirror/addon/hint/xml-hint.js +110 -0
  82. data/node_modules/codemirror/addon/lint/coffeescript-lint.js +47 -0
  83. data/node_modules/codemirror/addon/lint/css-lint.js +40 -0
  84. data/node_modules/codemirror/addon/lint/html-lint.js +53 -0
  85. data/node_modules/codemirror/addon/lint/javascript-lint.js +63 -0
  86. data/node_modules/codemirror/addon/lint/json-lint.js +40 -0
  87. data/node_modules/codemirror/addon/lint/lint.css +73 -0
  88. data/node_modules/codemirror/addon/lint/lint.js +252 -0
  89. data/node_modules/codemirror/addon/lint/yaml-lint.js +41 -0
  90. data/node_modules/codemirror/addon/merge/merge.css +119 -0
  91. data/node_modules/codemirror/addon/merge/merge.js +1002 -0
  92. data/node_modules/codemirror/addon/mode/loadmode.js +64 -0
  93. data/node_modules/codemirror/addon/mode/multiplex.js +131 -0
  94. data/node_modules/codemirror/addon/mode/multiplex_test.js +33 -0
  95. data/node_modules/codemirror/addon/mode/overlay.js +90 -0
  96. data/node_modules/codemirror/addon/mode/simple.js +216 -0
  97. data/node_modules/codemirror/addon/runmode/colorize.js +40 -0
  98. data/node_modules/codemirror/addon/runmode/runmode-standalone.js +158 -0
  99. data/node_modules/codemirror/addon/runmode/runmode.js +72 -0
  100. data/node_modules/codemirror/addon/runmode/runmode.node.js +197 -0
  101. data/node_modules/codemirror/addon/scroll/annotatescrollbar.js +122 -0
  102. data/node_modules/codemirror/addon/scroll/scrollpastend.js +48 -0
  103. data/node_modules/codemirror/addon/scroll/simplescrollbars.css +66 -0
  104. data/node_modules/codemirror/addon/scroll/simplescrollbars.js +152 -0
  105. data/node_modules/codemirror/addon/search/jump-to-line.js +50 -0
  106. data/node_modules/codemirror/addon/search/match-highlighter.js +165 -0
  107. data/node_modules/codemirror/addon/search/matchesonscrollbar.css +8 -0
  108. data/node_modules/codemirror/addon/search/matchesonscrollbar.js +97 -0
  109. data/node_modules/codemirror/addon/search/search.js +258 -0
  110. data/node_modules/codemirror/addon/search/searchcursor.js +293 -0
  111. data/node_modules/codemirror/addon/selection/active-line.js +72 -0
  112. data/node_modules/codemirror/addon/selection/mark-selection.js +119 -0
  113. data/node_modules/codemirror/addon/selection/selection-pointer.js +98 -0
  114. data/node_modules/codemirror/addon/tern/tern.css +87 -0
  115. data/node_modules/codemirror/addon/tern/tern.js +718 -0
  116. data/node_modules/codemirror/addon/tern/worker.js +44 -0
  117. data/node_modules/codemirror/addon/wrap/hardwrap.js +145 -0
  118. data/node_modules/codemirror/bin/source-highlight +48 -0
  119. data/node_modules/codemirror/keymap/emacs.js +417 -0
  120. data/node_modules/codemirror/keymap/sublime.js +691 -0
  121. data/node_modules/codemirror/keymap/vim.js +5467 -0
  122. data/node_modules/codemirror/lib/codemirror.css +346 -0
  123. data/node_modules/codemirror/lib/codemirror.js +9698 -0
  124. data/node_modules/codemirror/mode/apl/apl.js +174 -0
  125. data/node_modules/codemirror/mode/asciiarmor/asciiarmor.js +74 -0
  126. data/node_modules/codemirror/mode/asn.1/asn.1.js +204 -0
  127. data/node_modules/codemirror/mode/asterisk/asterisk.js +196 -0
  128. data/node_modules/codemirror/mode/brainfuck/brainfuck.js +85 -0
  129. data/node_modules/codemirror/mode/clike/clike.js +879 -0
  130. data/node_modules/codemirror/mode/clojure/clojure.js +292 -0
  131. data/node_modules/codemirror/mode/cmake/cmake.js +97 -0
  132. data/node_modules/codemirror/mode/cobol/cobol.js +255 -0
  133. data/node_modules/codemirror/mode/coffeescript/coffeescript.js +359 -0
  134. data/node_modules/codemirror/mode/commonlisp/commonlisp.js +124 -0
  135. data/node_modules/codemirror/mode/crystal/crystal.js +433 -0
  136. data/node_modules/codemirror/mode/css/css.js +832 -0
  137. data/node_modules/codemirror/mode/cypher/cypher.js +150 -0
  138. data/node_modules/codemirror/mode/d/d.js +223 -0
  139. data/node_modules/codemirror/mode/dart/dart.js +157 -0
  140. data/node_modules/codemirror/mode/diff/diff.js +47 -0
  141. data/node_modules/codemirror/mode/django/django.js +356 -0
  142. data/node_modules/codemirror/mode/dockerfile/dockerfile.js +211 -0
  143. data/node_modules/codemirror/mode/dtd/dtd.js +142 -0
  144. data/node_modules/codemirror/mode/dylan/dylan.js +352 -0
  145. data/node_modules/codemirror/mode/ebnf/ebnf.js +195 -0
  146. data/node_modules/codemirror/mode/ecl/ecl.js +206 -0
  147. data/node_modules/codemirror/mode/eiffel/eiffel.js +160 -0
  148. data/node_modules/codemirror/mode/elm/elm.js +205 -0
  149. data/node_modules/codemirror/mode/erlang/erlang.js +619 -0
  150. data/node_modules/codemirror/mode/factor/factor.js +85 -0
  151. data/node_modules/codemirror/mode/fcl/fcl.js +173 -0
  152. data/node_modules/codemirror/mode/forth/forth.js +180 -0
  153. data/node_modules/codemirror/mode/fortran/fortran.js +188 -0
  154. data/node_modules/codemirror/mode/gas/gas.js +345 -0
  155. data/node_modules/codemirror/mode/gfm/gfm.js +129 -0
  156. data/node_modules/codemirror/mode/gherkin/gherkin.js +178 -0
  157. data/node_modules/codemirror/mode/go/go.js +187 -0
  158. data/node_modules/codemirror/mode/groovy/groovy.js +230 -0
  159. data/node_modules/codemirror/mode/haml/haml.js +161 -0
  160. data/node_modules/codemirror/mode/handlebars/handlebars.js +66 -0
  161. data/node_modules/codemirror/mode/haskell-literate/haskell-literate.js +43 -0
  162. data/node_modules/codemirror/mode/haskell/haskell.js +268 -0
  163. data/node_modules/codemirror/mode/haxe/haxe.js +515 -0
  164. data/node_modules/codemirror/mode/htmlembedded/htmlembedded.js +37 -0
  165. data/node_modules/codemirror/mode/htmlmixed/htmlmixed.js +152 -0
  166. data/node_modules/codemirror/mode/http/http.js +113 -0
  167. data/node_modules/codemirror/mode/idl/idl.js +290 -0
  168. data/node_modules/codemirror/mode/javascript/javascript.js +899 -0
  169. data/node_modules/codemirror/mode/jinja2/jinja2.js +144 -0
  170. data/node_modules/codemirror/mode/jsx/jsx.js +148 -0
  171. data/node_modules/codemirror/mode/julia/julia.js +433 -0
  172. data/node_modules/codemirror/mode/livescript/livescript.js +280 -0
  173. data/node_modules/codemirror/mode/lua/lua.js +159 -0
  174. data/node_modules/codemirror/mode/markdown/markdown.js +884 -0
  175. data/node_modules/codemirror/mode/mathematica/mathematica.js +176 -0
  176. data/node_modules/codemirror/mode/mbox/mbox.js +129 -0
  177. data/node_modules/codemirror/mode/meta.js +217 -0
  178. data/node_modules/codemirror/mode/mirc/mirc.js +193 -0
  179. data/node_modules/codemirror/mode/mllike/mllike.js +359 -0
  180. data/node_modules/codemirror/mode/modelica/modelica.js +245 -0
  181. data/node_modules/codemirror/mode/mscgen/mscgen.js +175 -0
  182. data/node_modules/codemirror/mode/mumps/mumps.js +148 -0
  183. data/node_modules/codemirror/mode/nginx/nginx.js +178 -0
  184. data/node_modules/codemirror/mode/nsis/nsis.js +95 -0
  185. data/node_modules/codemirror/mode/ntriples/ntriples.js +195 -0
  186. data/node_modules/codemirror/mode/octave/octave.js +139 -0
  187. data/node_modules/codemirror/mode/oz/oz.js +252 -0
  188. data/node_modules/codemirror/mode/pascal/pascal.js +121 -0
  189. data/node_modules/codemirror/mode/pegjs/pegjs.js +114 -0
  190. data/node_modules/codemirror/mode/perl/perl.js +837 -0
  191. data/node_modules/codemirror/mode/php/php.js +234 -0
  192. data/node_modules/codemirror/mode/pig/pig.js +178 -0
  193. data/node_modules/codemirror/mode/powershell/powershell.js +398 -0
  194. data/node_modules/codemirror/mode/properties/properties 2.js +78 -0
  195. data/node_modules/codemirror/mode/properties/properties.js +78 -0
  196. data/node_modules/codemirror/mode/protobuf/protobuf.js +69 -0
  197. data/node_modules/codemirror/mode/pug/pug.js +591 -0
  198. data/node_modules/codemirror/mode/puppet/puppet.js +220 -0
  199. data/node_modules/codemirror/mode/python/python.js +409 -0
  200. data/node_modules/codemirror/mode/q/q.js +139 -0
  201. data/node_modules/codemirror/mode/r/r.js +190 -0
  202. data/node_modules/codemirror/mode/rpm/changes/index.html +66 -0
  203. data/node_modules/codemirror/mode/rpm/rpm.js +109 -0
  204. data/node_modules/codemirror/mode/rst/rst.js +557 -0
  205. data/node_modules/codemirror/mode/ruby/ruby.js +296 -0
  206. data/node_modules/codemirror/mode/rust/rust.js +72 -0
  207. data/node_modules/codemirror/mode/sas/sas.js +303 -0
  208. data/node_modules/codemirror/mode/sass/sass.js +454 -0
  209. data/node_modules/codemirror/mode/scheme/scheme.js +265 -0
  210. data/node_modules/codemirror/mode/shell/shell.js +152 -0
  211. data/node_modules/codemirror/mode/sieve/sieve.js +193 -0
  212. data/node_modules/codemirror/mode/slim/slim.js +575 -0
  213. data/node_modules/codemirror/mode/smalltalk/smalltalk.js +168 -0
  214. data/node_modules/codemirror/mode/smarty/smarty.js +225 -0
  215. data/node_modules/codemirror/mode/solr/solr.js +104 -0
  216. data/node_modules/codemirror/mode/soy/soy 2.js +359 -0
  217. data/node_modules/codemirror/mode/soy/soy.js +235 -0
  218. data/node_modules/codemirror/mode/sparql/sparql.js +180 -0
  219. data/node_modules/codemirror/mode/spreadsheet/spreadsheet.js +112 -0
  220. data/node_modules/codemirror/mode/sql/sql.js +499 -0
  221. data/node_modules/codemirror/mode/stex/stex.js +264 -0
  222. data/node_modules/codemirror/mode/stylus/stylus.js +771 -0
  223. data/node_modules/codemirror/mode/swift/swift.js +219 -0
  224. data/node_modules/codemirror/mode/tcl/tcl.js +139 -0
  225. data/node_modules/codemirror/mode/textile/textile.js +469 -0
  226. data/node_modules/codemirror/mode/tiddlywiki/tiddlywiki.css +14 -0
  227. data/node_modules/codemirror/mode/tiddlywiki/tiddlywiki.js +308 -0
  228. data/node_modules/codemirror/mode/tiki/tiki.css +26 -0
  229. data/node_modules/codemirror/mode/tiki/tiki.js +312 -0
  230. data/node_modules/codemirror/mode/toml/toml.js +88 -0
  231. data/node_modules/codemirror/mode/tornado/tornado.js +68 -0
  232. data/node_modules/codemirror/mode/troff/troff.js +84 -0
  233. data/node_modules/codemirror/mode/ttcn-cfg/ttcn-cfg.js +214 -0
  234. data/node_modules/codemirror/mode/ttcn/ttcn.js +283 -0
  235. data/node_modules/codemirror/mode/turtle/turtle.js +162 -0
  236. data/node_modules/codemirror/mode/twig/twig.js +141 -0
  237. data/node_modules/codemirror/mode/vb/vb.js +275 -0
  238. data/node_modules/codemirror/mode/vbscript/vbscript.js +350 -0
  239. data/node_modules/codemirror/mode/velocity/velocity.js +201 -0
  240. data/node_modules/codemirror/mode/verilog/verilog.js +675 -0
  241. data/node_modules/codemirror/mode/vhdl/vhdl.js +189 -0
  242. data/node_modules/codemirror/mode/vue/vue.js +77 -0
  243. data/node_modules/codemirror/mode/webidl/webidl.js +195 -0
  244. data/node_modules/codemirror/mode/xml/xml.js +402 -0
  245. data/node_modules/codemirror/mode/xquery/xquery.js +448 -0
  246. data/node_modules/codemirror/mode/yacas/yacas.js +204 -0
  247. data/node_modules/codemirror/mode/yaml-frontmatter/yaml-frontmatter.js +68 -0
  248. data/node_modules/codemirror/mode/yaml/yaml.js +120 -0
  249. data/node_modules/codemirror/mode/z80/z80.js +116 -0
  250. data/node_modules/codemirror/package.json +2395 -0
  251. data/node_modules/codemirror/rollup.config.js +20 -0
  252. data/node_modules/codemirror/src/codemirror.js +3 -0
  253. data/node_modules/codemirror/src/display/Display.js +106 -0
  254. data/node_modules/codemirror/src/display/focus.js +47 -0
  255. data/node_modules/codemirror/src/display/gutters.js +34 -0
  256. data/node_modules/codemirror/src/display/highlight_worker.js +55 -0
  257. data/node_modules/codemirror/src/display/line_numbers.js +48 -0
  258. data/node_modules/codemirror/src/display/mode_state.js +22 -0
  259. data/node_modules/codemirror/src/display/operations.js +205 -0
  260. data/node_modules/codemirror/src/display/scroll_events.js +115 -0
  261. data/node_modules/codemirror/src/display/scrollbars.js +193 -0
  262. data/node_modules/codemirror/src/display/scrolling.js +184 -0
  263. data/node_modules/codemirror/src/display/selection.js +158 -0
  264. data/node_modules/codemirror/src/display/update_display.js +260 -0
  265. data/node_modules/codemirror/src/display/update_line.js +188 -0
  266. data/node_modules/codemirror/src/display/update_lines.js +64 -0
  267. data/node_modules/codemirror/src/display/view_tracking.js +153 -0
  268. data/node_modules/codemirror/src/edit/CodeMirror.js +215 -0
  269. data/node_modules/codemirror/src/edit/commands.js +178 -0
  270. data/node_modules/codemirror/src/edit/deleteNearSelection.js +30 -0
  271. data/node_modules/codemirror/src/edit/drop_events.js +119 -0
  272. data/node_modules/codemirror/src/edit/fromTextArea.js +61 -0
  273. data/node_modules/codemirror/src/edit/global_events.js +42 -0
  274. data/node_modules/codemirror/src/edit/key_events.js +159 -0
  275. data/node_modules/codemirror/src/edit/legacy.js +62 -0
  276. data/node_modules/codemirror/src/edit/main.js +69 -0
  277. data/node_modules/codemirror/src/edit/methods.js +544 -0
  278. data/node_modules/codemirror/src/edit/mouse_events.js +407 -0
  279. data/node_modules/codemirror/src/edit/options.js +193 -0
  280. data/node_modules/codemirror/src/edit/utils.js +7 -0
  281. data/node_modules/codemirror/src/input/ContentEditableInput.js +527 -0
  282. data/node_modules/codemirror/src/input/TextareaInput.js +355 -0
  283. data/node_modules/codemirror/src/input/indent.js +71 -0
  284. data/node_modules/codemirror/src/input/input.js +135 -0
  285. data/node_modules/codemirror/src/input/keymap.js +148 -0
  286. data/node_modules/codemirror/src/input/keynames.js +17 -0
  287. data/node_modules/codemirror/src/input/movement.js +110 -0
  288. data/node_modules/codemirror/src/line/highlight.js +284 -0
  289. data/node_modules/codemirror/src/line/line_data.js +339 -0
  290. data/node_modules/codemirror/src/line/pos.js +40 -0
  291. data/node_modules/codemirror/src/line/saw_special_spans.js +10 -0
  292. data/node_modules/codemirror/src/line/spans.js +382 -0
  293. data/node_modules/codemirror/src/line/utils_line.js +85 -0
  294. data/node_modules/codemirror/src/measurement/position_measurement.js +699 -0
  295. data/node_modules/codemirror/src/measurement/widgets.js +26 -0
  296. data/node_modules/codemirror/src/model/Doc.js +432 -0
  297. data/node_modules/codemirror/src/model/change_measurement.js +61 -0
  298. data/node_modules/codemirror/src/model/changes.js +333 -0
  299. data/node_modules/codemirror/src/model/chunk.js +167 -0
  300. data/node_modules/codemirror/src/model/document_data.js +111 -0
  301. data/node_modules/codemirror/src/model/history.js +228 -0
  302. data/node_modules/codemirror/src/model/line_widget.js +78 -0
  303. data/node_modules/codemirror/src/model/mark_text.js +292 -0
  304. data/node_modules/codemirror/src/model/selection.js +84 -0
  305. data/node_modules/codemirror/src/model/selection_updates.js +208 -0
  306. data/node_modules/codemirror/src/modes.js +96 -0
  307. data/node_modules/codemirror/src/util/StringStream.js +90 -0
  308. data/node_modules/codemirror/src/util/bidi.js +214 -0
  309. data/node_modules/codemirror/src/util/browser.js +33 -0
  310. data/node_modules/codemirror/src/util/dom.js +97 -0
  311. data/node_modules/codemirror/src/util/event.js +103 -0
  312. data/node_modules/codemirror/src/util/feature_detection.js +84 -0
  313. data/node_modules/codemirror/src/util/misc.js +150 -0
  314. data/node_modules/codemirror/src/util/operation_group.js +72 -0
  315. data/node_modules/codemirror/theme/3024-day.css +41 -0
  316. data/node_modules/codemirror/theme/3024-night.css +39 -0
  317. data/node_modules/codemirror/theme/abcdef.css +32 -0
  318. data/node_modules/codemirror/theme/ambiance-mobile.css +5 -0
  319. data/node_modules/codemirror/theme/ambiance.css +74 -0
  320. data/node_modules/codemirror/theme/base16-dark.css +38 -0
  321. data/node_modules/codemirror/theme/base16-light.css +38 -0
  322. data/node_modules/codemirror/theme/bespin.css +34 -0
  323. data/node_modules/codemirror/theme/blackboard.css +32 -0
  324. data/node_modules/codemirror/theme/cobalt.css +25 -0
  325. data/node_modules/codemirror/theme/colorforth.css +33 -0
  326. data/node_modules/codemirror/theme/darcula.css +46 -0
  327. data/node_modules/codemirror/theme/dracula.css +40 -0
  328. data/node_modules/codemirror/theme/duotone-dark.css +35 -0
  329. data/node_modules/codemirror/theme/duotone-light.css +36 -0
  330. data/node_modules/codemirror/theme/eclipse.css +23 -0
  331. data/node_modules/codemirror/theme/elegant.css +13 -0
  332. data/node_modules/codemirror/theme/erlang-dark.css +34 -0
  333. data/node_modules/codemirror/theme/gruvbox-dark.css +37 -0
  334. data/node_modules/codemirror/theme/hopscotch.css +34 -0
  335. data/node_modules/codemirror/theme/icecoder.css +43 -0
  336. data/node_modules/codemirror/theme/idea.css +42 -0
  337. data/node_modules/codemirror/theme/isotope.css +34 -0
  338. data/node_modules/codemirror/theme/lesser-dark.css +47 -0
  339. data/node_modules/codemirror/theme/liquibyte.css +95 -0
  340. data/node_modules/codemirror/theme/lucario.css +37 -0
  341. data/node_modules/codemirror/theme/material.css +53 -0
  342. data/node_modules/codemirror/theme/mbo.css +37 -0
  343. data/node_modules/codemirror/theme/mdn-like.css +46 -0
  344. data/node_modules/codemirror/theme/midnight.css +43 -0
  345. data/node_modules/codemirror/theme/monokai.css +41 -0
  346. data/node_modules/codemirror/theme/neat.css +12 -0
  347. data/node_modules/codemirror/theme/neo.css +43 -0
  348. data/node_modules/codemirror/theme/night.css +27 -0
  349. data/node_modules/codemirror/theme/oceanic-next.css +44 -0
  350. data/node_modules/codemirror/theme/panda-syntax.css +85 -0
  351. data/node_modules/codemirror/theme/paraiso-dark.css +38 -0
  352. data/node_modules/codemirror/theme/paraiso-light.css +38 -0
  353. data/node_modules/codemirror/theme/pastel-on-dark.css +52 -0
  354. data/node_modules/codemirror/theme/railscasts.css +34 -0
  355. data/node_modules/codemirror/theme/rubyblue.css +25 -0
  356. data/node_modules/codemirror/theme/seti.css +44 -0
  357. data/node_modules/codemirror/theme/shadowfox.css +52 -0
  358. data/node_modules/codemirror/theme/solarized.css +168 -0
  359. data/node_modules/codemirror/theme/ssms.css +16 -0
  360. data/node_modules/codemirror/theme/the-matrix.css +30 -0
  361. data/node_modules/codemirror/theme/tomorrow-night-bright.css +35 -0
  362. data/node_modules/codemirror/theme/tomorrow-night-eighties.css +38 -0
  363. data/node_modules/codemirror/theme/ttcn.css +64 -0
  364. data/node_modules/codemirror/theme/twilight.css +32 -0
  365. data/node_modules/codemirror/theme/vibrant-ink.css +34 -0
  366. data/node_modules/codemirror/theme/xq-dark.css +53 -0
  367. data/node_modules/codemirror/theme/xq-light.css +43 -0
  368. data/node_modules/codemirror/theme/yeti.css +44 -0
  369. data/node_modules/codemirror/theme/zenburn.css +37 -0
  370. data/node_modules/marked/.editorconfig +16 -0
  371. data/node_modules/marked/.eslintignore +1 -0
  372. data/node_modules/marked/.eslintrc.json +28 -0
  373. data/node_modules/marked/.package 2.json.icloud +0 -0
  374. data/node_modules/marked/.travis.yml +47 -0
  375. data/node_modules/marked/Makefile +15 -0
  376. data/node_modules/marked/Makefile 2 +15 -0
  377. data/node_modules/marked/README 2.md +75 -0
  378. data/node_modules/marked/README.md +75 -0
  379. data/node_modules/marked/bin/marked +199 -0
  380. data/node_modules/marked/bower.json +23 -0
  381. data/node_modules/marked/component.json +10 -0
  382. data/node_modules/marked/index.js +1 -0
  383. data/node_modules/marked/jasmine.json +11 -0
  384. data/node_modules/marked/lib/marked 2.js +1604 -0
  385. data/node_modules/marked/lib/marked.js +1604 -0
  386. data/node_modules/marked/man/marked.1 +91 -0
  387. data/node_modules/marked/man/marked.1.txt +96 -0
  388. data/node_modules/marked/marked.min.js +6 -0
  389. data/node_modules/marked/package.json +95 -0
  390. data/node_modules/simplemde/.eslintrc +23 -0
  391. data/node_modules/simplemde/.npmignore +9 -0
  392. data/node_modules/simplemde/.travis.yml +18 -0
  393. data/node_modules/simplemde/CONTRIBUTING 2.md +10 -0
  394. data/node_modules/simplemde/CONTRIBUTING.md +10 -0
  395. data/node_modules/simplemde/LICENSE +22 -0
  396. data/node_modules/simplemde/README.md +331 -0
  397. data/node_modules/simplemde/bower.json +23 -0
  398. data/node_modules/simplemde/debug/.simplemde 2.css.icloud +0 -0
  399. data/node_modules/simplemde/debug/simplemde.css +676 -0
  400. data/node_modules/simplemde/debug/simplemde.debug.js +17023 -0
  401. data/node_modules/simplemde/debug/simplemde.js +17019 -0
  402. data/node_modules/simplemde/dist/simplemde.min.css +7 -0
  403. data/node_modules/simplemde/dist/simplemde.min.js +15 -0
  404. data/node_modules/simplemde/gulpfile.js +96 -0
  405. data/node_modules/simplemde/package.json +73 -0
  406. data/node_modules/simplemde/src/css/simplemde.css +328 -0
  407. data/node_modules/simplemde/src/js/codemirror/tablist 2.js +44 -0
  408. data/node_modules/simplemde/src/js/codemirror/tablist.js +44 -0
  409. data/node_modules/simplemde/src/js/simplemde.js +2028 -0
  410. data/node_modules/typo-js/README.md +45 -0
  411. data/node_modules/typo-js/dictionaries/en_US/.en_US 2.dic.icloud +0 -0
  412. data/node_modules/typo-js/dictionaries/en_US/README.md +7 -0
  413. data/node_modules/typo-js/dictionaries/en_US/en_US.aff +201 -0
  414. data/node_modules/typo-js/dictionaries/en_US/en_US.dic +62120 -0
  415. data/node_modules/typo-js/package.json +56 -0
  416. data/node_modules/typo-js/typo.js +931 -0
  417. data/package-lock.json +40 -0
  418. data/package.json +7 -0
  419. metadata +557 -0
@@ -0,0 +1,2395 @@
1
+ {
2
+ "_from": "codemirror@*",
3
+ "_id": "codemirror@5.41.0",
4
+ "_inBundle": false,
5
+ "_integrity": "sha512-mkCwbneCx2WHg1MNCYrI+8Zuq0KMMaZ5yTFpQlAZazy3yxME8bHcuSc9WUFzgPZ114WqWu1FIHlx8CavLzBDIg==",
6
+ "_location": "/codemirror",
7
+ "_phantomChildren": {},
8
+ "_requested": {
9
+ "type": "range",
10
+ "registry": true,
11
+ "raw": "codemirror@*",
12
+ "name": "codemirror",
13
+ "escapedName": "codemirror",
14
+ "rawSpec": "*",
15
+ "saveSpec": null,
16
+ "fetchSpec": "*"
17
+ },
18
+ "_requiredBy": [
19
+ "/simplemde"
20
+ ],
21
+ "_resolved": "https://registry.npmjs.org/codemirror/-/codemirror-5.41.0.tgz",
22
+ "_shasum": "57e245be197643c39440d2840236d3edc4bb1162",
23
+ "_spec": "codemirror@*",
24
+ "_where": "/Users/stuart/Documents/administrate-field-markdown/node_modules/simplemde",
25
+ "author": {
26
+ "name": "Marijn Haverbeke",
27
+ "email": "marijnh@gmail.com",
28
+ "url": "http://marijnhaverbeke.nl"
29
+ },
30
+ "bugs": {
31
+ "url": "http://github.com/codemirror/CodeMirror/issues"
32
+ },
33
+ "bundleDependencies": false,
34
+ "contributors": [
35
+ {
36
+ "name": "List of CodeMirror contributors. Updated before every release."
37
+ },
38
+ {
39
+ "name": "4oo4"
40
+ },
41
+ {
42
+ "name": "4r2r"
43
+ },
44
+ {
45
+ "name": "Aaron Brooks"
46
+ },
47
+ {
48
+ "name": "Abdelouahab"
49
+ },
50
+ {
51
+ "name": "Abdussalam Abdurrahman"
52
+ },
53
+ {
54
+ "name": "Abe Fettig"
55
+ },
56
+ {
57
+ "name": "Abhishek Gahlot"
58
+ },
59
+ {
60
+ "name": "Adam Ahmed"
61
+ },
62
+ {
63
+ "name": "Adam King"
64
+ },
65
+ {
66
+ "name": "Adam Particka"
67
+ },
68
+ {
69
+ "name": "adanlobato"
70
+ },
71
+ {
72
+ "name": "Adán Lobato"
73
+ },
74
+ {
75
+ "name": "Adrian Aichner"
76
+ },
77
+ {
78
+ "name": "Adrian Heine"
79
+ },
80
+ {
81
+ "name": "Adrien Bertrand"
82
+ },
83
+ {
84
+ "name": "aeroson"
85
+ },
86
+ {
87
+ "name": "Ahmad Amireh"
88
+ },
89
+ {
90
+ "name": "Ahmad M. Zawawi"
91
+ },
92
+ {
93
+ "name": "ahoward"
94
+ },
95
+ {
96
+ "name": "Akeksandr Motsjonov"
97
+ },
98
+ {
99
+ "name": "Alasdair Smith"
100
+ },
101
+ {
102
+ "name": "AlbertHilb"
103
+ },
104
+ {
105
+ "name": "Alberto González Palomo"
106
+ },
107
+ {
108
+ "name": "Alberto Pose"
109
+ },
110
+ {
111
+ "name": "Albert Xing"
112
+ },
113
+ {
114
+ "name": "Alexander Pavlov"
115
+ },
116
+ {
117
+ "name": "Alexander Schepanovski"
118
+ },
119
+ {
120
+ "name": "Alexander Shvets"
121
+ },
122
+ {
123
+ "name": "Alexander Solovyov"
124
+ },
125
+ {
126
+ "name": "Alexandre Bique"
127
+ },
128
+ {
129
+ "name": "alexey-k"
130
+ },
131
+ {
132
+ "name": "Alex Piggott"
133
+ },
134
+ {
135
+ "name": "Aliaksei Chapyzhenka"
136
+ },
137
+ {
138
+ "name": "Allen Sarkisyan"
139
+ },
140
+ {
141
+ "name": "Ami Fischman"
142
+ },
143
+ {
144
+ "name": "Amin Shali"
145
+ },
146
+ {
147
+ "name": "Amin Ullah Khan"
148
+ },
149
+ {
150
+ "name": "amshali@google.com"
151
+ },
152
+ {
153
+ "name": "Amsul"
154
+ },
155
+ {
156
+ "name": "amuntean"
157
+ },
158
+ {
159
+ "name": "Amy"
160
+ },
161
+ {
162
+ "name": "Ananya Sen"
163
+ },
164
+ {
165
+ "name": "anaran"
166
+ },
167
+ {
168
+ "name": "AndersMad"
169
+ },
170
+ {
171
+ "name": "Anders Nawroth"
172
+ },
173
+ {
174
+ "name": "Anderson Mesquita"
175
+ },
176
+ {
177
+ "name": "Anders Wåglund"
178
+ },
179
+ {
180
+ "name": "Andrea G"
181
+ },
182
+ {
183
+ "name": "Andreas Reischuck"
184
+ },
185
+ {
186
+ "name": "Andres Taylor"
187
+ },
188
+ {
189
+ "name": "Andre von Houck"
190
+ },
191
+ {
192
+ "name": "Andrew Cheng"
193
+ },
194
+ {
195
+ "name": "Andrew Dassonville"
196
+ },
197
+ {
198
+ "name": "Andrey Fedorov"
199
+ },
200
+ {
201
+ "name": "Andrey Klyuchnikov"
202
+ },
203
+ {
204
+ "name": "Andrey Lushnikov"
205
+ },
206
+ {
207
+ "name": "Andrey Shchekin"
208
+ },
209
+ {
210
+ "name": "Andy Joslin"
211
+ },
212
+ {
213
+ "name": "Andy Kimball"
214
+ },
215
+ {
216
+ "name": "Andy Li"
217
+ },
218
+ {
219
+ "name": "Angelo"
220
+ },
221
+ {
222
+ "name": "angelozerr"
223
+ },
224
+ {
225
+ "name": "angelo.zerr@gmail.com"
226
+ },
227
+ {
228
+ "name": "Ankit"
229
+ },
230
+ {
231
+ "name": "Ankit Ahuja"
232
+ },
233
+ {
234
+ "name": "Ansel Santosa"
235
+ },
236
+ {
237
+ "name": "Anthony Dugois"
238
+ },
239
+ {
240
+ "name": "anthonygego"
241
+ },
242
+ {
243
+ "name": "Anthony Gégo"
244
+ },
245
+ {
246
+ "name": "Anthony Grimes"
247
+ },
248
+ {
249
+ "name": "Anton Kovalyov"
250
+ },
251
+ {
252
+ "name": "Apollo Zhu"
253
+ },
254
+ {
255
+ "name": "AQNOUCH Mohammed"
256
+ },
257
+ {
258
+ "name": "Aram Shatakhtsyan"
259
+ },
260
+ {
261
+ "name": "areos"
262
+ },
263
+ {
264
+ "name": "Arnab Bose"
265
+ },
266
+ {
267
+ "name": "Arsène von Wyss"
268
+ },
269
+ {
270
+ "name": "Arthur Müller"
271
+ },
272
+ {
273
+ "name": "Arun Narasani"
274
+ },
275
+ {
276
+ "name": "as3boyan"
277
+ },
278
+ {
279
+ "name": "asolove"
280
+ },
281
+ {
282
+ "name": "atelierbram"
283
+ },
284
+ {
285
+ "name": "AtomicPages LLC"
286
+ },
287
+ {
288
+ "name": "Atul Bhouraskar"
289
+ },
290
+ {
291
+ "name": "Aurelian Oancea"
292
+ },
293
+ {
294
+ "name": "Axel Lewenhaupt"
295
+ },
296
+ {
297
+ "name": "Baptiste Augrain"
298
+ },
299
+ {
300
+ "name": "Barret Rennie"
301
+ },
302
+ {
303
+ "name": "Bartosz Dziewoński"
304
+ },
305
+ {
306
+ "name": "Basarat Ali Syed"
307
+ },
308
+ {
309
+ "name": "Bastian Müller"
310
+ },
311
+ {
312
+ "name": "belhaj"
313
+ },
314
+ {
315
+ "name": "Bem Jones-Bey"
316
+ },
317
+ {
318
+ "name": "benbro"
319
+ },
320
+ {
321
+ "name": "Beni Cherniavsky-Paskin"
322
+ },
323
+ {
324
+ "name": "Benjamin DeCoste"
325
+ },
326
+ {
327
+ "name": "Benjamin Young"
328
+ },
329
+ {
330
+ "name": "Ben Keen"
331
+ },
332
+ {
333
+ "name": "Ben Miller"
334
+ },
335
+ {
336
+ "name": "Ben Mosher"
337
+ },
338
+ {
339
+ "name": "Bernhard Sirlinger"
340
+ },
341
+ {
342
+ "name": "Bert Chang"
343
+ },
344
+ {
345
+ "name": "Bharad"
346
+ },
347
+ {
348
+ "name": "BigBlueHat"
349
+ },
350
+ {
351
+ "name": "Billy Moon"
352
+ },
353
+ {
354
+ "name": "binny"
355
+ },
356
+ {
357
+ "name": "Bjorn Hansen"
358
+ },
359
+ {
360
+ "name": "B Krishna Chaitanya"
361
+ },
362
+ {
363
+ "name": "Blaine G"
364
+ },
365
+ {
366
+ "name": "blukat29"
367
+ },
368
+ {
369
+ "name": "Bo"
370
+ },
371
+ {
372
+ "name": "boomyjee"
373
+ },
374
+ {
375
+ "name": "Bo Peng"
376
+ },
377
+ {
378
+ "name": "borawjm"
379
+ },
380
+ {
381
+ "name": "Brad Metcalf"
382
+ },
383
+ {
384
+ "name": "Brandon Frohs"
385
+ },
386
+ {
387
+ "name": "Brandon Wamboldt"
388
+ },
389
+ {
390
+ "name": "Bret Little"
391
+ },
392
+ {
393
+ "name": "Brett Zamir"
394
+ },
395
+ {
396
+ "name": "Brian Grinstead"
397
+ },
398
+ {
399
+ "name": "Brian Sletten"
400
+ },
401
+ {
402
+ "name": "brrd"
403
+ },
404
+ {
405
+ "name": "Bruce Mitchener"
406
+ },
407
+ {
408
+ "name": "Bryan Massoth"
409
+ },
410
+ {
411
+ "name": "Caitlin Potter"
412
+ },
413
+ {
414
+ "name": "Calin Barbat"
415
+ },
416
+ {
417
+ "name": "callodacity"
418
+ },
419
+ {
420
+ "name": "Camilo Roca"
421
+ },
422
+ {
423
+ "name": "Casey Klebba"
424
+ },
425
+ {
426
+ "name": "César González Íñiguez"
427
+ },
428
+ {
429
+ "name": "Chad Jolly"
430
+ },
431
+ {
432
+ "name": "Chandra Sekhar Pydi"
433
+ },
434
+ {
435
+ "name": "Charles Skelton"
436
+ },
437
+ {
438
+ "name": "Cheah Chu Yeow"
439
+ },
440
+ {
441
+ "name": "Chris Coyier"
442
+ },
443
+ {
444
+ "name": "Chris Ford"
445
+ },
446
+ {
447
+ "name": "Chris Granger"
448
+ },
449
+ {
450
+ "name": "Chris Houseknecht"
451
+ },
452
+ {
453
+ "name": "Chris Lohfink"
454
+ },
455
+ {
456
+ "name": "Chris Morgan"
457
+ },
458
+ {
459
+ "name": "Chris Reeves"
460
+ },
461
+ {
462
+ "name": "Chris Smith"
463
+ },
464
+ {
465
+ "name": "Christian Gruen"
466
+ },
467
+ {
468
+ "name": "Christian Oyarzun"
469
+ },
470
+ {
471
+ "name": "Christian Petrov"
472
+ },
473
+ {
474
+ "name": "christopherblaser"
475
+ },
476
+ {
477
+ "name": "Christopher Brown"
478
+ },
479
+ {
480
+ "name": "Christopher Kramer"
481
+ },
482
+ {
483
+ "name": "Christopher Mitchell"
484
+ },
485
+ {
486
+ "name": "Christopher Pfohl"
487
+ },
488
+ {
489
+ "name": "Chunliang Lyu"
490
+ },
491
+ {
492
+ "name": "ciaranj"
493
+ },
494
+ {
495
+ "name": "CodeAnimal"
496
+ },
497
+ {
498
+ "name": "CodeBitt"
499
+ },
500
+ {
501
+ "name": "coderaiser"
502
+ },
503
+ {
504
+ "name": "Cole R Lawrence"
505
+ },
506
+ {
507
+ "name": "ComFreek"
508
+ },
509
+ {
510
+ "name": "Cristian Prieto"
511
+ },
512
+ {
513
+ "name": "Curran Kelleher"
514
+ },
515
+ {
516
+ "name": "Curtis Gagliardi"
517
+ },
518
+ {
519
+ "name": "dagsta"
520
+ },
521
+ {
522
+ "name": "daines"
523
+ },
524
+ {
525
+ "name": "Dale Jung"
526
+ },
527
+ {
528
+ "name": "Dan Bentley"
529
+ },
530
+ {
531
+ "name": "Dan Heberden"
532
+ },
533
+ {
534
+ "name": "Daniel, Dao Quang Minh"
535
+ },
536
+ {
537
+ "name": "Daniele Di Sarli"
538
+ },
539
+ {
540
+ "name": "Daniel Faust"
541
+ },
542
+ {
543
+ "name": "Daniel Hanggi"
544
+ },
545
+ {
546
+ "name": "Daniel Huigens"
547
+ },
548
+ {
549
+ "name": "Daniel Kesler"
550
+ },
551
+ {
552
+ "name": "Daniel KJ"
553
+ },
554
+ {
555
+ "name": "Daniel Neel"
556
+ },
557
+ {
558
+ "name": "Daniel Parnell"
559
+ },
560
+ {
561
+ "name": "Daniel Thwaites"
562
+ },
563
+ {
564
+ "name": "Danila Malyutin"
565
+ },
566
+ {
567
+ "name": "Danny Yoo"
568
+ },
569
+ {
570
+ "name": "darealshinji"
571
+ },
572
+ {
573
+ "name": "Darius Roberts"
574
+ },
575
+ {
576
+ "name": "databricks-david-lewis"
577
+ },
578
+ {
579
+ "name": "Dave Brondsema"
580
+ },
581
+ {
582
+ "name": "Dave MacLachlan"
583
+ },
584
+ {
585
+ "name": "Dave Myers"
586
+ },
587
+ {
588
+ "name": "David Barnett"
589
+ },
590
+ {
591
+ "name": "David H. Bronke"
592
+ },
593
+ {
594
+ "name": "David Mignot"
595
+ },
596
+ {
597
+ "name": "David Pathakjee"
598
+ },
599
+ {
600
+ "name": "David Santana"
601
+ },
602
+ {
603
+ "name": "David Vázquez"
604
+ },
605
+ {
606
+ "name": "David Whittington"
607
+ },
608
+ {
609
+ "name": "deebugger"
610
+ },
611
+ {
612
+ "name": "Deep Thought"
613
+ },
614
+ {
615
+ "name": "Devin Abbott"
616
+ },
617
+ {
618
+ "name": "Devon Carew"
619
+ },
620
+ {
621
+ "name": "Dick Choi"
622
+ },
623
+ {
624
+ "name": "dignifiedquire"
625
+ },
626
+ {
627
+ "name": "Dimage Sapelkin"
628
+ },
629
+ {
630
+ "name": "dmaclach"
631
+ },
632
+ {
633
+ "name": "Dmitry Kiselyov"
634
+ },
635
+ {
636
+ "name": "domagoj412"
637
+ },
638
+ {
639
+ "name": "Dominator008"
640
+ },
641
+ {
642
+ "name": "Domizio Demichelis"
643
+ },
644
+ {
645
+ "name": "Doug Blank"
646
+ },
647
+ {
648
+ "name": "Doug Wikle"
649
+ },
650
+ {
651
+ "name": "Drew Bratcher"
652
+ },
653
+ {
654
+ "name": "Drew Hintz"
655
+ },
656
+ {
657
+ "name": "Drew Khoury"
658
+ },
659
+ {
660
+ "name": "Drini Cami"
661
+ },
662
+ {
663
+ "name": "Dror BG"
664
+ },
665
+ {
666
+ "name": "duralog"
667
+ },
668
+ {
669
+ "name": "dwelle"
670
+ },
671
+ {
672
+ "name": "eborden"
673
+ },
674
+ {
675
+ "name": "edsharp"
676
+ },
677
+ {
678
+ "name": "ekhaled"
679
+ },
680
+ {
681
+ "name": "Elisée"
682
+ },
683
+ {
684
+ "name": "Emmanuel Schanzer"
685
+ },
686
+ {
687
+ "name": "Enam Mijbah Noor"
688
+ },
689
+ {
690
+ "name": "Eric Allam"
691
+ },
692
+ {
693
+ "name": "Eric Bogard"
694
+ },
695
+ {
696
+ "name": "Erik Welander"
697
+ },
698
+ {
699
+ "name": "eustas"
700
+ },
701
+ {
702
+ "name": "Fabien Dubosson"
703
+ },
704
+ {
705
+ "name": "Fabien O'Carroll"
706
+ },
707
+ {
708
+ "name": "Fabio Zendhi Nagao"
709
+ },
710
+ {
711
+ "name": "Faiza Alsaied"
712
+ },
713
+ {
714
+ "name": "Fauntleroy"
715
+ },
716
+ {
717
+ "name": "fbuchinger"
718
+ },
719
+ {
720
+ "name": "feizhang365"
721
+ },
722
+ {
723
+ "name": "Felipe Lalanne"
724
+ },
725
+ {
726
+ "name": "Felix Raab"
727
+ },
728
+ {
729
+ "name": "ficristo"
730
+ },
731
+ {
732
+ "name": "Filip Noetzel"
733
+ },
734
+ {
735
+ "name": "Filip Stollár"
736
+ },
737
+ {
738
+ "name": "Filype Pereira"
739
+ },
740
+ {
741
+ "name": "finalfantasia"
742
+ },
743
+ {
744
+ "name": "flack"
745
+ },
746
+ {
747
+ "name": "Florian Felten"
748
+ },
749
+ {
750
+ "name": "ForbesLindesay"
751
+ },
752
+ {
753
+ "name": "Forbes Lindesay"
754
+ },
755
+ {
756
+ "name": "Ford_Lawnmower"
757
+ },
758
+ {
759
+ "name": "Forrest Oliphant"
760
+ },
761
+ {
762
+ "name": "Franco Catena"
763
+ },
764
+ {
765
+ "name": "Frank Wiegand"
766
+ },
767
+ {
768
+ "name": "Fredrik Borg"
769
+ },
770
+ {
771
+ "name": "Gabriel Gheorghian"
772
+ },
773
+ {
774
+ "name": "Gabriel Horner"
775
+ },
776
+ {
777
+ "name": "Gabriel Nahmias"
778
+ },
779
+ {
780
+ "name": "galambalazs"
781
+ },
782
+ {
783
+ "name": "Gary Sheng"
784
+ },
785
+ {
786
+ "name": "Gautam Mehta"
787
+ },
788
+ {
789
+ "name": "Gavin Douglas"
790
+ },
791
+ {
792
+ "name": "gekkoe"
793
+ },
794
+ {
795
+ "name": "Geordie Hall"
796
+ },
797
+ {
798
+ "name": "George Stephanis"
799
+ },
800
+ {
801
+ "name": "geowarin"
802
+ },
803
+ {
804
+ "name": "Gerard Braad"
805
+ },
806
+ {
807
+ "name": "Gergely Hegykozi"
808
+ },
809
+ {
810
+ "name": "Giovanni Calò"
811
+ },
812
+ {
813
+ "name": "Glebov Boris"
814
+ },
815
+ {
816
+ "name": "Glenn Jorde"
817
+ },
818
+ {
819
+ "name": "Glenn Ruehle"
820
+ },
821
+ {
822
+ "name": "goldsmcb"
823
+ },
824
+ {
825
+ "name": "Golevka"
826
+ },
827
+ {
828
+ "name": "Google LLC"
829
+ },
830
+ {
831
+ "name": "Gordon Smith"
832
+ },
833
+ {
834
+ "name": "Grant Skinner"
835
+ },
836
+ {
837
+ "name": "greengiant"
838
+ },
839
+ {
840
+ "name": "Gregory Koberger"
841
+ },
842
+ {
843
+ "name": "Grzegorz Mazur"
844
+ },
845
+ {
846
+ "name": "Guan Gui"
847
+ },
848
+ {
849
+ "name": "Guillaume Massé"
850
+ },
851
+ {
852
+ "name": "Guillaume Massé"
853
+ },
854
+ {
855
+ "name": "guraga"
856
+ },
857
+ {
858
+ "name": "Gustavo Rodrigues"
859
+ },
860
+ {
861
+ "name": "Hakan Tunc"
862
+ },
863
+ {
864
+ "name": "Hans Engel"
865
+ },
866
+ {
867
+ "name": "Harald Schilly"
868
+ },
869
+ {
870
+ "name": "Hardest"
871
+ },
872
+ {
873
+ "name": "Harshvardhan Gupta"
874
+ },
875
+ {
876
+ "name": "Hasan Karahan"
877
+ },
878
+ {
879
+ "name": "Heanes"
880
+ },
881
+ {
882
+ "name": "Hector Oswaldo Caballero"
883
+ },
884
+ {
885
+ "name": "Hélio"
886
+ },
887
+ {
888
+ "name": "Hendrik Wallbaum"
889
+ },
890
+ {
891
+ "name": "Henrik Haugbølle"
892
+ },
893
+ {
894
+ "name": "Herculano Campos"
895
+ },
896
+ {
897
+ "name": "hidaiy"
898
+ },
899
+ {
900
+ "name": "Hiroyuki Makino"
901
+ },
902
+ {
903
+ "name": "hitsthings"
904
+ },
905
+ {
906
+ "name": "Hocdoc"
907
+ },
908
+ {
909
+ "name": "Hugues Malphettes"
910
+ },
911
+ {
912
+ "name": "Ian Beck"
913
+ },
914
+ {
915
+ "name": "Ian Davies"
916
+ },
917
+ {
918
+ "name": "Ian Dickinson"
919
+ },
920
+ {
921
+ "name": "Ian Rose"
922
+ },
923
+ {
924
+ "name": "Ian Wehrman"
925
+ },
926
+ {
927
+ "name": "Ian Wetherbee"
928
+ },
929
+ {
930
+ "name": "Ice White"
931
+ },
932
+ {
933
+ "name": "ICHIKAWA, Yuji"
934
+ },
935
+ {
936
+ "name": "idleberg"
937
+ },
938
+ {
939
+ "name": "ilvalle"
940
+ },
941
+ {
942
+ "name": "Ingo Richter"
943
+ },
944
+ {
945
+ "name": "Irakli Gozalishvili"
946
+ },
947
+ {
948
+ "name": "Ivan Kurnosov"
949
+ },
950
+ {
951
+ "name": "Ivoah"
952
+ },
953
+ {
954
+ "name": "Jacob Lee"
955
+ },
956
+ {
957
+ "name": "Jaimin"
958
+ },
959
+ {
960
+ "name": "Jake Peyser"
961
+ },
962
+ {
963
+ "name": "Jakob Miland"
964
+ },
965
+ {
966
+ "name": "Jakub Vrana"
967
+ },
968
+ {
969
+ "name": "Jakub Vrána"
970
+ },
971
+ {
972
+ "name": "James Campos"
973
+ },
974
+ {
975
+ "name": "James Howard"
976
+ },
977
+ {
978
+ "name": "James Thorne"
979
+ },
980
+ {
981
+ "name": "Jamie Hill"
982
+ },
983
+ {
984
+ "name": "Jamie Morris"
985
+ },
986
+ {
987
+ "name": "Jan Jongboom"
988
+ },
989
+ {
990
+ "name": "jankeromnes"
991
+ },
992
+ {
993
+ "name": "Jan Keromnes"
994
+ },
995
+ {
996
+ "name": "Jan Odvarko"
997
+ },
998
+ {
999
+ "name": "Jan Schär"
1000
+ },
1001
+ {
1002
+ "name": "Jan T. Sott"
1003
+ },
1004
+ {
1005
+ "name": "Jared Dean"
1006
+ },
1007
+ {
1008
+ "name": "Jared Forsyth"
1009
+ },
1010
+ {
1011
+ "name": "Jared Jacobs"
1012
+ },
1013
+ {
1014
+ "name": "Jason"
1015
+ },
1016
+ {
1017
+ "name": "Jason Barnabe"
1018
+ },
1019
+ {
1020
+ "name": "Jason Grout"
1021
+ },
1022
+ {
1023
+ "name": "Jason Johnston"
1024
+ },
1025
+ {
1026
+ "name": "Jason San Jose"
1027
+ },
1028
+ {
1029
+ "name": "Jason Siefken"
1030
+ },
1031
+ {
1032
+ "name": "Jayaprabhakar"
1033
+ },
1034
+ {
1035
+ "name": "Jaydeep Solanki"
1036
+ },
1037
+ {
1038
+ "name": "Jean Boussier"
1039
+ },
1040
+ {
1041
+ "name": "Jeff Blaisdell"
1042
+ },
1043
+ {
1044
+ "name": "Jeff Hanke"
1045
+ },
1046
+ {
1047
+ "name": "Jeff Jenkins"
1048
+ },
1049
+ {
1050
+ "name": "jeffkenton"
1051
+ },
1052
+ {
1053
+ "name": "Jeff Pickhardt"
1054
+ },
1055
+ {
1056
+ "name": "jem",
1057
+ "url": "graphite"
1058
+ },
1059
+ {
1060
+ "name": "Jeremy Parmenter"
1061
+ },
1062
+ {
1063
+ "name": "Jim"
1064
+ },
1065
+ {
1066
+ "name": "Jim Avery"
1067
+ },
1068
+ {
1069
+ "name": "jkaplon"
1070
+ },
1071
+ {
1072
+ "name": "JobJob"
1073
+ },
1074
+ {
1075
+ "name": "jochenberger"
1076
+ },
1077
+ {
1078
+ "name": "Jochen Berger"
1079
+ },
1080
+ {
1081
+ "name": "Joel Einbinder"
1082
+ },
1083
+ {
1084
+ "name": "joelpinheiro"
1085
+ },
1086
+ {
1087
+ "name": "Johan Ask"
1088
+ },
1089
+ {
1090
+ "name": "John Connor"
1091
+ },
1092
+ {
1093
+ "name": "John-David Dalton"
1094
+ },
1095
+ {
1096
+ "name": "John Engler"
1097
+ },
1098
+ {
1099
+ "name": "John Lees-Miller"
1100
+ },
1101
+ {
1102
+ "name": "John Snelson"
1103
+ },
1104
+ {
1105
+ "name": "John Van Der Loo"
1106
+ },
1107
+ {
1108
+ "name": "Jon Ander Peñalba"
1109
+ },
1110
+ {
1111
+ "name": "Jonas Döbertin"
1112
+ },
1113
+ {
1114
+ "name": "Jonas Helfer"
1115
+ },
1116
+ {
1117
+ "name": "Jonathan Hart"
1118
+ },
1119
+ {
1120
+ "name": "Jonathan Malmaud"
1121
+ },
1122
+ {
1123
+ "name": "Jon Gacnik"
1124
+ },
1125
+ {
1126
+ "name": "jongalloway"
1127
+ },
1128
+ {
1129
+ "name": "Jon Malmaud"
1130
+ },
1131
+ {
1132
+ "name": "Jon Sangster"
1133
+ },
1134
+ {
1135
+ "name": "Joost-Wim Boekesteijn"
1136
+ },
1137
+ {
1138
+ "name": "Joseph Pecoraro"
1139
+ },
1140
+ {
1141
+ "name": "Josh Barnes"
1142
+ },
1143
+ {
1144
+ "name": "Josh Cohen"
1145
+ },
1146
+ {
1147
+ "name": "Josh Soref"
1148
+ },
1149
+ {
1150
+ "name": "Joshua Newman"
1151
+ },
1152
+ {
1153
+ "name": "Josh Watzman"
1154
+ },
1155
+ {
1156
+ "name": "jots"
1157
+ },
1158
+ {
1159
+ "name": "jsoojeon"
1160
+ },
1161
+ {
1162
+ "name": "ju1ius"
1163
+ },
1164
+ {
1165
+ "name": "Juan Benavides Romero"
1166
+ },
1167
+ {
1168
+ "name": "Jucovschi Constantin"
1169
+ },
1170
+ {
1171
+ "name": "Juho Vuori"
1172
+ },
1173
+ {
1174
+ "name": "Julien CROUZET"
1175
+ },
1176
+ {
1177
+ "name": "Julien Rebetez"
1178
+ },
1179
+ {
1180
+ "name": "Justin Andresen"
1181
+ },
1182
+ {
1183
+ "name": "Justin Hileman"
1184
+ },
1185
+ {
1186
+ "name": "jwallers@gmail.com"
1187
+ },
1188
+ {
1189
+ "name": "kaniga"
1190
+ },
1191
+ {
1192
+ "name": "karevn"
1193
+ },
1194
+ {
1195
+ "name": "Karol"
1196
+ },
1197
+ {
1198
+ "name": "Kayur Patel"
1199
+ },
1200
+ {
1201
+ "name": "Kazuhito Hokamura"
1202
+ },
1203
+ {
1204
+ "name": "Ken Newman"
1205
+ },
1206
+ {
1207
+ "name": "ken restivo"
1208
+ },
1209
+ {
1210
+ "name": "Ken Rockot"
1211
+ },
1212
+ {
1213
+ "name": "Kevin Earls"
1214
+ },
1215
+ {
1216
+ "name": "Kevin Kwok"
1217
+ },
1218
+ {
1219
+ "name": "Kevin Muret"
1220
+ },
1221
+ {
1222
+ "name": "Kevin Sawicki"
1223
+ },
1224
+ {
1225
+ "name": "Kevin Ushey"
1226
+ },
1227
+ {
1228
+ "name": "Kier Darby"
1229
+ },
1230
+ {
1231
+ "name": "Klaus Silveira"
1232
+ },
1233
+ {
1234
+ "name": "Koh Zi Han, Cliff"
1235
+ },
1236
+ {
1237
+ "name": "komakino"
1238
+ },
1239
+ {
1240
+ "name": "Konstantin Lopuhin"
1241
+ },
1242
+ {
1243
+ "name": "koops"
1244
+ },
1245
+ {
1246
+ "name": "Kris Ciccarello"
1247
+ },
1248
+ {
1249
+ "name": "ks-ifware"
1250
+ },
1251
+ {
1252
+ "name": "kubelsmieci"
1253
+ },
1254
+ {
1255
+ "name": "KwanEsq"
1256
+ },
1257
+ {
1258
+ "name": "Kyle Kelley"
1259
+ },
1260
+ {
1261
+ "name": "KyleMcNutt"
1262
+ },
1263
+ {
1264
+ "name": "Lanfei"
1265
+ },
1266
+ {
1267
+ "name": "Lanny"
1268
+ },
1269
+ {
1270
+ "name": "laobubu"
1271
+ },
1272
+ {
1273
+ "name": "Laszlo Vidacs"
1274
+ },
1275
+ {
1276
+ "name": "leaf corcoran"
1277
+ },
1278
+ {
1279
+ "name": "Lemmon"
1280
+ },
1281
+ {
1282
+ "name": "Leonid Khachaturov"
1283
+ },
1284
+ {
1285
+ "name": "Leon Sorokin"
1286
+ },
1287
+ {
1288
+ "name": "Leonya Khachaturov"
1289
+ },
1290
+ {
1291
+ "name": "Liam Newman"
1292
+ },
1293
+ {
1294
+ "name": "Libo Cannici"
1295
+ },
1296
+ {
1297
+ "name": "Lior Goldberg"
1298
+ },
1299
+ {
1300
+ "name": "Lior Shub"
1301
+ },
1302
+ {
1303
+ "name": "LloydMilligan"
1304
+ },
1305
+ {
1306
+ "name": "LM"
1307
+ },
1308
+ {
1309
+ "name": "lochel"
1310
+ },
1311
+ {
1312
+ "name": "Lorenzo Simionato"
1313
+ },
1314
+ {
1315
+ "name": "Lorenzo Stoakes"
1316
+ },
1317
+ {
1318
+ "name": "Louis Mauchet"
1319
+ },
1320
+ {
1321
+ "name": "Luca Fabbri"
1322
+ },
1323
+ {
1324
+ "name": "Luciano Longo"
1325
+ },
1326
+ {
1327
+ "name": "Lu Fangjian"
1328
+ },
1329
+ {
1330
+ "name": "Luke Browning"
1331
+ },
1332
+ {
1333
+ "name": "Luke Granger-Brown"
1334
+ },
1335
+ {
1336
+ "name": "Luke Stagner"
1337
+ },
1338
+ {
1339
+ "name": "lynschinzer"
1340
+ },
1341
+ {
1342
+ "name": "M1cha"
1343
+ },
1344
+ {
1345
+ "name": "Madhura Jayaratne"
1346
+ },
1347
+ {
1348
+ "name": "Maksim Lin"
1349
+ },
1350
+ {
1351
+ "name": "Maksym Taran"
1352
+ },
1353
+ {
1354
+ "name": "Malay Majithia"
1355
+ },
1356
+ {
1357
+ "name": "Manideep"
1358
+ },
1359
+ {
1360
+ "name": "Manuel Rego Casasnovas"
1361
+ },
1362
+ {
1363
+ "name": "Marat Dreizin"
1364
+ },
1365
+ {
1366
+ "name": "Marcel Gerber"
1367
+ },
1368
+ {
1369
+ "name": "Marcelo Camargo"
1370
+ },
1371
+ {
1372
+ "name": "Marco Aurélio"
1373
+ },
1374
+ {
1375
+ "name": "Marco Munizaga"
1376
+ },
1377
+ {
1378
+ "name": "Marcus Bointon"
1379
+ },
1380
+ {
1381
+ "name": "Marek Rudnicki"
1382
+ },
1383
+ {
1384
+ "name": "Marijn Haverbeke"
1385
+ },
1386
+ {
1387
+ "name": "Mário Gonçalves"
1388
+ },
1389
+ {
1390
+ "name": "Mario Pietsch"
1391
+ },
1392
+ {
1393
+ "name": "Mark Anderson"
1394
+ },
1395
+ {
1396
+ "name": "Mark Lentczner"
1397
+ },
1398
+ {
1399
+ "name": "Marko Bonaci"
1400
+ },
1401
+ {
1402
+ "name": "Mark Peace"
1403
+ },
1404
+ {
1405
+ "name": "Markus Bordihn"
1406
+ },
1407
+ {
1408
+ "name": "Markus Olsson"
1409
+ },
1410
+ {
1411
+ "name": "Martin Balek"
1412
+ },
1413
+ {
1414
+ "name": "Martín Gaitán"
1415
+ },
1416
+ {
1417
+ "name": "Martin Hasoň"
1418
+ },
1419
+ {
1420
+ "name": "Martin Hunt"
1421
+ },
1422
+ {
1423
+ "name": "Martin Laine"
1424
+ },
1425
+ {
1426
+ "name": "Martin Zagora"
1427
+ },
1428
+ {
1429
+ "name": "Mason Malone"
1430
+ },
1431
+ {
1432
+ "name": "Mateusz Paprocki"
1433
+ },
1434
+ {
1435
+ "name": "Mathias Bynens"
1436
+ },
1437
+ {
1438
+ "name": "mats cronqvist"
1439
+ },
1440
+ {
1441
+ "name": "Matt Gaide"
1442
+ },
1443
+ {
1444
+ "name": "Matthew Bauer"
1445
+ },
1446
+ {
1447
+ "name": "Matthew Beale"
1448
+ },
1449
+ {
1450
+ "name": "matthewhayes"
1451
+ },
1452
+ {
1453
+ "name": "Matthew Rathbone"
1454
+ },
1455
+ {
1456
+ "name": "Matthew Suozzo"
1457
+ },
1458
+ {
1459
+ "name": "Matthias Bussonnier"
1460
+ },
1461
+ {
1462
+ "name": "Matthias BUSSONNIER"
1463
+ },
1464
+ {
1465
+ "name": "Matt MacPherson"
1466
+ },
1467
+ {
1468
+ "name": "Matt McDonald"
1469
+ },
1470
+ {
1471
+ "name": "Matt Pass"
1472
+ },
1473
+ {
1474
+ "name": "Matt Sacks"
1475
+ },
1476
+ {
1477
+ "name": "mauricio"
1478
+ },
1479
+ {
1480
+ "name": "Maximilian Hils"
1481
+ },
1482
+ {
1483
+ "name": "Maxim Kraev"
1484
+ },
1485
+ {
1486
+ "name": "Max Kirsch"
1487
+ },
1488
+ {
1489
+ "name": "Max Schaefer"
1490
+ },
1491
+ {
1492
+ "name": "Max Xiantu"
1493
+ },
1494
+ {
1495
+ "name": "mbarkhau"
1496
+ },
1497
+ {
1498
+ "name": "McBrainy"
1499
+ },
1500
+ {
1501
+ "name": "mce2"
1502
+ },
1503
+ {
1504
+ "name": "melpon"
1505
+ },
1506
+ {
1507
+ "name": "meshuamam"
1508
+ },
1509
+ {
1510
+ "name": "Metatheos"
1511
+ },
1512
+ {
1513
+ "name": "Micah Dubinko"
1514
+ },
1515
+ {
1516
+ "name": "Michael"
1517
+ },
1518
+ {
1519
+ "name": "Michael Goderbauer"
1520
+ },
1521
+ {
1522
+ "name": "Michael Grey"
1523
+ },
1524
+ {
1525
+ "name": "Michael Kaminsky"
1526
+ },
1527
+ {
1528
+ "name": "Michael Lehenbauer"
1529
+ },
1530
+ {
1531
+ "name": "Michael Walker"
1532
+ },
1533
+ {
1534
+ "name": "Michael Zhou"
1535
+ },
1536
+ {
1537
+ "name": "Michal Čihař"
1538
+ },
1539
+ {
1540
+ "name": "Michal Dorner"
1541
+ },
1542
+ {
1543
+ "name": "Michal Kapiczynski"
1544
+ },
1545
+ {
1546
+ "name": "Mighty Guava"
1547
+ },
1548
+ {
1549
+ "name": "Miguel Castillo"
1550
+ },
1551
+ {
1552
+ "name": "mihailik"
1553
+ },
1554
+ {
1555
+ "name": "Mika Andrianarijaona"
1556
+ },
1557
+ {
1558
+ "name": "Mike"
1559
+ },
1560
+ {
1561
+ "name": "Mike Bostock"
1562
+ },
1563
+ {
1564
+ "name": "Mike Brevoort"
1565
+ },
1566
+ {
1567
+ "name": "Mike Diaz"
1568
+ },
1569
+ {
1570
+ "name": "Mike Ivanov"
1571
+ },
1572
+ {
1573
+ "name": "Mike Kadin"
1574
+ },
1575
+ {
1576
+ "name": "Mike Kobit"
1577
+ },
1578
+ {
1579
+ "name": "Milan Szekely"
1580
+ },
1581
+ {
1582
+ "name": "MinRK"
1583
+ },
1584
+ {
1585
+ "name": "Miraculix87"
1586
+ },
1587
+ {
1588
+ "name": "misfo"
1589
+ },
1590
+ {
1591
+ "name": "mkaminsky11"
1592
+ },
1593
+ {
1594
+ "name": "mloginov"
1595
+ },
1596
+ {
1597
+ "name": "Moritz Schubotz",
1598
+ "url": "physikerwelt"
1599
+ },
1600
+ {
1601
+ "name": "Moritz Schwörer"
1602
+ },
1603
+ {
1604
+ "name": "Moshe Wajnberg"
1605
+ },
1606
+ {
1607
+ "name": "mps"
1608
+ },
1609
+ {
1610
+ "name": "ms"
1611
+ },
1612
+ {
1613
+ "name": "mtaran-google"
1614
+ },
1615
+ {
1616
+ "name": "Mu-An Chiou"
1617
+ },
1618
+ {
1619
+ "name": "Mu-An ✌️ Chiou"
1620
+ },
1621
+ {
1622
+ "name": "mzabuawala"
1623
+ },
1624
+ {
1625
+ "name": "Narciso Jaramillo"
1626
+ },
1627
+ {
1628
+ "name": "Nathan Williams"
1629
+ },
1630
+ {
1631
+ "name": "ndr"
1632
+ },
1633
+ {
1634
+ "name": "Neil Anderson"
1635
+ },
1636
+ {
1637
+ "name": "neon-dev"
1638
+ },
1639
+ {
1640
+ "name": "nerbert"
1641
+ },
1642
+ {
1643
+ "name": "NetworkNode"
1644
+ },
1645
+ {
1646
+ "name": "nextrevision"
1647
+ },
1648
+ {
1649
+ "name": "ngn"
1650
+ },
1651
+ {
1652
+ "name": "nguillaumin"
1653
+ },
1654
+ {
1655
+ "name": "Ng Zhi An"
1656
+ },
1657
+ {
1658
+ "name": "Nicholas Bollweg"
1659
+ },
1660
+ {
1661
+ "name": "Nicholas Bollweg",
1662
+ "url": "Nick"
1663
+ },
1664
+ {
1665
+ "name": "NickKolok"
1666
+ },
1667
+ {
1668
+ "name": "Nick Kreeger"
1669
+ },
1670
+ {
1671
+ "name": "Nick Small"
1672
+ },
1673
+ {
1674
+ "name": "Nicolas Kick"
1675
+ },
1676
+ {
1677
+ "name": "Nicolò Ribaudo"
1678
+ },
1679
+ {
1680
+ "name": "Niels van Groningen"
1681
+ },
1682
+ {
1683
+ "name": "nightwing"
1684
+ },
1685
+ {
1686
+ "name": "Nikita Beloglazov"
1687
+ },
1688
+ {
1689
+ "name": "Nikita Vasilyev"
1690
+ },
1691
+ {
1692
+ "name": "Nikolaj Kappler"
1693
+ },
1694
+ {
1695
+ "name": "Nikolay Kostov"
1696
+ },
1697
+ {
1698
+ "name": "nilp0inter"
1699
+ },
1700
+ {
1701
+ "name": "Nisarg Jhaveri"
1702
+ },
1703
+ {
1704
+ "name": "nlwillia"
1705
+ },
1706
+ {
1707
+ "name": "noragrossman"
1708
+ },
1709
+ {
1710
+ "name": "Norman Rzepka"
1711
+ },
1712
+ {
1713
+ "name": "opl-"
1714
+ },
1715
+ {
1716
+ "name": "Oreoluwa Onatemowo"
1717
+ },
1718
+ {
1719
+ "name": "Oskar Segersvärd"
1720
+ },
1721
+ {
1722
+ "name": "overdodactyl"
1723
+ },
1724
+ {
1725
+ "name": "pablo"
1726
+ },
1727
+ {
1728
+ "name": "pabloferz"
1729
+ },
1730
+ {
1731
+ "name": "Pablo Zubieta"
1732
+ },
1733
+ {
1734
+ "name": "paddya"
1735
+ },
1736
+ {
1737
+ "name": "Page"
1738
+ },
1739
+ {
1740
+ "name": "paladox"
1741
+ },
1742
+ {
1743
+ "name": "Panupong Pasupat"
1744
+ },
1745
+ {
1746
+ "name": "paris"
1747
+ },
1748
+ {
1749
+ "name": "Paris"
1750
+ },
1751
+ {
1752
+ "name": "Paris Kasidiaris"
1753
+ },
1754
+ {
1755
+ "name": "Patil Arpith"
1756
+ },
1757
+ {
1758
+ "name": "Patrick Stoica"
1759
+ },
1760
+ {
1761
+ "name": "Patrick Strawderman"
1762
+ },
1763
+ {
1764
+ "name": "Paul Garvin"
1765
+ },
1766
+ {
1767
+ "name": "Paul Ivanov"
1768
+ },
1769
+ {
1770
+ "name": "Paul Masson"
1771
+ },
1772
+ {
1773
+ "name": "Pavel"
1774
+ },
1775
+ {
1776
+ "name": "Pavel Feldman"
1777
+ },
1778
+ {
1779
+ "name": "Pavel Petržela"
1780
+ },
1781
+ {
1782
+ "name": "Pavel Strashkin"
1783
+ },
1784
+ {
1785
+ "name": "Paweł Bartkiewicz"
1786
+ },
1787
+ {
1788
+ "name": "peteguhl"
1789
+ },
1790
+ {
1791
+ "name": "peter"
1792
+ },
1793
+ {
1794
+ "name": "Peter Flynn"
1795
+ },
1796
+ {
1797
+ "name": "peterkroon"
1798
+ },
1799
+ {
1800
+ "name": "Peter Kroon"
1801
+ },
1802
+ {
1803
+ "name": "Philipp A"
1804
+ },
1805
+ {
1806
+ "name": "Philipp Markovics"
1807
+ },
1808
+ {
1809
+ "name": "Philip Stadermann"
1810
+ },
1811
+ {
1812
+ "name": "Pi Delport"
1813
+ },
1814
+ {
1815
+ "name": "Pierre Gerold"
1816
+ },
1817
+ {
1818
+ "name": "Pieter Ouwerkerk"
1819
+ },
1820
+ {
1821
+ "name": "Pontus Melke"
1822
+ },
1823
+ {
1824
+ "name": "prasanthj"
1825
+ },
1826
+ {
1827
+ "name": "Prasanth J"
1828
+ },
1829
+ {
1830
+ "name": "Prayag Verma"
1831
+ },
1832
+ {
1833
+ "name": "Prendota"
1834
+ },
1835
+ {
1836
+ "name": "Qiang Li"
1837
+ },
1838
+ {
1839
+ "name": "Radek Piórkowski"
1840
+ },
1841
+ {
1842
+ "name": "Rahul"
1843
+ },
1844
+ {
1845
+ "name": "Rahul Anand"
1846
+ },
1847
+ {
1848
+ "name": "ramwin1"
1849
+ },
1850
+ {
1851
+ "name": "Randall Mason"
1852
+ },
1853
+ {
1854
+ "name": "Randy Burden"
1855
+ },
1856
+ {
1857
+ "name": "Randy Edmunds"
1858
+ },
1859
+ {
1860
+ "name": "Randy Luecke"
1861
+ },
1862
+ {
1863
+ "name": "Raphael Amorim"
1864
+ },
1865
+ {
1866
+ "name": "Rasmus Erik Voel Jensen"
1867
+ },
1868
+ {
1869
+ "name": "Rasmus Schultz"
1870
+ },
1871
+ {
1872
+ "name": "Raymond Hill"
1873
+ },
1874
+ {
1875
+ "name": "ray ratchup"
1876
+ },
1877
+ {
1878
+ "name": "Ray Ratchup"
1879
+ },
1880
+ {
1881
+ "name": "Remi Nyborg"
1882
+ },
1883
+ {
1884
+ "name": "Renaud Durlin"
1885
+ },
1886
+ {
1887
+ "name": "Reynold Xin"
1888
+ },
1889
+ {
1890
+ "name": "Richard Denton"
1891
+ },
1892
+ {
1893
+ "name": "Richard van der Meer"
1894
+ },
1895
+ {
1896
+ "name": "Richard Z.H. Wang"
1897
+ },
1898
+ {
1899
+ "name": "Rishi Goomar"
1900
+ },
1901
+ {
1902
+ "name": "Robert Brignull"
1903
+ },
1904
+ {
1905
+ "name": "Robert Crossfield"
1906
+ },
1907
+ {
1908
+ "name": "Roberto Abdelkader Martínez Pérez"
1909
+ },
1910
+ {
1911
+ "name": "robertop23"
1912
+ },
1913
+ {
1914
+ "name": "Robert Plummer"
1915
+ },
1916
+ {
1917
+ "name": "Rrandom"
1918
+ },
1919
+ {
1920
+ "name": "Rrrandom"
1921
+ },
1922
+ {
1923
+ "name": "Ruslan Osmanov"
1924
+ },
1925
+ {
1926
+ "name": "Ryan Petrello"
1927
+ },
1928
+ {
1929
+ "name": "Ryan Prior"
1930
+ },
1931
+ {
1932
+ "name": "ryu-sato"
1933
+ },
1934
+ {
1935
+ "name": "sabaca"
1936
+ },
1937
+ {
1938
+ "name": "Sam Lee"
1939
+ },
1940
+ {
1941
+ "name": "Sam Rawlins"
1942
+ },
1943
+ {
1944
+ "name": "Samuel Ainsworth"
1945
+ },
1946
+ {
1947
+ "name": "Sam Wilson"
1948
+ },
1949
+ {
1950
+ "name": "sandeepshetty"
1951
+ },
1952
+ {
1953
+ "name": "Sander AKA Redsandro"
1954
+ },
1955
+ {
1956
+ "name": "Sander Verweij"
1957
+ },
1958
+ {
1959
+ "name": "santec"
1960
+ },
1961
+ {
1962
+ "name": "Sarah McAlear and Wenlin Zhang"
1963
+ },
1964
+ {
1965
+ "name": "Sascha Peilicke"
1966
+ },
1967
+ {
1968
+ "name": "satamas"
1969
+ },
1970
+ {
1971
+ "name": "satchmorun"
1972
+ },
1973
+ {
1974
+ "name": "sathyamoorthi"
1975
+ },
1976
+ {
1977
+ "name": "Saul Costa"
1978
+ },
1979
+ {
1980
+ "name": "S. Chris Colbert"
1981
+ },
1982
+ {
1983
+ "name": "SCLINIC\\jdecker"
1984
+ },
1985
+ {
1986
+ "name": "Scott Aikin"
1987
+ },
1988
+ {
1989
+ "name": "Scott Goodhew"
1990
+ },
1991
+ {
1992
+ "name": "Sebastian Wilzbach"
1993
+ },
1994
+ {
1995
+ "name": "Sebastian Zaha"
1996
+ },
1997
+ {
1998
+ "name": "Seren D"
1999
+ },
2000
+ {
2001
+ "name": "Sergey Goder"
2002
+ },
2003
+ {
2004
+ "name": "Sergey Tselovalnikov"
2005
+ },
2006
+ {
2007
+ "name": "Se-Won Kim"
2008
+ },
2009
+ {
2010
+ "name": "Shane Liesegang"
2011
+ },
2012
+ {
2013
+ "name": "shaund"
2014
+ },
2015
+ {
2016
+ "name": "shaun gilchrist"
2017
+ },
2018
+ {
2019
+ "name": "Shawn A"
2020
+ },
2021
+ {
2022
+ "name": "Shea Bunge"
2023
+ },
2024
+ {
2025
+ "name": "sheopory"
2026
+ },
2027
+ {
2028
+ "name": "Shil S"
2029
+ },
2030
+ {
2031
+ "name": "Shiv Deepak"
2032
+ },
2033
+ {
2034
+ "name": "Shmuel Englard"
2035
+ },
2036
+ {
2037
+ "name": "Shubham Jain"
2038
+ },
2039
+ {
2040
+ "name": "Siamak Mokhtari"
2041
+ },
2042
+ {
2043
+ "name": "silverwind"
2044
+ },
2045
+ {
2046
+ "name": "Simon Edwards"
2047
+ },
2048
+ {
2049
+ "name": "sinkuu"
2050
+ },
2051
+ {
2052
+ "name": "snasa"
2053
+ },
2054
+ {
2055
+ "name": "soliton4"
2056
+ },
2057
+ {
2058
+ "name": "sonson"
2059
+ },
2060
+ {
2061
+ "name": "Sorab Bisht"
2062
+ },
2063
+ {
2064
+ "name": "spastorelli"
2065
+ },
2066
+ {
2067
+ "name": "srajanpaliwal"
2068
+ },
2069
+ {
2070
+ "name": "Stanislav Oaserele"
2071
+ },
2072
+ {
2073
+ "name": "stan-z"
2074
+ },
2075
+ {
2076
+ "name": "Stas Kobzar"
2077
+ },
2078
+ {
2079
+ "name": "Stefan Borsje"
2080
+ },
2081
+ {
2082
+ "name": "Steffen Beyer"
2083
+ },
2084
+ {
2085
+ "name": "Steffen Bruchmann"
2086
+ },
2087
+ {
2088
+ "name": "Steffen Kowalski"
2089
+ },
2090
+ {
2091
+ "name": "Stephane Moore"
2092
+ },
2093
+ {
2094
+ "name": "Stephen Lavelle"
2095
+ },
2096
+ {
2097
+ "name": "Steve Champagne"
2098
+ },
2099
+ {
2100
+ "name": "Steve Hoover"
2101
+ },
2102
+ {
2103
+ "name": "Steve O'Hara"
2104
+ },
2105
+ {
2106
+ "name": "stoskov"
2107
+ },
2108
+ {
2109
+ "name": "Stu Kennedy"
2110
+ },
2111
+ {
2112
+ "name": "Sungho Kim"
2113
+ },
2114
+ {
2115
+ "name": "sverweij"
2116
+ },
2117
+ {
2118
+ "name": "Taha Jahangir"
2119
+ },
2120
+ {
2121
+ "name": "takamori"
2122
+ },
2123
+ {
2124
+ "name": "Tako Schotanus"
2125
+ },
2126
+ {
2127
+ "name": "Takuji Shimokawa"
2128
+ },
2129
+ {
2130
+ "name": "Takuya Matsuyama"
2131
+ },
2132
+ {
2133
+ "name": "Tarmil"
2134
+ },
2135
+ {
2136
+ "name": "TDaglis"
2137
+ },
2138
+ {
2139
+ "name": "tel"
2140
+ },
2141
+ {
2142
+ "name": "Tentone"
2143
+ },
2144
+ {
2145
+ "name": "tfjgeorge"
2146
+ },
2147
+ {
2148
+ "name": "Thaddee Tyl"
2149
+ },
2150
+ {
2151
+ "name": "thanasis"
2152
+ },
2153
+ {
2154
+ "name": "TheHowl"
2155
+ },
2156
+ {
2157
+ "name": "themrmax"
2158
+ },
2159
+ {
2160
+ "name": "think"
2161
+ },
2162
+ {
2163
+ "name": "Thomas Brouard"
2164
+ },
2165
+ {
2166
+ "name": "Thomas Dvornik"
2167
+ },
2168
+ {
2169
+ "name": "Thomas Kluyver"
2170
+ },
2171
+ {
2172
+ "name": "Thomas Schmid"
2173
+ },
2174
+ {
2175
+ "name": "Tim Alby"
2176
+ },
2177
+ {
2178
+ "name": "Tim Baumann"
2179
+ },
2180
+ {
2181
+ "name": "Timothy Farrell"
2182
+ },
2183
+ {
2184
+ "name": "Timothy Gu"
2185
+ },
2186
+ {
2187
+ "name": "Timothy Hatcher"
2188
+ },
2189
+ {
2190
+ "name": "Tobias Bertelsen"
2191
+ },
2192
+ {
2193
+ "name": "TobiasBg"
2194
+ },
2195
+ {
2196
+ "name": "Todd Berman"
2197
+ },
2198
+ {
2199
+ "name": "Todd Kennedy"
2200
+ },
2201
+ {
2202
+ "name": "Tomas-A"
2203
+ },
2204
+ {
2205
+ "name": "Tomas Varaneckas"
2206
+ },
2207
+ {
2208
+ "name": "Tom Erik Støwer"
2209
+ },
2210
+ {
2211
+ "name": "Tom Klancer"
2212
+ },
2213
+ {
2214
+ "name": "Tom MacWright"
2215
+ },
2216
+ {
2217
+ "name": "Tom McLaughlin"
2218
+ },
2219
+ {
2220
+ "name": "Tony Jian"
2221
+ },
2222
+ {
2223
+ "name": "tophf"
2224
+ },
2225
+ {
2226
+ "name": "totalamd"
2227
+ },
2228
+ {
2229
+ "name": "Travis Heppe"
2230
+ },
2231
+ {
2232
+ "name": "Triangle717"
2233
+ },
2234
+ {
2235
+ "name": "Tristan Tarrant"
2236
+ },
2237
+ {
2238
+ "name": "TSUYUSATO Kitsune"
2239
+ },
2240
+ {
2241
+ "name": "Tugrul Elmas"
2242
+ },
2243
+ {
2244
+ "name": "twifkak"
2245
+ },
2246
+ {
2247
+ "name": "Tyler Long"
2248
+ },
2249
+ {
2250
+ "name": "Vadzim Ramanenka"
2251
+ },
2252
+ {
2253
+ "name": "Vaibhav Sagar"
2254
+ },
2255
+ {
2256
+ "name": "VapidWorx"
2257
+ },
2258
+ {
2259
+ "name": "Vestimir Markov"
2260
+ },
2261
+ {
2262
+ "name": "vf"
2263
+ },
2264
+ {
2265
+ "name": "Victor Bocharsky"
2266
+ },
2267
+ {
2268
+ "name": "Vincent Woo"
2269
+ },
2270
+ {
2271
+ "name": "Volker Mische"
2272
+ },
2273
+ {
2274
+ "name": "vtripolitakis"
2275
+ },
2276
+ {
2277
+ "name": "Weiyan Shao"
2278
+ },
2279
+ {
2280
+ "name": "wenli"
2281
+ },
2282
+ {
2283
+ "name": "Wes Cossick"
2284
+ },
2285
+ {
2286
+ "name": "Wesley Wiser"
2287
+ },
2288
+ {
2289
+ "name": "Weston Ruter"
2290
+ },
2291
+ {
2292
+ "name": "Will Binns-Smith"
2293
+ },
2294
+ {
2295
+ "name": "Will Dean"
2296
+ },
2297
+ {
2298
+ "name": "William Jamieson"
2299
+ },
2300
+ {
2301
+ "name": "William Stein"
2302
+ },
2303
+ {
2304
+ "name": "Willy"
2305
+ },
2306
+ {
2307
+ "name": "Wojtek Ptak"
2308
+ },
2309
+ {
2310
+ "name": "wonderboyjon"
2311
+ },
2312
+ {
2313
+ "name": "Wu Cheng-Han"
2314
+ },
2315
+ {
2316
+ "name": "Xavier Mendez"
2317
+ },
2318
+ {
2319
+ "name": "Yassin N. Hassan"
2320
+ },
2321
+ {
2322
+ "name": "YNH Webdev"
2323
+ },
2324
+ {
2325
+ "name": "Yunchi Luo"
2326
+ },
2327
+ {
2328
+ "name": "Yuvi Panda"
2329
+ },
2330
+ {
2331
+ "name": "Yvonnick Esnault"
2332
+ },
2333
+ {
2334
+ "name": "Zac Anger"
2335
+ },
2336
+ {
2337
+ "name": "Zachary Dremann"
2338
+ },
2339
+ {
2340
+ "name": "Zeno Rocha"
2341
+ },
2342
+ {
2343
+ "name": "Zhang Hao"
2344
+ },
2345
+ {
2346
+ "name": "Ziv"
2347
+ },
2348
+ {
2349
+ "name": "zziuni"
2350
+ },
2351
+ {
2352
+ "name": "魏鹏刚"
2353
+ }
2354
+ ],
2355
+ "deprecated": false,
2356
+ "description": "Full-featured in-browser code editor",
2357
+ "devDependencies": {
2358
+ "blint": "^1",
2359
+ "node-static": "0.7.11",
2360
+ "phantomjs-prebuilt": "^2.1.12",
2361
+ "rollup": "^0.66.2",
2362
+ "rollup-plugin-buble": "^0.19.2",
2363
+ "rollup-watch": "^4.3.1"
2364
+ },
2365
+ "directories": {
2366
+ "lib": "./lib"
2367
+ },
2368
+ "homepage": "https://codemirror.net",
2369
+ "jspm": {
2370
+ "directories": {},
2371
+ "dependencies": {},
2372
+ "devDependencies": {}
2373
+ },
2374
+ "keywords": [
2375
+ "JavaScript",
2376
+ "CodeMirror",
2377
+ "Editor"
2378
+ ],
2379
+ "license": "MIT",
2380
+ "main": "lib/codemirror.js",
2381
+ "name": "codemirror",
2382
+ "repository": {
2383
+ "type": "git",
2384
+ "url": "git+https://github.com/codemirror/CodeMirror.git"
2385
+ },
2386
+ "scripts": {
2387
+ "build": "rollup -c",
2388
+ "lint": "bin/lint",
2389
+ "prepare": "npm run-script build",
2390
+ "test": "node ./test/run.js",
2391
+ "watch": "rollup -w -c"
2392
+ },
2393
+ "style": "lib/codemirror.css",
2394
+ "version": "5.41.0"
2395
+ }