opal 0.11.4 → 1.0.0.beta1

Sign up to get free protection for your applications and to get access to all the features.
Files changed (379) hide show
  1. checksums.yaml +4 -4
  2. data/.codeclimate.yml +42 -10
  3. data/.rubocop.yml +398 -0
  4. data/.rubocop_todo.yml +44 -0
  5. data/.travis.yml +28 -34
  6. data/CHANGELOG.md +363 -142
  7. data/CONTRIBUTING.md +3 -5
  8. data/Gemfile +17 -12
  9. data/Guardfile +0 -1
  10. data/HACKING.md +1 -35
  11. data/LICENSE +2 -2
  12. data/README.md +42 -13
  13. data/Rakefile +1 -4
  14. data/UNRELEASED.md +133 -0
  15. data/benchmark-ips/README.md +6 -0
  16. data/benchmark-ips/bm_block_vs_yield.rb +21 -0
  17. data/benchmark-ips/bm_js_symbols_vs_strings.rb +28 -0
  18. data/benchmark-ips/bm_while_true_vs_loop.rb +19 -0
  19. data/bin/console +14 -0
  20. data/bin/opal +0 -1
  21. data/bin/opal-benchmark-ips +8 -0
  22. data/bin/opal-mspec +9 -1
  23. data/bin/opal-repl +2 -1
  24. data/bin/rake +7 -0
  25. data/bin/setup +8 -0
  26. data/docs/compiled_ruby.md +89 -8
  27. data/docs/compiler.md +3 -20
  28. data/docs/jquery.md +44 -11
  29. data/docs/promises.md +1 -1
  30. data/docs/rails.md +16 -12
  31. data/docs/sinatra.md +15 -8
  32. data/docs/using_sprockets.md +16 -11
  33. data/examples/rack/config.ru +1 -0
  34. data/examples/sinatra/Gemfile +1 -0
  35. data/examples/sinatra/config.ru +2 -11
  36. data/exe/opal-repl +3 -11
  37. data/lib/opal.rb +1 -0
  38. data/lib/opal/ast/builder.rb +4 -1
  39. data/lib/opal/ast/node.rb +1 -0
  40. data/lib/opal/builder.rb +84 -63
  41. data/lib/opal/builder_processors.rb +41 -56
  42. data/lib/opal/cli.rb +33 -49
  43. data/lib/opal/cli_options.rb +27 -17
  44. data/lib/opal/cli_runners.rb +73 -16
  45. data/lib/opal/cli_runners/applescript.rb +4 -4
  46. data/lib/opal/cli_runners/chrome.rb +29 -17
  47. data/lib/opal/cli_runners/nashorn.rb +5 -4
  48. data/lib/opal/cli_runners/nodejs.rb +8 -6
  49. data/lib/opal/cli_runners/server.rb +12 -11
  50. data/lib/opal/compiler.rb +85 -103
  51. data/lib/opal/config.rb +3 -3
  52. data/lib/opal/deprecations.rb +2 -1
  53. data/lib/opal/eof_content.rb +2 -2
  54. data/lib/opal/erb.rb +8 -7
  55. data/lib/opal/errors.rb +72 -1
  56. data/lib/opal/fragment.rb +23 -3
  57. data/lib/opal/hike.rb +305 -0
  58. data/lib/opal/nodes.rb +5 -10
  59. data/lib/opal/nodes/arglist.rb +7 -6
  60. data/lib/opal/nodes/args.rb +36 -0
  61. data/lib/opal/nodes/args/arg.rb +22 -0
  62. data/lib/opal/nodes/args/arity_check.rb +151 -0
  63. data/lib/opal/nodes/args/ensure_kwargs_are_kwargs.rb +28 -0
  64. data/lib/opal/nodes/args/extract_block_arg.rb +34 -0
  65. data/lib/opal/nodes/args/extract_kwarg.rb +32 -0
  66. data/lib/opal/nodes/args/extract_kwargs.rb +28 -0
  67. data/lib/opal/nodes/args/extract_kwoptarg.rb +35 -0
  68. data/lib/opal/nodes/args/extract_kwrestarg.rb +35 -0
  69. data/lib/opal/nodes/args/extract_optarg.rb +35 -0
  70. data/lib/opal/nodes/args/extract_post_arg.rb +28 -0
  71. data/lib/opal/nodes/args/extract_post_optarg.rb +41 -0
  72. data/lib/opal/nodes/args/extract_restarg.rb +40 -0
  73. data/lib/opal/nodes/args/fake_arg.rb +26 -0
  74. data/lib/opal/nodes/args/initialize_iterarg.rb +28 -0
  75. data/lib/opal/nodes/args/initialize_shadowarg.rb +24 -0
  76. data/lib/opal/nodes/args/parameters.rb +63 -0
  77. data/lib/opal/nodes/args/prepare_post_args.rb +22 -0
  78. data/lib/opal/nodes/array.rb +9 -8
  79. data/lib/opal/nodes/base.rb +20 -11
  80. data/lib/opal/nodes/call.rb +24 -25
  81. data/lib/opal/nodes/call_special.rb +4 -3
  82. data/lib/opal/nodes/case.rb +24 -26
  83. data/lib/opal/nodes/class.rb +4 -5
  84. data/lib/opal/nodes/constants.rb +8 -7
  85. data/lib/opal/nodes/csend.rb +2 -3
  86. data/lib/opal/nodes/def.rb +28 -74
  87. data/lib/opal/nodes/defined.rb +36 -36
  88. data/lib/opal/nodes/definitions.rb +10 -7
  89. data/lib/opal/nodes/defs.rb +8 -16
  90. data/lib/opal/nodes/hash.rb +5 -4
  91. data/lib/opal/nodes/helpers.rb +8 -8
  92. data/lib/opal/nodes/if.rb +10 -8
  93. data/lib/opal/nodes/iter.rb +16 -103
  94. data/lib/opal/nodes/lambda.rb +18 -0
  95. data/lib/opal/nodes/literal.rb +29 -63
  96. data/lib/opal/nodes/logic.rb +25 -24
  97. data/lib/opal/nodes/masgn.rb +8 -6
  98. data/lib/opal/nodes/module.rb +4 -4
  99. data/lib/opal/nodes/node_with_args.rb +14 -208
  100. data/lib/opal/nodes/rescue.rb +32 -32
  101. data/lib/opal/nodes/runtime_helpers.rb +5 -4
  102. data/lib/opal/nodes/scope.rb +18 -29
  103. data/lib/opal/nodes/singleton_class.rb +3 -3
  104. data/lib/opal/nodes/super.rb +12 -18
  105. data/lib/opal/nodes/top.rb +10 -8
  106. data/lib/opal/nodes/variables.rb +6 -6
  107. data/lib/opal/nodes/while.rb +7 -6
  108. data/lib/opal/nodes/x_string.rb +139 -0
  109. data/lib/opal/nodes/yield.rb +10 -7
  110. data/lib/opal/parser.rb +9 -46
  111. data/lib/opal/parser/default_config.rb +50 -0
  112. data/lib/opal/parser/patch.rb +26 -0
  113. data/lib/opal/parser/source_buffer.rb +11 -0
  114. data/lib/opal/parser/with_c_lexer.rb +14 -0
  115. data/lib/opal/parser/with_ruby_lexer.rb +6 -0
  116. data/lib/opal/path_reader.rb +6 -5
  117. data/lib/opal/paths.rb +9 -6
  118. data/lib/opal/regexp_anchors.rb +6 -5
  119. data/lib/opal/rewriter.rb +7 -0
  120. data/lib/opal/rewriters/arguments.rb +58 -0
  121. data/lib/opal/rewriters/base.rb +32 -12
  122. data/lib/opal/rewriters/binary_operator_assignment.rb +20 -20
  123. data/lib/opal/rewriters/block_to_iter.rb +2 -1
  124. data/lib/opal/rewriters/break_finder.rb +2 -0
  125. data/lib/opal/rewriters/dot_js_syntax.rb +3 -2
  126. data/lib/opal/rewriters/dump_args.rb +28 -0
  127. data/lib/opal/rewriters/explicit_writer_return.rb +4 -3
  128. data/lib/opal/rewriters/for_rewriter.rb +12 -12
  129. data/lib/opal/rewriters/hashes/key_duplicates_rewriter.rb +2 -1
  130. data/lib/opal/rewriters/inline_args.rb +220 -0
  131. data/lib/opal/rewriters/js_reserved_words.rb +21 -17
  132. data/lib/opal/rewriters/logical_operator_assignment.rb +24 -14
  133. data/lib/opal/rewriters/mlhs_args.rb +128 -0
  134. data/lib/opal/rewriters/opal_engine_check.rb +11 -6
  135. data/lib/opal/rewriters/rubyspec/filters_rewriter.rb +3 -2
  136. data/lib/opal/server.rb +1 -0
  137. data/lib/opal/simple_server.rb +15 -23
  138. data/lib/opal/source_map.rb +7 -70
  139. data/lib/opal/source_map/file.rb +199 -0
  140. data/lib/opal/source_map/index.rb +83 -0
  141. data/lib/opal/source_map/map.rb +26 -0
  142. data/lib/opal/source_map/vlq.rb +98 -0
  143. data/lib/opal/util.rb +7 -5
  144. data/lib/opal/version.rb +2 -1
  145. data/lib/tilt/opal.rb +3 -3
  146. data/opal.gemspec +18 -9
  147. data/opal/corelib/array.rb +135 -117
  148. data/opal/corelib/array/pack.rb +446 -0
  149. data/opal/corelib/basic_object.rb +23 -9
  150. data/opal/corelib/boolean.rb +3 -3
  151. data/opal/corelib/class.rb +4 -10
  152. data/opal/corelib/comparable.rb +36 -23
  153. data/opal/corelib/complex.rb +108 -14
  154. data/opal/corelib/constants.rb +4 -4
  155. data/opal/corelib/enumerable.rb +132 -135
  156. data/opal/corelib/enumerator.rb +47 -50
  157. data/opal/corelib/error.rb +65 -8
  158. data/opal/corelib/file.rb +37 -32
  159. data/opal/corelib/hash.rb +90 -21
  160. data/opal/corelib/helpers.rb +7 -6
  161. data/opal/corelib/kernel.rb +53 -586
  162. data/opal/corelib/kernel/format.rb +544 -0
  163. data/opal/corelib/marshal.rb +1 -13
  164. data/opal/corelib/marshal/read_buffer.rb +20 -23
  165. data/opal/corelib/marshal/write_buffer.rb +23 -15
  166. data/opal/corelib/math.rb +12 -16
  167. data/opal/corelib/method.rb +5 -3
  168. data/opal/corelib/module.rb +80 -109
  169. data/opal/corelib/nil.rb +2 -2
  170. data/opal/corelib/number.rb +177 -43
  171. data/opal/corelib/numeric.rb +22 -16
  172. data/opal/corelib/pack_unpack/format_string_parser.rb +135 -0
  173. data/opal/corelib/proc.rb +3 -4
  174. data/opal/corelib/process.rb +1 -1
  175. data/opal/corelib/random.rb +24 -16
  176. data/opal/corelib/random/MersenneTwister.js +137 -0
  177. data/opal/corelib/random/math_random.js.rb +9 -0
  178. data/opal/corelib/random/mersenne_twister.js.rb +13 -0
  179. data/opal/corelib/random/seedrandom.js.rb +12 -0
  180. data/opal/corelib/range.rb +25 -26
  181. data/opal/corelib/rational.rb +57 -17
  182. data/opal/corelib/regexp.rb +39 -43
  183. data/opal/corelib/runtime.js +806 -683
  184. data/opal/corelib/string.rb +213 -112
  185. data/opal/corelib/string/encoding.rb +14 -17
  186. data/opal/corelib/string/unpack.rb +793 -0
  187. data/opal/corelib/struct.rb +40 -24
  188. data/opal/corelib/time.rb +14 -15
  189. data/opal/corelib/unsupported.rb +26 -4
  190. data/opal/opal.rb +2 -1
  191. data/opal/opal/full.rb +2 -0
  192. data/stdlib/base64.rb +1 -1
  193. data/stdlib/bigdecimal.rb +11 -13
  194. data/stdlib/buffer.rb +9 -8
  195. data/stdlib/buffer/array.rb +46 -48
  196. data/stdlib/buffer/view.rb +85 -47
  197. data/stdlib/console.rb +18 -18
  198. data/stdlib/date.rb +85 -66
  199. data/stdlib/delegate.rb +2 -2
  200. data/stdlib/e2mmap.rb +176 -0
  201. data/stdlib/encoding.rb +1 -1
  202. data/stdlib/erb.rb +1 -1
  203. data/stdlib/forwardable.rb +14 -14
  204. data/stdlib/json.rb +1 -2
  205. data/stdlib/logger.rb +112 -0
  206. data/stdlib/math.rb +1 -1
  207. data/stdlib/matrix.rb +2169 -0
  208. data/stdlib/matrix/eigenvalue_decomposition.rb +883 -0
  209. data/stdlib/matrix/lup_decomposition.rb +219 -0
  210. data/stdlib/nashorn/file.rb +7 -9
  211. data/stdlib/native.rb +69 -63
  212. data/stdlib/nodejs.rb +3 -0
  213. data/stdlib/nodejs/dir.rb +25 -4
  214. data/stdlib/nodejs/env.rb +40 -0
  215. data/stdlib/nodejs/file.rb +184 -34
  216. data/stdlib/nodejs/fileutils.rb +4 -4
  217. data/stdlib/nodejs/io.rb +4 -46
  218. data/stdlib/nodejs/irb.rb +27 -29
  219. data/stdlib/nodejs/kernel.rb +2 -11
  220. data/stdlib/nodejs/node_modules/balanced-match/.npmignore +5 -0
  221. data/stdlib/nodejs/node_modules/balanced-match/LICENSE.md +21 -0
  222. data/stdlib/nodejs/node_modules/{glob/node_modules/minimatch/node_modules/brace-expansion/node_modules/balanced-match → balanced-match}/README.md +13 -2
  223. data/stdlib/nodejs/node_modules/balanced-match/index.js +59 -0
  224. data/stdlib/nodejs/node_modules/{glob/node_modules/minimatch/node_modules/brace-expansion/node_modules/balanced-match → balanced-match}/package.json +46 -42
  225. data/stdlib/nodejs/node_modules/brace-expansion/LICENSE +21 -0
  226. data/stdlib/nodejs/node_modules/{glob/node_modules/minimatch/node_modules/brace-expansion → brace-expansion}/README.md +9 -1
  227. data/stdlib/nodejs/node_modules/{glob/node_modules/minimatch/node_modules/brace-expansion → brace-expansion}/index.js +12 -2
  228. data/stdlib/nodejs/node_modules/{glob/node_modules/minimatch/node_modules/brace-expansion → brace-expansion}/package.json +48 -48
  229. data/stdlib/nodejs/node_modules/{glob/node_modules/minimatch/node_modules/brace-expansion/node_modules/concat-map → concat-map}/.travis.yml +0 -0
  230. data/stdlib/nodejs/node_modules/{glob/node_modules/minimatch/node_modules/brace-expansion/node_modules/concat-map → concat-map}/LICENSE +0 -0
  231. data/stdlib/nodejs/node_modules/{glob/node_modules/minimatch/node_modules/brace-expansion/node_modules/concat-map → concat-map}/README.markdown +0 -0
  232. data/stdlib/nodejs/node_modules/{glob/node_modules/minimatch/node_modules/brace-expansion/node_modules/concat-map → concat-map}/example/map.js +0 -0
  233. data/stdlib/nodejs/node_modules/{glob/node_modules/minimatch/node_modules/brace-expansion/node_modules/concat-map → concat-map}/index.js +0 -0
  234. data/stdlib/nodejs/node_modules/{glob/node_modules/minimatch/node_modules/brace-expansion/node_modules/concat-map → concat-map}/package.json +47 -42
  235. data/stdlib/nodejs/node_modules/{glob/node_modules/minimatch/node_modules/brace-expansion/node_modules/concat-map → concat-map}/test/map.js +0 -0
  236. data/stdlib/nodejs/node_modules/fs.realpath/LICENSE +43 -0
  237. data/stdlib/nodejs/node_modules/fs.realpath/README.md +33 -0
  238. data/stdlib/nodejs/node_modules/fs.realpath/index.js +66 -0
  239. data/stdlib/nodejs/node_modules/fs.realpath/old.js +303 -0
  240. data/stdlib/nodejs/node_modules/fs.realpath/package.json +59 -0
  241. data/stdlib/nodejs/node_modules/glob/README.md +57 -46
  242. data/stdlib/nodejs/node_modules/glob/changelog.md +67 -0
  243. data/stdlib/nodejs/node_modules/glob/common.js +91 -28
  244. data/stdlib/nodejs/node_modules/glob/glob.js +196 -55
  245. data/stdlib/nodejs/node_modules/glob/package.json +55 -51
  246. data/stdlib/nodejs/node_modules/glob/sync.js +116 -39
  247. data/stdlib/nodejs/node_modules/{glob/node_modules/inflight → inflight}/LICENSE +0 -0
  248. data/stdlib/nodejs/node_modules/{glob/node_modules/inflight → inflight}/README.md +0 -0
  249. data/stdlib/nodejs/node_modules/inflight/inflight.js +54 -0
  250. data/stdlib/nodejs/node_modules/inflight/package.json +58 -0
  251. data/stdlib/nodejs/node_modules/{glob/node_modules/inherits → inherits}/LICENSE +0 -0
  252. data/stdlib/nodejs/node_modules/{glob/node_modules/inherits → inherits}/README.md +0 -0
  253. data/stdlib/nodejs/node_modules/inherits/inherits.js +7 -0
  254. data/stdlib/nodejs/node_modules/{glob/node_modules/inherits → inherits}/inherits_browser.js +0 -0
  255. data/stdlib/nodejs/node_modules/inherits/package.json +61 -0
  256. data/stdlib/nodejs/node_modules/{glob/node_modules/inflight/node_modules/wrappy → minimatch}/LICENSE +0 -0
  257. data/stdlib/nodejs/node_modules/{glob/node_modules/minimatch → minimatch}/README.md +2 -9
  258. data/stdlib/nodejs/node_modules/{glob/node_modules/minimatch → minimatch}/minimatch.js +284 -206
  259. data/stdlib/nodejs/node_modules/minimatch/package.json +63 -0
  260. data/stdlib/nodejs/node_modules/{glob/node_modules/once/node_modules/wrappy → once}/LICENSE +0 -0
  261. data/stdlib/nodejs/node_modules/{glob/node_modules/once → once}/README.md +28 -0
  262. data/stdlib/nodejs/node_modules/once/once.js +42 -0
  263. data/stdlib/nodejs/node_modules/once/package.json +67 -0
  264. data/stdlib/nodejs/node_modules/path-is-absolute/index.js +20 -0
  265. data/stdlib/nodejs/node_modules/path-is-absolute/license +21 -0
  266. data/stdlib/nodejs/node_modules/path-is-absolute/package.json +75 -0
  267. data/stdlib/nodejs/node_modules/path-is-absolute/readme.md +59 -0
  268. data/stdlib/nodejs/node_modules/unxhr/LICENSE +22 -0
  269. data/stdlib/nodejs/node_modules/unxhr/README.md +41 -0
  270. data/stdlib/nodejs/node_modules/unxhr/lib/XMLHttpRequest.js +598 -0
  271. data/stdlib/nodejs/node_modules/unxhr/lib/browser.js +2 -0
  272. data/stdlib/nodejs/node_modules/unxhr/lib/request.js +63 -0
  273. data/stdlib/nodejs/node_modules/unxhr/package.json +75 -0
  274. data/stdlib/nodejs/node_modules/wrappy/LICENSE +15 -0
  275. data/stdlib/nodejs/node_modules/{glob/node_modules/inflight/node_modules/wrappy → wrappy}/README.md +0 -0
  276. data/stdlib/nodejs/node_modules/wrappy/package.json +59 -0
  277. data/stdlib/nodejs/node_modules/{glob/node_modules/inflight/node_modules/wrappy → wrappy}/wrappy.js +0 -0
  278. data/stdlib/nodejs/open-uri.rb +26 -0
  279. data/stdlib/nodejs/package-lock.json +88 -0
  280. data/stdlib/nodejs/package.json +2 -1
  281. data/stdlib/nodejs/pathname.rb +20 -0
  282. data/stdlib/nodejs/require.rb +3 -3
  283. data/stdlib/nodejs/stacktrace.rb +1 -1
  284. data/stdlib/nodejs/yaml.rb +1 -1
  285. data/stdlib/opal-builder.rb +1 -0
  286. data/stdlib/opal-parser.rb +4 -1
  287. data/stdlib/opal-platform.rb +8 -10
  288. data/stdlib/opal-source-maps.rb +0 -1
  289. data/stdlib/open-uri.rb +349 -0
  290. data/stdlib/ostruct.rb +19 -17
  291. data/stdlib/pathname.rb +22 -22
  292. data/stdlib/pp.rb +5 -5
  293. data/stdlib/promise.rb +30 -26
  294. data/stdlib/rbconfig/sizeof.rb +50 -0
  295. data/stdlib/securerandom.rb +1 -1
  296. data/stdlib/set.rb +21 -23
  297. data/stdlib/singleton.rb +3 -4
  298. data/stdlib/stringio.rb +33 -0
  299. data/stdlib/strscan.rb +55 -55
  300. data/stdlib/template.rb +1 -2
  301. data/stdlib/thread.rb +6 -7
  302. data/tasks/benchmarking.rake +1 -1
  303. data/tasks/building.rake +4 -12
  304. data/tasks/linting.rake +17 -2
  305. data/tasks/releasing.rake +84 -0
  306. data/tasks/testing.rake +57 -15
  307. data/tasks/testing/mspec_special_calls.rb +23 -4
  308. data/vendored-minitest/minitest.rb +1 -1
  309. metadata +169 -168
  310. data/bin/opal-build +0 -3
  311. data/exe/opal-mspec +0 -10
  312. data/lib/opal/nodes/args/initialize_kwargs.rb +0 -29
  313. data/lib/opal/nodes/args/kwarg.rb +0 -31
  314. data/lib/opal/nodes/args/kwoptarg.rb +0 -34
  315. data/lib/opal/nodes/args/kwrestarg.rb +0 -39
  316. data/lib/opal/nodes/args/mlhsarg.rb +0 -78
  317. data/lib/opal/nodes/args/normarg.rb +0 -29
  318. data/lib/opal/nodes/args/optarg.rb +0 -25
  319. data/lib/opal/nodes/args/post_args.rb +0 -201
  320. data/lib/opal/nodes/args/post_kwargs.rb +0 -32
  321. data/lib/opal/nodes/args/restarg.rb +0 -38
  322. data/lib/opal/nodes/inline_args.rb +0 -60
  323. data/opal/corelib/string/inheritance.rb +0 -123
  324. data/stdlib/nodejs/node_modules/glob/node_modules/inflight/.eslintrc +0 -17
  325. data/stdlib/nodejs/node_modules/glob/node_modules/inflight/inflight.js +0 -44
  326. data/stdlib/nodejs/node_modules/glob/node_modules/inflight/node_modules/wrappy/package.json +0 -52
  327. data/stdlib/nodejs/node_modules/glob/node_modules/inflight/node_modules/wrappy/test/basic.js +0 -51
  328. data/stdlib/nodejs/node_modules/glob/node_modules/inflight/package.json +0 -61
  329. data/stdlib/nodejs/node_modules/glob/node_modules/inflight/test.js +0 -97
  330. data/stdlib/nodejs/node_modules/glob/node_modules/inherits/inherits.js +0 -1
  331. data/stdlib/nodejs/node_modules/glob/node_modules/inherits/package.json +0 -51
  332. data/stdlib/nodejs/node_modules/glob/node_modules/inherits/test.js +0 -25
  333. data/stdlib/nodejs/node_modules/glob/node_modules/minimatch/.npmignore +0 -1
  334. data/stdlib/nodejs/node_modules/glob/node_modules/minimatch/.travis.yml +0 -4
  335. data/stdlib/nodejs/node_modules/glob/node_modules/minimatch/LICENSE +0 -23
  336. data/stdlib/nodejs/node_modules/glob/node_modules/minimatch/benchmark.js +0 -15
  337. data/stdlib/nodejs/node_modules/glob/node_modules/minimatch/browser.js +0 -1181
  338. data/stdlib/nodejs/node_modules/glob/node_modules/minimatch/node_modules/brace-expansion/.npmignore +0 -2
  339. data/stdlib/nodejs/node_modules/glob/node_modules/minimatch/node_modules/brace-expansion/.travis.yml +0 -3
  340. data/stdlib/nodejs/node_modules/glob/node_modules/minimatch/node_modules/brace-expansion/example.js +0 -8
  341. data/stdlib/nodejs/node_modules/glob/node_modules/minimatch/node_modules/brace-expansion/node_modules/balanced-match/.npmignore +0 -2
  342. data/stdlib/nodejs/node_modules/glob/node_modules/minimatch/node_modules/brace-expansion/node_modules/balanced-match/.travis.yml +0 -4
  343. data/stdlib/nodejs/node_modules/glob/node_modules/minimatch/node_modules/brace-expansion/node_modules/balanced-match/Makefile +0 -6
  344. data/stdlib/nodejs/node_modules/glob/node_modules/minimatch/node_modules/brace-expansion/node_modules/balanced-match/example.js +0 -5
  345. data/stdlib/nodejs/node_modules/glob/node_modules/minimatch/node_modules/brace-expansion/node_modules/balanced-match/index.js +0 -38
  346. data/stdlib/nodejs/node_modules/glob/node_modules/minimatch/node_modules/brace-expansion/node_modules/balanced-match/test/balanced.js +0 -56
  347. data/stdlib/nodejs/node_modules/glob/node_modules/minimatch/node_modules/brace-expansion/test/bash-comparison.js +0 -32
  348. data/stdlib/nodejs/node_modules/glob/node_modules/minimatch/node_modules/brace-expansion/test/bash-results.txt +0 -1075
  349. data/stdlib/nodejs/node_modules/glob/node_modules/minimatch/node_modules/brace-expansion/test/cases.txt +0 -182
  350. data/stdlib/nodejs/node_modules/glob/node_modules/minimatch/node_modules/brace-expansion/test/dollar.js +0 -9
  351. data/stdlib/nodejs/node_modules/glob/node_modules/minimatch/node_modules/brace-expansion/test/empty-option.js +0 -10
  352. data/stdlib/nodejs/node_modules/glob/node_modules/minimatch/node_modules/brace-expansion/test/generate.sh +0 -24
  353. data/stdlib/nodejs/node_modules/glob/node_modules/minimatch/node_modules/brace-expansion/test/negative-increment.js +0 -15
  354. data/stdlib/nodejs/node_modules/glob/node_modules/minimatch/node_modules/brace-expansion/test/nested.js +0 -16
  355. data/stdlib/nodejs/node_modules/glob/node_modules/minimatch/node_modules/brace-expansion/test/order.js +0 -10
  356. data/stdlib/nodejs/node_modules/glob/node_modules/minimatch/node_modules/brace-expansion/test/pad.js +0 -13
  357. data/stdlib/nodejs/node_modules/glob/node_modules/minimatch/node_modules/brace-expansion/test/same-type.js +0 -7
  358. data/stdlib/nodejs/node_modules/glob/node_modules/minimatch/node_modules/brace-expansion/test/sequence.js +0 -50
  359. data/stdlib/nodejs/node_modules/glob/node_modules/minimatch/package.json +0 -60
  360. data/stdlib/nodejs/node_modules/glob/node_modules/minimatch/test/basic.js +0 -399
  361. data/stdlib/nodejs/node_modules/glob/node_modules/minimatch/test/brace-expand.js +0 -45
  362. data/stdlib/nodejs/node_modules/glob/node_modules/minimatch/test/defaults.js +0 -274
  363. data/stdlib/nodejs/node_modules/glob/node_modules/minimatch/test/extglob-ending-with-state-char.js +0 -8
  364. data/stdlib/nodejs/node_modules/glob/node_modules/once/LICENSE +0 -27
  365. data/stdlib/nodejs/node_modules/glob/node_modules/once/node_modules/wrappy/README.md +0 -36
  366. data/stdlib/nodejs/node_modules/glob/node_modules/once/node_modules/wrappy/package.json +0 -52
  367. data/stdlib/nodejs/node_modules/glob/node_modules/once/node_modules/wrappy/test/basic.js +0 -51
  368. data/stdlib/nodejs/node_modules/glob/node_modules/once/node_modules/wrappy/wrappy.js +0 -33
  369. data/stdlib/nodejs/node_modules/glob/node_modules/once/once.js +0 -21
  370. data/stdlib/nodejs/node_modules/glob/node_modules/once/package.json +0 -60
  371. data/stdlib/nodejs/node_modules/glob/node_modules/once/test/once.js +0 -23
  372. data/stdlib/nodejs/rubygems.rb +0 -68
  373. data/stdlib/source_map.rb +0 -5
  374. data/stdlib/source_map/map.rb +0 -220
  375. data/stdlib/source_map/mapping.rb +0 -26
  376. data/stdlib/source_map/offset.rb +0 -88
  377. data/stdlib/source_map/version.rb +0 -3
  378. data/stdlib/source_map/vlq.rb +0 -99
  379. data/stdlib/sourcemap.rb +0 -1
@@ -1,45 +0,0 @@
1
- var tap = require("tap")
2
- , minimatch = require("../")
3
-
4
- tap.test("brace expansion", function (t) {
5
- // [ pattern, [expanded] ]
6
- ; [ [ "a{b,c{d,e},{f,g}h}x{y,z}"
7
- , [ "abxy"
8
- , "abxz"
9
- , "acdxy"
10
- , "acdxz"
11
- , "acexy"
12
- , "acexz"
13
- , "afhxy"
14
- , "afhxz"
15
- , "aghxy"
16
- , "aghxz" ] ]
17
- , [ "a{1..5}b"
18
- , [ "a1b"
19
- , "a2b"
20
- , "a3b"
21
- , "a4b"
22
- , "a5b" ] ]
23
- , [ "a{b}c", ["a{b}c"] ]
24
- , [ "a{00..05}b"
25
- , [ "a00b"
26
- , "a01b"
27
- , "a02b"
28
- , "a03b"
29
- , "a04b"
30
- , "a05b" ] ]
31
- , [ "z{a,b},c}d", ["za,c}d", "zb,c}d"] ]
32
- , [ "z{a,b{,c}d", ["z{a,bd", "z{a,bcd"] ]
33
- , [ "a{b{c{d,e}f}g}h", ["a{b{cdf}g}h", "a{b{cef}g}h"] ]
34
- , [ "a{b{c{d,e}f{x,y}}g}h", ["a{b{cdfx}g}h", "a{b{cdfy}g}h", "a{b{cefx}g}h", "a{b{cefy}g}h"] ]
35
- , [ "a{b{c{d,e}f{x,y{}g}h", ["a{b{cdfxh", "a{b{cdfy{}gh", "a{b{cefxh", "a{b{cefy{}gh"] ]
36
- ].forEach(function (tc) {
37
- var p = tc[0]
38
- , expect = tc[1]
39
- t.equivalent(minimatch.braceExpand(p), expect, p)
40
- })
41
- console.error("ending")
42
- t.end()
43
- })
44
-
45
-
@@ -1,274 +0,0 @@
1
- // http://www.bashcookbook.com/bashinfo/source/bash-1.14.7/tests/glob-test
2
- //
3
- // TODO: Some of these tests do very bad things with backslashes, and will
4
- // most likely fail badly on windows. They should probably be skipped.
5
-
6
- var tap = require("tap")
7
- , globalBefore = Object.keys(global)
8
- , mm = require("../")
9
- , files = [ "a", "b", "c", "d", "abc"
10
- , "abd", "abe", "bb", "bcd"
11
- , "ca", "cb", "dd", "de"
12
- , "bdir/", "bdir/cfile"]
13
- , next = files.concat([ "a-b", "aXb"
14
- , ".x", ".y" ])
15
-
16
- tap.test("basic tests", function (t) {
17
- var start = Date.now()
18
-
19
- // [ pattern, [matches], MM opts, files, TAP opts]
20
- ; [ "http://www.bashcookbook.com/bashinfo" +
21
- "/source/bash-1.14.7/tests/glob-test"
22
- , ["a*", ["a", "abc", "abd", "abe"]]
23
- , ["X*", ["X*"], {nonull: true}]
24
-
25
- // allow null glob expansion
26
- , ["X*", []]
27
-
28
- // isaacs: Slightly different than bash/sh/ksh
29
- // \\* is not un-escaped to literal "*" in a failed match,
30
- // but it does make it get treated as a literal star
31
- , ["\\*", ["\\*"], {nonull: true}]
32
- , ["\\**", ["\\**"], {nonull: true}]
33
- , ["\\*\\*", ["\\*\\*"], {nonull: true}]
34
-
35
- , ["b*/", ["bdir/"]]
36
- , ["c*", ["c", "ca", "cb"]]
37
- , ["**", files]
38
-
39
- , ["\\.\\./*/", ["\\.\\./*/"], {nonull: true}]
40
- , ["s/\\..*//", ["s/\\..*//"], {nonull: true}]
41
-
42
- , "legendary larry crashes bashes"
43
- , ["/^root:/{s/^[^:]*:[^:]*:\([^:]*\).*$/\\1/"
44
- , ["/^root:/{s/^[^:]*:[^:]*:\([^:]*\).*$/\\1/"], {nonull: true}]
45
- , ["/^root:/{s/^[^:]*:[^:]*:\([^:]*\).*$/\1/"
46
- , ["/^root:/{s/^[^:]*:[^:]*:\([^:]*\).*$/\1/"], {nonull: true}]
47
-
48
- , "character classes"
49
- , ["[a-c]b*", ["abc", "abd", "abe", "bb", "cb"]]
50
- , ["[a-y]*[^c]", ["abd", "abe", "bb", "bcd",
51
- "bdir/", "ca", "cb", "dd", "de"]]
52
- , ["a*[^c]", ["abd", "abe"]]
53
- , function () { files.push("a-b", "aXb") }
54
- , ["a[X-]b", ["a-b", "aXb"]]
55
- , function () { files.push(".x", ".y") }
56
- , ["[^a-c]*", ["d", "dd", "de"]]
57
- , function () { files.push("a*b/", "a*b/ooo") }
58
- , ["a\\*b/*", ["a*b/ooo"]]
59
- , ["a\\*?/*", ["a*b/ooo"]]
60
- , ["*\\\\!*", [], {null: true}, ["echo !7"]]
61
- , ["*\\!*", ["echo !7"], null, ["echo !7"]]
62
- , ["*.\\*", ["r.*"], null, ["r.*"]]
63
- , ["a[b]c", ["abc"]]
64
- , ["a[\\b]c", ["abc"]]
65
- , ["a?c", ["abc"]]
66
- , ["a\\*c", [], {null: true}, ["abc"]]
67
- , ["", [""], { null: true }, [""]]
68
-
69
- , "http://www.opensource.apple.com/source/bash/bash-23/" +
70
- "bash/tests/glob-test"
71
- , function () { files.push("man/", "man/man1/", "man/man1/bash.1") }
72
- , ["*/man*/bash.*", ["man/man1/bash.1"]]
73
- , ["man/man1/bash.1", ["man/man1/bash.1"]]
74
- , ["a***c", ["abc"], null, ["abc"]]
75
- , ["a*****?c", ["abc"], null, ["abc"]]
76
- , ["?*****??", ["abc"], null, ["abc"]]
77
- , ["*****??", ["abc"], null, ["abc"]]
78
- , ["?*****?c", ["abc"], null, ["abc"]]
79
- , ["?***?****c", ["abc"], null, ["abc"]]
80
- , ["?***?****?", ["abc"], null, ["abc"]]
81
- , ["?***?****", ["abc"], null, ["abc"]]
82
- , ["*******c", ["abc"], null, ["abc"]]
83
- , ["*******?", ["abc"], null, ["abc"]]
84
- , ["a*cd**?**??k", ["abcdecdhjk"], null, ["abcdecdhjk"]]
85
- , ["a**?**cd**?**??k", ["abcdecdhjk"], null, ["abcdecdhjk"]]
86
- , ["a**?**cd**?**??k***", ["abcdecdhjk"], null, ["abcdecdhjk"]]
87
- , ["a**?**cd**?**??***k", ["abcdecdhjk"], null, ["abcdecdhjk"]]
88
- , ["a**?**cd**?**??***k**", ["abcdecdhjk"], null, ["abcdecdhjk"]]
89
- , ["a****c**?**??*****", ["abcdecdhjk"], null, ["abcdecdhjk"]]
90
- , ["[-abc]", ["-"], null, ["-"]]
91
- , ["[abc-]", ["-"], null, ["-"]]
92
- , ["\\", ["\\"], null, ["\\"]]
93
- , ["[\\\\]", ["\\"], null, ["\\"]]
94
- , ["[[]", ["["], null, ["["]]
95
- , ["[", ["["], null, ["["]]
96
- , ["[*", ["[abc"], null, ["[abc"]]
97
- , "a right bracket shall lose its special meaning and\n" +
98
- "represent itself in a bracket expression if it occurs\n" +
99
- "first in the list. -- POSIX.2 2.8.3.2"
100
- , ["[]]", ["]"], null, ["]"]]
101
- , ["[]-]", ["]"], null, ["]"]]
102
- , ["[a-\z]", ["p"], null, ["p"]]
103
- , ["??**********?****?", [], { null: true }, ["abc"]]
104
- , ["??**********?****c", [], { null: true }, ["abc"]]
105
- , ["?************c****?****", [], { null: true }, ["abc"]]
106
- , ["*c*?**", [], { null: true }, ["abc"]]
107
- , ["a*****c*?**", [], { null: true }, ["abc"]]
108
- , ["a********???*******", [], { null: true }, ["abc"]]
109
- , ["[]", [], { null: true }, ["a"]]
110
- , ["[abc", [], { null: true }, ["["]]
111
-
112
- , "nocase tests"
113
- , ["XYZ", ["xYz"], { nocase: true, null: true }
114
- , ["xYz", "ABC", "IjK"]]
115
- , ["ab*", ["ABC"], { nocase: true, null: true }
116
- , ["xYz", "ABC", "IjK"]]
117
- , ["[ia]?[ck]", ["ABC", "IjK"], { nocase: true, null: true }
118
- , ["xYz", "ABC", "IjK"]]
119
-
120
- // [ pattern, [matches], MM opts, files, TAP opts]
121
- , "onestar/twostar"
122
- , ["{/*,*}", [], {null: true}, ["/asdf/asdf/asdf"]]
123
- , ["{/?,*}", ["/a", "bb"], {null: true}
124
- , ["/a", "/b/b", "/a/b/c", "bb"]]
125
-
126
- , "dots should not match unless requested"
127
- , ["**", ["a/b"], {}, ["a/b", "a/.d", ".a/.d"]]
128
-
129
- // .. and . can only match patterns starting with .,
130
- // even when options.dot is set.
131
- , function () {
132
- files = ["a/./b", "a/../b", "a/c/b", "a/.d/b"]
133
- }
134
- , ["a/*/b", ["a/c/b", "a/.d/b"], {dot: true}]
135
- , ["a/.*/b", ["a/./b", "a/../b", "a/.d/b"], {dot: true}]
136
- , ["a/*/b", ["a/c/b"], {dot:false}]
137
- , ["a/.*/b", ["a/./b", "a/../b", "a/.d/b"], {dot: false}]
138
-
139
-
140
- // this also tests that changing the options needs
141
- // to change the cache key, even if the pattern is
142
- // the same!
143
- , ["**", ["a/b","a/.d",".a/.d"], { dot: true }
144
- , [ ".a/.d", "a/.d", "a/b"]]
145
-
146
- , "paren sets cannot contain slashes"
147
- , ["*(a/b)", ["*(a/b)"], {nonull: true}, ["a/b"]]
148
-
149
- // brace sets trump all else.
150
- //
151
- // invalid glob pattern. fails on bash4 and bsdglob.
152
- // however, in this implementation, it's easier just
153
- // to do the intuitive thing, and let brace-expansion
154
- // actually come before parsing any extglob patterns,
155
- // like the documentation seems to say.
156
- //
157
- // XXX: if anyone complains about this, either fix it
158
- // or tell them to grow up and stop complaining.
159
- //
160
- // bash/bsdglob says this:
161
- // , ["*(a|{b),c)}", ["*(a|{b),c)}"], {}, ["a", "ab", "ac", "ad"]]
162
- // but we do this instead:
163
- , ["*(a|{b),c)}", ["a", "ab", "ac"], {}, ["a", "ab", "ac", "ad"]]
164
-
165
- // test partial parsing in the presence of comment/negation chars
166
- , ["[!a*", ["[!ab"], {}, ["[!ab", "[ab"]]
167
- , ["[#a*", ["[#ab"], {}, ["[#ab", "[ab"]]
168
-
169
- // like: {a,b|c\\,d\\\|e} except it's unclosed, so it has to be escaped.
170
- , ["+(a|*\\|c\\\\|d\\\\\\|e\\\\\\\\|f\\\\\\\\\\|g"
171
- , ["+(a|b\\|c\\\\|d\\\\|e\\\\\\\\|f\\\\\\\\|g"]
172
- , {}
173
- , ["+(a|b\\|c\\\\|d\\\\|e\\\\\\\\|f\\\\\\\\|g", "a", "b\\c"]]
174
-
175
-
176
- // crazy nested {,,} and *(||) tests.
177
- , function () {
178
- files = [ "a", "b", "c", "d"
179
- , "ab", "ac", "ad"
180
- , "bc", "cb"
181
- , "bc,d", "c,db", "c,d"
182
- , "d)", "(b|c", "*(b|c"
183
- , "b|c", "b|cc", "cb|c"
184
- , "x(a|b|c)", "x(a|c)"
185
- , "(a|b|c)", "(a|c)"]
186
- }
187
- , ["*(a|{b,c})", ["a", "b", "c", "ab", "ac"]]
188
- , ["{a,*(b|c,d)}", ["a","(b|c", "*(b|c", "d)"]]
189
- // a
190
- // *(b|c)
191
- // *(b|d)
192
- , ["{a,*(b|{c,d})}", ["a","b", "bc", "cb", "c", "d"]]
193
- , ["*(a|{b|c,c})", ["a", "b", "c", "ab", "ac", "bc", "cb"]]
194
-
195
-
196
- // test various flag settings.
197
- , [ "*(a|{b|c,c})", ["x(a|b|c)", "x(a|c)", "(a|b|c)", "(a|c)"]
198
- , { noext: true } ]
199
- , ["a?b", ["x/y/acb", "acb/"], {matchBase: true}
200
- , ["x/y/acb", "acb/", "acb/d/e", "x/y/acb/d"] ]
201
- , ["#*", ["#a", "#b"], {nocomment: true}, ["#a", "#b", "c#d"]]
202
-
203
-
204
- // begin channelling Boole and deMorgan...
205
- , "negation tests"
206
- , function () {
207
- files = ["d", "e", "!ab", "!abc", "a!b", "\\!a"]
208
- }
209
-
210
- // anything that is NOT a* matches.
211
- , ["!a*", ["\\!a", "d", "e", "!ab", "!abc"]]
212
-
213
- // anything that IS !a* matches.
214
- , ["!a*", ["!ab", "!abc"], {nonegate: true}]
215
-
216
- // anything that IS a* matches
217
- , ["!!a*", ["a!b"]]
218
-
219
- // anything that is NOT !a* matches
220
- , ["!\\!a*", ["a!b", "d", "e", "\\!a"]]
221
-
222
- // negation nestled within a pattern
223
- , function () {
224
- files = [ "foo.js"
225
- , "foo.bar"
226
- // can't match this one without negative lookbehind.
227
- , "foo.js.js"
228
- , "blar.js"
229
- , "foo."
230
- , "boo.js.boo" ]
231
- }
232
- , ["*.!(js)", ["foo.bar", "foo.", "boo.js.boo"] ]
233
-
234
- ].forEach(function (c) {
235
- if (typeof c === "function") return c()
236
- if (typeof c === "string") return t.comment(c)
237
-
238
- var pattern = c[0]
239
- , expect = c[1].sort(alpha)
240
- , options = c[2]
241
- , f = c[3] || files
242
- , tapOpts = c[4] || {}
243
-
244
- // options.debug = true
245
- var Class = mm.defaults(options).Minimatch
246
- var m = new Class(pattern, {})
247
- var r = m.makeRe()
248
- tapOpts.re = String(r) || JSON.stringify(r)
249
- tapOpts.files = JSON.stringify(f)
250
- tapOpts.pattern = pattern
251
- tapOpts.set = m.set
252
- tapOpts.negated = m.negate
253
-
254
- var actual = mm.match(f, pattern, options)
255
- actual.sort(alpha)
256
-
257
- t.equivalent( actual, expect
258
- , JSON.stringify(pattern) + " " + JSON.stringify(expect)
259
- , tapOpts )
260
- })
261
-
262
- t.comment("time=" + (Date.now() - start) + "ms")
263
- t.end()
264
- })
265
-
266
- tap.test("global leak test", function (t) {
267
- var globalAfter = Object.keys(global)
268
- t.equivalent(globalAfter, globalBefore, "no new globals, please")
269
- t.end()
270
- })
271
-
272
- function alpha (a, b) {
273
- return a > b ? 1 : -1
274
- }
@@ -1,8 +0,0 @@
1
- var test = require('tap').test
2
- var minimatch = require('../')
3
-
4
- test('extglob ending with statechar', function(t) {
5
- t.notOk(minimatch('ax', 'a?(b*)'))
6
- t.ok(minimatch('ax', '?(a*|b)'))
7
- t.end()
8
- })
@@ -1,27 +0,0 @@
1
- Copyright (c) Isaac Z. Schlueter ("Author")
2
- All rights reserved.
3
-
4
- The BSD License
5
-
6
- Redistribution and use in source and binary forms, with or without
7
- modification, are permitted provided that the following conditions
8
- are met:
9
-
10
- 1. Redistributions of source code must retain the above copyright
11
- notice, this list of conditions and the following disclaimer.
12
-
13
- 2. Redistributions in binary form must reproduce the above copyright
14
- notice, this list of conditions and the following disclaimer in the
15
- documentation and/or other materials provided with the distribution.
16
-
17
- THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
18
- ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
19
- IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
20
- PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS
21
- BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
22
- CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
23
- SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR
24
- BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
25
- WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE
26
- OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN
27
- IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
@@ -1,36 +0,0 @@
1
- # wrappy
2
-
3
- Callback wrapping utility
4
-
5
- ## USAGE
6
-
7
- ```javascript
8
- var wrappy = require("wrappy")
9
-
10
- // var wrapper = wrappy(wrapperFunction)
11
-
12
- // make sure a cb is called only once
13
- // See also: http://npm.im/once for this specific use case
14
- var once = wrappy(function (cb) {
15
- var called = false
16
- return function () {
17
- if (called) return
18
- called = true
19
- return cb.apply(this, arguments)
20
- }
21
- })
22
-
23
- function printBoo () {
24
- console.log('boo')
25
- }
26
- // has some rando property
27
- printBoo.iAmBooPrinter = true
28
-
29
- var onlyPrintOnce = once(printBoo)
30
-
31
- onlyPrintOnce() // prints 'boo'
32
- onlyPrintOnce() // does nothing
33
-
34
- // random property is retained!
35
- assert.equal(onlyPrintOnce.iAmBooPrinter, true)
36
- ```
@@ -1,52 +0,0 @@
1
- {
2
- "name": "wrappy",
3
- "version": "1.0.1",
4
- "description": "Callback wrapping utility",
5
- "main": "wrappy.js",
6
- "directories": {
7
- "test": "test"
8
- },
9
- "dependencies": {},
10
- "devDependencies": {
11
- "tap": "^0.4.12"
12
- },
13
- "scripts": {
14
- "test": "tap test/*.js"
15
- },
16
- "repository": {
17
- "type": "git",
18
- "url": "https://github.com/npm/wrappy"
19
- },
20
- "author": {
21
- "name": "Isaac Z. Schlueter",
22
- "email": "i@izs.me",
23
- "url": "http://blog.izs.me/"
24
- },
25
- "license": "ISC",
26
- "bugs": {
27
- "url": "https://github.com/npm/wrappy/issues"
28
- },
29
- "homepage": "https://github.com/npm/wrappy",
30
- "gitHead": "006a8cbac6b99988315834c207896eed71fd069a",
31
- "_id": "wrappy@1.0.1",
32
- "_shasum": "1e65969965ccbc2db4548c6b84a6f2c5aedd4739",
33
- "_from": "wrappy@>=1.0.0 <2.0.0",
34
- "_npmVersion": "2.0.0",
35
- "_nodeVersion": "0.10.31",
36
- "_npmUser": {
37
- "name": "isaacs",
38
- "email": "i@izs.me"
39
- },
40
- "maintainers": [
41
- {
42
- "name": "isaacs",
43
- "email": "i@izs.me"
44
- }
45
- ],
46
- "dist": {
47
- "shasum": "1e65969965ccbc2db4548c6b84a6f2c5aedd4739",
48
- "tarball": "http://registry.npmjs.org/wrappy/-/wrappy-1.0.1.tgz"
49
- },
50
- "_resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.1.tgz",
51
- "readme": "ERROR: No README data found!"
52
- }