fsevents 1.1.3 → 1.2.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of fsevents might be problematic. Click here for more details.

Files changed (979) hide show
  1. package/.travis.yml +1 -1
  2. package/build/.target.mk +4 -2
  3. package/build/Makefile +2 -2
  4. package/build/Release/.deps/Release/.node.d +1 -1
  5. package/build/Release/.deps/Release/fse.node.d +1 -1
  6. package/build/Release/.deps/Release/obj.target/fse/fsevents.o.d +31 -29
  7. package/build/Release/.deps/Users/eshanker/Code/fsevents/lib/binding/Release/node-v64-darwin-x64/fse.node.d +1 -0
  8. package/build/Release/.node +0 -0
  9. package/build/Release/fse.node +0 -0
  10. package/build/Release/obj.target/fse/fsevents.o +0 -0
  11. package/build/action_after_build.target.mk +4 -4
  12. package/build/binding.Makefile +1 -1
  13. package/build/fse.target.mk +18 -13
  14. package/fsevents.cc +5 -7
  15. package/lib/binding/Release/node-v64-darwin-x64/fse.node +0 -0
  16. package/node_modules/abbrev/LICENSE +31 -0
  17. package/node_modules/abbrev/package.json +14 -11
  18. package/node_modules/ansi-regex/package.json +3 -1
  19. package/node_modules/aproba/README.md +16 -11
  20. package/node_modules/aproba/index.js +11 -9
  21. package/node_modules/aproba/package.json +15 -13
  22. package/node_modules/are-we-there-yet/package.json +3 -1
  23. package/node_modules/balanced-match/index.js +1 -0
  24. package/node_modules/balanced-match/package.json +15 -11
  25. package/node_modules/{asynckit → brace-expansion}/LICENSE +2 -2
  26. package/node_modules/brace-expansion/README.md +7 -1
  27. package/node_modules/brace-expansion/package.json +14 -12
  28. package/node_modules/{block-stream → chownr}/LICENSE +0 -0
  29. package/node_modules/chownr/README.md +3 -0
  30. package/node_modules/chownr/chownr.js +52 -0
  31. package/node_modules/chownr/package.json +59 -0
  32. package/node_modules/code-point-at/package.json +3 -1
  33. package/node_modules/concat-map/package.json +3 -1
  34. package/node_modules/console-control-strings/package.json +4 -1
  35. package/node_modules/core-util-is/package.json +3 -1
  36. package/node_modules/debug/CHANGELOG.md +5 -0
  37. package/node_modules/debug/component.json +1 -1
  38. package/node_modules/debug/package.json +13 -11
  39. package/node_modules/debug/src/inspector-log.js +15 -0
  40. package/node_modules/debug/src/node.js +3 -1
  41. package/node_modules/deep-extend/CHANGELOG.md +20 -3
  42. package/node_modules/deep-extend/LICENSE +1 -1
  43. package/node_modules/deep-extend/README.md +3 -0
  44. package/node_modules/deep-extend/lib/deep-extend.js +11 -5
  45. package/node_modules/deep-extend/package.json +26 -27
  46. package/node_modules/delegates/package.json +3 -1
  47. package/node_modules/detect-libc/lib/detect-libc.js +21 -14
  48. package/node_modules/detect-libc/package.json +17 -14
  49. package/node_modules/{fstream-ignore → fs-minipass}/LICENSE +0 -0
  50. package/node_modules/fs-minipass/README.md +70 -0
  51. package/node_modules/fs-minipass/index.js +386 -0
  52. package/node_modules/fs-minipass/package.json +65 -0
  53. package/node_modules/fs.realpath/package.json +3 -1
  54. package/node_modules/gauge/package.json +3 -1
  55. package/node_modules/glob/package.json +3 -1
  56. package/node_modules/has-unicode/package.json +3 -1
  57. package/node_modules/iconv-lite/.travis.yml +23 -0
  58. package/node_modules/iconv-lite/Changelog.md +146 -0
  59. package/node_modules/{punycode/LICENSE-MIT.txt → iconv-lite/LICENSE} +2 -1
  60. package/node_modules/iconv-lite/README.md +156 -0
  61. package/node_modules/iconv-lite/encodings/dbcs-codec.js +555 -0
  62. package/node_modules/iconv-lite/encodings/dbcs-data.js +176 -0
  63. package/node_modules/iconv-lite/encodings/index.js +22 -0
  64. package/node_modules/iconv-lite/encodings/internal.js +188 -0
  65. package/node_modules/iconv-lite/encodings/sbcs-codec.js +72 -0
  66. package/node_modules/iconv-lite/encodings/sbcs-data-generated.js +451 -0
  67. package/node_modules/iconv-lite/encodings/sbcs-data.js +169 -0
  68. package/node_modules/iconv-lite/encodings/tables/big5-added.json +122 -0
  69. package/node_modules/iconv-lite/encodings/tables/cp936.json +264 -0
  70. package/node_modules/iconv-lite/encodings/tables/cp949.json +273 -0
  71. package/node_modules/iconv-lite/encodings/tables/cp950.json +177 -0
  72. package/node_modules/iconv-lite/encodings/tables/eucjp.json +182 -0
  73. package/node_modules/iconv-lite/encodings/tables/gb18030-ranges.json +1 -0
  74. package/node_modules/iconv-lite/encodings/tables/gbk-added.json +55 -0
  75. package/node_modules/iconv-lite/encodings/tables/shiftjis.json +125 -0
  76. package/node_modules/iconv-lite/encodings/utf16.js +177 -0
  77. package/node_modules/iconv-lite/encodings/utf7.js +290 -0
  78. package/node_modules/iconv-lite/lib/bom-handling.js +52 -0
  79. package/node_modules/iconv-lite/lib/extend-node.js +217 -0
  80. package/node_modules/iconv-lite/lib/index.d.ts +24 -0
  81. package/node_modules/iconv-lite/lib/index.js +153 -0
  82. package/node_modules/iconv-lite/lib/streams.js +121 -0
  83. package/node_modules/iconv-lite/package.json +79 -0
  84. package/node_modules/{fstream → ignore-walk}/LICENSE +0 -0
  85. package/node_modules/ignore-walk/README.md +60 -0
  86. package/node_modules/ignore-walk/index.js +265 -0
  87. package/node_modules/ignore-walk/package.json +74 -0
  88. package/node_modules/inflight/package.json +3 -1
  89. package/node_modules/inherits/package.json +6 -1
  90. package/node_modules/ini/ini.js +66 -62
  91. package/node_modules/ini/package.json +20 -13
  92. package/node_modules/is-fullwidth-code-point/package.json +3 -1
  93. package/node_modules/isarray/package.json +3 -1
  94. package/node_modules/minimatch/package.json +4 -1
  95. package/node_modules/minimist/package.json +3 -1
  96. package/node_modules/minipass/README.md +46 -0
  97. package/node_modules/minipass/index.js +304 -0
  98. package/node_modules/minipass/package.json +72 -0
  99. package/node_modules/minizlib/LICENSE +26 -0
  100. package/node_modules/minizlib/README.md +44 -0
  101. package/node_modules/minizlib/constants.js +46 -0
  102. package/node_modules/minizlib/index.js +364 -0
  103. package/node_modules/minizlib/package.json +74 -0
  104. package/node_modules/mkdirp/package.json +5 -1
  105. package/node_modules/ms/package.json +3 -1
  106. package/node_modules/needle/README.md +593 -0
  107. package/node_modules/needle/bin/needle +40 -0
  108. package/node_modules/needle/examples/deflated-stream.js +22 -0
  109. package/node_modules/needle/examples/digest-auth.js +16 -0
  110. package/node_modules/needle/examples/download-to-file.js +18 -0
  111. package/node_modules/needle/examples/multipart-stream.js +25 -0
  112. package/node_modules/needle/examples/parsed-stream.js +23 -0
  113. package/node_modules/needle/examples/parsed-stream2.js +21 -0
  114. package/node_modules/needle/examples/stream-events.js +23 -0
  115. package/node_modules/needle/examples/stream-to-file.js +14 -0
  116. package/node_modules/needle/examples/upload-image.js +51 -0
  117. package/node_modules/needle/lib/auth.js +110 -0
  118. package/node_modules/needle/lib/cookies.js +77 -0
  119. package/node_modules/needle/lib/decoder.js +53 -0
  120. package/node_modules/needle/lib/multipart.js +98 -0
  121. package/node_modules/needle/lib/needle.js +783 -0
  122. package/node_modules/needle/lib/parsers.js +120 -0
  123. package/node_modules/needle/lib/querystring.js +49 -0
  124. package/node_modules/{delayed-stream/License → needle/license.txt} +2 -2
  125. package/node_modules/needle/package.json +105 -0
  126. package/node_modules/needle/test/basic_auth_spec.js +196 -0
  127. package/node_modules/needle/test/compression_spec.js +94 -0
  128. package/node_modules/needle/test/cookies_spec.js +305 -0
  129. package/node_modules/needle/test/decoder_spec.js +86 -0
  130. package/node_modules/needle/test/errors_spec.js +286 -0
  131. package/node_modules/needle/test/headers_spec.js +198 -0
  132. package/node_modules/needle/test/helpers.js +72 -0
  133. package/node_modules/needle/test/long_string_spec.js +34 -0
  134. package/node_modules/needle/test/output_spec.js +254 -0
  135. package/node_modules/needle/test/parsing_spec.js +494 -0
  136. package/node_modules/needle/test/post_data_spec.js +1021 -0
  137. package/node_modules/needle/test/proxy_spec.js +202 -0
  138. package/node_modules/needle/test/querystring_spec.js +128 -0
  139. package/node_modules/needle/test/redirect_spec.js +392 -0
  140. package/node_modules/needle/test/redirect_with_timeout.js +45 -0
  141. package/node_modules/needle/test/request_stream_spec.js +202 -0
  142. package/node_modules/needle/test/response_stream_spec.js +139 -0
  143. package/node_modules/needle/test/socket_pool_spec.js +66 -0
  144. package/node_modules/needle/test/url_spec.js +147 -0
  145. package/node_modules/needle/test/utils/formidable.js +17 -0
  146. package/node_modules/needle/test/utils/proxy.js +62 -0
  147. package/node_modules/needle/test/utils/test.js +104 -0
  148. package/node_modules/node-pre-gyp/CHANGELOG.md +36 -3
  149. package/node_modules/node-pre-gyp/README.md +83 -8
  150. package/node_modules/node-pre-gyp/appveyor.yml +1 -15
  151. package/node_modules/node-pre-gyp/contributing.md +2 -2
  152. package/node_modules/node-pre-gyp/lib/build.js +8 -0
  153. package/node_modules/node-pre-gyp/lib/clean.js +17 -8
  154. package/node_modules/node-pre-gyp/lib/configure.js +4 -0
  155. package/node_modules/node-pre-gyp/lib/install.js +58 -34
  156. package/node_modules/node-pre-gyp/lib/node-pre-gyp.js +9 -0
  157. package/node_modules/node-pre-gyp/lib/package.js +23 -13
  158. package/node_modules/node-pre-gyp/lib/pre-binding.js +6 -1
  159. package/node_modules/node-pre-gyp/lib/publish.js +3 -1
  160. package/node_modules/node-pre-gyp/lib/rebuild.js +12 -4
  161. package/node_modules/node-pre-gyp/lib/reinstall.js +8 -1
  162. package/node_modules/node-pre-gyp/lib/reveal.js +4 -2
  163. package/node_modules/node-pre-gyp/lib/testbinary.js +3 -1
  164. package/node_modules/node-pre-gyp/lib/testpackage.js +22 -16
  165. package/node_modules/node-pre-gyp/lib/unpublish.js +3 -1
  166. package/node_modules/node-pre-gyp/lib/util/abi_crosswalk.json +156 -0
  167. package/node_modules/node-pre-gyp/lib/util/handle_gyp_opts.js +8 -2
  168. package/node_modules/node-pre-gyp/lib/util/napi.js +156 -0
  169. package/node_modules/node-pre-gyp/lib/util/versioning.js +7 -2
  170. package/node_modules/node-pre-gyp/package.json +16 -16
  171. package/node_modules/nopt/package.json +3 -1
  172. package/node_modules/npm-bundled/README.md +46 -0
  173. package/node_modules/npm-bundled/index.js +227 -0
  174. package/node_modules/npm-bundled/package.json +63 -0
  175. package/node_modules/{json-stringify-safe → npm-packlist}/LICENSE +0 -0
  176. package/node_modules/npm-packlist/README.md +68 -0
  177. package/node_modules/npm-packlist/index.js +220 -0
  178. package/node_modules/npm-packlist/package.json +69 -0
  179. package/node_modules/npmlog/log.js +6 -1
  180. package/node_modules/npmlog/package.json +13 -11
  181. package/node_modules/number-is-nan/package.json +3 -1
  182. package/node_modules/object-assign/package.json +3 -1
  183. package/node_modules/once/package.json +4 -1
  184. package/node_modules/os-homedir/package.json +3 -1
  185. package/node_modules/os-tmpdir/package.json +3 -1
  186. package/node_modules/osenv/package.json +20 -12
  187. package/node_modules/path-is-absolute/package.json +3 -1
  188. package/node_modules/process-nextick-args/index.js +3 -2
  189. package/node_modules/process-nextick-args/package.json +16 -11
  190. package/node_modules/process-nextick-args/readme.md +2 -2
  191. package/node_modules/rc/README.md +80 -2
  192. package/node_modules/rc/cli.js +4 -0
  193. package/node_modules/rc/index.js +0 -7
  194. package/node_modules/rc/node_modules/minimist/package.json +3 -1
  195. package/node_modules/rc/package.json +20 -19
  196. package/node_modules/readable-stream/.travis.yml +26 -20
  197. package/node_modules/readable-stream/README.md +3 -2
  198. package/node_modules/readable-stream/lib/_stream_duplex.js +69 -13
  199. package/node_modules/readable-stream/lib/_stream_passthrough.js +21 -0
  200. package/node_modules/readable-stream/lib/_stream_readable.js +194 -110
  201. package/node_modules/readable-stream/lib/_stream_transform.js +64 -32
  202. package/node_modules/readable-stream/lib/_stream_writable.js +198 -55
  203. package/node_modules/readable-stream/lib/internal/streams/BufferList.js +68 -53
  204. package/node_modules/readable-stream/lib/internal/streams/destroy.js +74 -0
  205. package/node_modules/readable-stream/package.json +23 -23
  206. package/node_modules/readable-stream/writable.js +2 -2
  207. package/node_modules/rimraf/package.json +13 -11
  208. package/node_modules/rimraf/rimraf.js +3 -2
  209. package/node_modules/safe-buffer/README.md +12 -9
  210. package/node_modules/safe-buffer/index.js +10 -6
  211. package/node_modules/safe-buffer/package.json +17 -13
  212. package/node_modules/safe-buffer/test.js +2 -0
  213. package/node_modules/{ajv → safer-buffer}/LICENSE +2 -3
  214. package/node_modules/safer-buffer/Porting-Buffer.md +268 -0
  215. package/node_modules/safer-buffer/Readme.md +156 -0
  216. package/node_modules/safer-buffer/dangerous.js +58 -0
  217. package/node_modules/safer-buffer/package.json +63 -0
  218. package/node_modules/safer-buffer/safer.js +77 -0
  219. package/node_modules/safer-buffer/tests.js +406 -0
  220. package/node_modules/sax/LICENSE +41 -0
  221. package/node_modules/sax/README.md +225 -0
  222. package/node_modules/sax/lib/sax.js +1565 -0
  223. package/node_modules/sax/package.json +64 -0
  224. package/node_modules/semver/README.md +75 -37
  225. package/node_modules/semver/bin/semver +12 -2
  226. package/node_modules/semver/package.json +15 -13
  227. package/node_modules/semver/range.bnf +2 -2
  228. package/node_modules/semver/semver.js +134 -13
  229. package/node_modules/set-blocking/package.json +3 -1
  230. package/node_modules/signal-exit/package.json +3 -1
  231. package/node_modules/string-width/package.json +4 -1
  232. package/node_modules/string_decoder/.travis.yml +50 -0
  233. package/node_modules/string_decoder/README.md +22 -3
  234. package/node_modules/string_decoder/lib/string_decoder.js +35 -11
  235. package/node_modules/string_decoder/package.json +21 -16
  236. package/node_modules/strip-ansi/package.json +4 -1
  237. package/node_modules/strip-json-comments/package.json +3 -1
  238. package/node_modules/tar/LICENSE +3 -0
  239. package/node_modules/tar/README.md +929 -30
  240. package/node_modules/tar/index.js +18 -0
  241. package/node_modules/tar/lib/buffer.js +11 -0
  242. package/node_modules/tar/lib/create.js +105 -0
  243. package/node_modules/tar/lib/extract.js +97 -79
  244. package/node_modules/tar/lib/header.js +236 -348
  245. package/node_modules/tar/lib/high-level-opt.js +29 -0
  246. package/node_modules/tar/lib/large-numbers.js +92 -0
  247. package/node_modules/tar/lib/list.js +130 -0
  248. package/node_modules/tar/lib/mkdir.js +206 -0
  249. package/node_modules/tar/lib/pack.js +354 -187
  250. package/node_modules/tar/lib/parse.js +393 -246
  251. package/node_modules/tar/lib/pax.js +146 -0
  252. package/node_modules/tar/lib/read-entry.js +94 -0
  253. package/node_modules/tar/lib/replace.js +220 -0
  254. package/node_modules/tar/lib/types.js +44 -0
  255. package/node_modules/tar/lib/unpack.js +560 -0
  256. package/node_modules/tar/lib/update.js +36 -0
  257. package/node_modules/tar/lib/warn-mixin.js +14 -0
  258. package/node_modules/tar/lib/winchars.js +23 -0
  259. package/node_modules/tar/lib/write-entry.js +403 -0
  260. package/node_modules/tar/package.json +44 -23
  261. package/node_modules/util-deprecate/package.json +3 -1
  262. package/node_modules/wide-align/package.json +3 -1
  263. package/node_modules/wrappy/package.json +4 -1
  264. package/node_modules/yallist/LICENSE +15 -0
  265. package/node_modules/yallist/README.md +204 -0
  266. package/node_modules/yallist/iterator.js +8 -0
  267. package/node_modules/yallist/package.json +66 -0
  268. package/node_modules/yallist/yallist.js +376 -0
  269. package/package.json +3 -3
  270. package/src/methods.cc +9 -7
  271. package/.npmignore +0 -1
  272. package/build/Release/.deps/Users/eshanker/Code/fsevents/lib/binding/Release/node-v48-darwin-x64/fse.node.d +0 -1
  273. package/build/stage/v1.1.2/fse-v1.1.2-node-v48-darwin-x64.tar.gz +0 -0
  274. package/node_modules/ajv/.tonic_example.js +0 -20
  275. package/node_modules/ajv/README.md +0 -1213
  276. package/node_modules/ajv/dist/ajv.bundle.js +0 -8023
  277. package/node_modules/ajv/dist/ajv.min.js +0 -6
  278. package/node_modules/ajv/dist/ajv.min.js.map +0 -1
  279. package/node_modules/ajv/dist/nodent.min.js +0 -8
  280. package/node_modules/ajv/dist/regenerator.min.js +0 -32
  281. package/node_modules/ajv/lib/ajv.d.ts +0 -284
  282. package/node_modules/ajv/lib/ajv.js +0 -420
  283. package/node_modules/ajv/lib/async.js +0 -218
  284. package/node_modules/ajv/lib/cache.js +0 -26
  285. package/node_modules/ajv/lib/compile/_rules.js +0 -28
  286. package/node_modules/ajv/lib/compile/equal.js +0 -45
  287. package/node_modules/ajv/lib/compile/formats.js +0 -164
  288. package/node_modules/ajv/lib/compile/index.js +0 -390
  289. package/node_modules/ajv/lib/compile/resolve.js +0 -267
  290. package/node_modules/ajv/lib/compile/rules.js +0 -40
  291. package/node_modules/ajv/lib/compile/schema_obj.js +0 -9
  292. package/node_modules/ajv/lib/compile/ucs2length.js +0 -20
  293. package/node_modules/ajv/lib/compile/util.js +0 -257
  294. package/node_modules/ajv/lib/compile/validation_error.js +0 -14
  295. package/node_modules/ajv/lib/dot/_limit.jst +0 -49
  296. package/node_modules/ajv/lib/dot/_limitItems.jst +0 -10
  297. package/node_modules/ajv/lib/dot/_limitLength.jst +0 -10
  298. package/node_modules/ajv/lib/dot/_limitProperties.jst +0 -10
  299. package/node_modules/ajv/lib/dot/allOf.jst +0 -34
  300. package/node_modules/ajv/lib/dot/anyOf.jst +0 -48
  301. package/node_modules/ajv/lib/dot/coerce.def +0 -61
  302. package/node_modules/ajv/lib/dot/custom.jst +0 -184
  303. package/node_modules/ajv/lib/dot/defaults.def +0 -32
  304. package/node_modules/ajv/lib/dot/definitions.def +0 -182
  305. package/node_modules/ajv/lib/dot/dependencies.jst +0 -69
  306. package/node_modules/ajv/lib/dot/enum.jst +0 -30
  307. package/node_modules/ajv/lib/dot/errors.def +0 -185
  308. package/node_modules/ajv/lib/dot/format.jst +0 -100
  309. package/node_modules/ajv/lib/dot/items.jst +0 -101
  310. package/node_modules/ajv/lib/dot/missing.def +0 -34
  311. package/node_modules/ajv/lib/dot/multipleOf.jst +0 -20
  312. package/node_modules/ajv/lib/dot/not.jst +0 -43
  313. package/node_modules/ajv/lib/dot/oneOf.jst +0 -44
  314. package/node_modules/ajv/lib/dot/pattern.jst +0 -14
  315. package/node_modules/ajv/lib/dot/properties.jst +0 -319
  316. package/node_modules/ajv/lib/dot/ref.jst +0 -86
  317. package/node_modules/ajv/lib/dot/required.jst +0 -96
  318. package/node_modules/ajv/lib/dot/uniqueItems.jst +0 -38
  319. package/node_modules/ajv/lib/dot/v5/_formatLimit.jst +0 -116
  320. package/node_modules/ajv/lib/dot/v5/constant.jst +0 -10
  321. package/node_modules/ajv/lib/dot/v5/patternRequired.jst +0 -28
  322. package/node_modules/ajv/lib/dot/v5/switch.jst +0 -73
  323. package/node_modules/ajv/lib/dot/validate.jst +0 -210
  324. package/node_modules/ajv/lib/dotjs/README.md +0 -3
  325. package/node_modules/ajv/lib/dotjs/_formatLimit.js +0 -176
  326. package/node_modules/ajv/lib/dotjs/_limit.js +0 -124
  327. package/node_modules/ajv/lib/dotjs/_limitItems.js +0 -76
  328. package/node_modules/ajv/lib/dotjs/_limitLength.js +0 -81
  329. package/node_modules/ajv/lib/dotjs/_limitProperties.js +0 -76
  330. package/node_modules/ajv/lib/dotjs/allOf.js +0 -43
  331. package/node_modules/ajv/lib/dotjs/anyOf.js +0 -65
  332. package/node_modules/ajv/lib/dotjs/constant.js +0 -52
  333. package/node_modules/ajv/lib/dotjs/custom.js +0 -220
  334. package/node_modules/ajv/lib/dotjs/dependencies.js +0 -147
  335. package/node_modules/ajv/lib/dotjs/enum.js +0 -65
  336. package/node_modules/ajv/lib/dotjs/format.js +0 -138
  337. package/node_modules/ajv/lib/dotjs/items.js +0 -144
  338. package/node_modules/ajv/lib/dotjs/multipleOf.js +0 -76
  339. package/node_modules/ajv/lib/dotjs/not.js +0 -83
  340. package/node_modules/ajv/lib/dotjs/oneOf.js +0 -76
  341. package/node_modules/ajv/lib/dotjs/pattern.js +0 -74
  342. package/node_modules/ajv/lib/dotjs/patternRequired.js +0 -51
  343. package/node_modules/ajv/lib/dotjs/properties.js +0 -445
  344. package/node_modules/ajv/lib/dotjs/ref.js +0 -119
  345. package/node_modules/ajv/lib/dotjs/required.js +0 -249
  346. package/node_modules/ajv/lib/dotjs/switch.js +0 -128
  347. package/node_modules/ajv/lib/dotjs/uniqueItems.js +0 -71
  348. package/node_modules/ajv/lib/dotjs/validate.js +0 -375
  349. package/node_modules/ajv/lib/keyword.js +0 -129
  350. package/node_modules/ajv/lib/refs/json-schema-draft-04.json +0 -150
  351. package/node_modules/ajv/lib/refs/json-schema-v5.json +0 -328
  352. package/node_modules/ajv/lib/v5.js +0 -52
  353. package/node_modules/ajv/package.json +0 -132
  354. package/node_modules/ajv/scripts/.eslintrc.yml +0 -3
  355. package/node_modules/ajv/scripts/bundle.js +0 -54
  356. package/node_modules/ajv/scripts/compile-dots.js +0 -73
  357. package/node_modules/ajv/scripts/info +0 -10
  358. package/node_modules/ajv/scripts/prepare-tests +0 -9
  359. package/node_modules/ajv/scripts/travis-gh-pages +0 -23
  360. package/node_modules/asn1/.npmignore +0 -2
  361. package/node_modules/asn1/.travis.yml +0 -4
  362. package/node_modules/asn1/LICENSE +0 -19
  363. package/node_modules/asn1/README.md +0 -50
  364. package/node_modules/asn1/lib/ber/errors.js +0 -13
  365. package/node_modules/asn1/lib/ber/index.js +0 -27
  366. package/node_modules/asn1/lib/ber/reader.js +0 -261
  367. package/node_modules/asn1/lib/ber/types.js +0 -36
  368. package/node_modules/asn1/lib/ber/writer.js +0 -316
  369. package/node_modules/asn1/lib/index.js +0 -20
  370. package/node_modules/asn1/package.json +0 -66
  371. package/node_modules/asn1/tst/ber/reader.test.js +0 -208
  372. package/node_modules/asn1/tst/ber/writer.test.js +0 -370
  373. package/node_modules/assert-plus/AUTHORS +0 -6
  374. package/node_modules/assert-plus/CHANGES.md +0 -8
  375. package/node_modules/assert-plus/README.md +0 -155
  376. package/node_modules/assert-plus/assert.js +0 -206
  377. package/node_modules/assert-plus/package.json +0 -83
  378. package/node_modules/asynckit/README.md +0 -233
  379. package/node_modules/asynckit/bench.js +0 -76
  380. package/node_modules/asynckit/index.js +0 -6
  381. package/node_modules/asynckit/lib/abort.js +0 -29
  382. package/node_modules/asynckit/lib/async.js +0 -34
  383. package/node_modules/asynckit/lib/defer.js +0 -26
  384. package/node_modules/asynckit/lib/iterate.js +0 -75
  385. package/node_modules/asynckit/lib/readable_asynckit.js +0 -91
  386. package/node_modules/asynckit/lib/readable_parallel.js +0 -25
  387. package/node_modules/asynckit/lib/readable_serial.js +0 -25
  388. package/node_modules/asynckit/lib/readable_serial_ordered.js +0 -29
  389. package/node_modules/asynckit/lib/state.js +0 -37
  390. package/node_modules/asynckit/lib/streamify.js +0 -141
  391. package/node_modules/asynckit/lib/terminator.js +0 -29
  392. package/node_modules/asynckit/package.json +0 -92
  393. package/node_modules/asynckit/parallel.js +0 -43
  394. package/node_modules/asynckit/serial.js +0 -17
  395. package/node_modules/asynckit/serialOrdered.js +0 -75
  396. package/node_modules/asynckit/stream.js +0 -21
  397. package/node_modules/aws-sign2/LICENSE +0 -55
  398. package/node_modules/aws-sign2/README.md +0 -4
  399. package/node_modules/aws-sign2/index.js +0 -212
  400. package/node_modules/aws-sign2/package.json +0 -51
  401. package/node_modules/aws4/.npmignore +0 -4
  402. package/node_modules/aws4/.tern-port +0 -1
  403. package/node_modules/aws4/.travis.yml +0 -5
  404. package/node_modules/aws4/LICENSE +0 -19
  405. package/node_modules/aws4/README.md +0 -523
  406. package/node_modules/aws4/aws4.js +0 -332
  407. package/node_modules/aws4/lru.js +0 -96
  408. package/node_modules/aws4/package.json +0 -105
  409. package/node_modules/bcrypt-pbkdf/README.md +0 -39
  410. package/node_modules/bcrypt-pbkdf/index.js +0 -556
  411. package/node_modules/bcrypt-pbkdf/package.json +0 -38
  412. package/node_modules/block-stream/LICENCE +0 -25
  413. package/node_modules/block-stream/README.md +0 -14
  414. package/node_modules/block-stream/block-stream.js +0 -209
  415. package/node_modules/block-stream/package.json +0 -61
  416. package/node_modules/boom/.npmignore +0 -18
  417. package/node_modules/boom/.travis.yml +0 -8
  418. package/node_modules/boom/CONTRIBUTING.md +0 -1
  419. package/node_modules/boom/LICENSE +0 -28
  420. package/node_modules/boom/README.md +0 -652
  421. package/node_modules/boom/images/boom.png +0 -0
  422. package/node_modules/boom/lib/index.js +0 -318
  423. package/node_modules/boom/package.json +0 -59
  424. package/node_modules/boom/test/index.js +0 -654
  425. package/node_modules/buffer-shims/index.js +0 -108
  426. package/node_modules/buffer-shims/license.md +0 -19
  427. package/node_modules/buffer-shims/package.json +0 -50
  428. package/node_modules/buffer-shims/readme.md +0 -21
  429. package/node_modules/caseless/LICENSE +0 -28
  430. package/node_modules/caseless/README.md +0 -45
  431. package/node_modules/caseless/index.js +0 -67
  432. package/node_modules/caseless/package.json +0 -57
  433. package/node_modules/caseless/test.js +0 -67
  434. package/node_modules/co/History.md +0 -172
  435. package/node_modules/co/LICENSE +0 -22
  436. package/node_modules/co/Readme.md +0 -212
  437. package/node_modules/co/index.js +0 -237
  438. package/node_modules/co/package.json +0 -67
  439. package/node_modules/combined-stream/License +0 -19
  440. package/node_modules/combined-stream/Readme.md +0 -138
  441. package/node_modules/combined-stream/lib/combined_stream.js +0 -188
  442. package/node_modules/combined-stream/package.json +0 -58
  443. package/node_modules/cryptiles/.npmignore +0 -18
  444. package/node_modules/cryptiles/.travis.yml +0 -8
  445. package/node_modules/cryptiles/LICENSE +0 -28
  446. package/node_modules/cryptiles/README.md +0 -16
  447. package/node_modules/cryptiles/lib/index.js +0 -68
  448. package/node_modules/cryptiles/package.json +0 -60
  449. package/node_modules/cryptiles/test/index.js +0 -102
  450. package/node_modules/dashdash/CHANGES.md +0 -364
  451. package/node_modules/dashdash/LICENSE.txt +0 -24
  452. package/node_modules/dashdash/README.md +0 -574
  453. package/node_modules/dashdash/etc/dashdash.bash_completion.in +0 -389
  454. package/node_modules/dashdash/lib/dashdash.js +0 -1055
  455. package/node_modules/dashdash/node_modules/assert-plus/AUTHORS +0 -6
  456. package/node_modules/dashdash/node_modules/assert-plus/CHANGES.md +0 -14
  457. package/node_modules/dashdash/node_modules/assert-plus/README.md +0 -162
  458. package/node_modules/dashdash/node_modules/assert-plus/assert.js +0 -211
  459. package/node_modules/dashdash/node_modules/assert-plus/package.json +0 -83
  460. package/node_modules/dashdash/package.json +0 -68
  461. package/node_modules/delayed-stream/.npmignore +0 -1
  462. package/node_modules/delayed-stream/Makefile +0 -7
  463. package/node_modules/delayed-stream/Readme.md +0 -141
  464. package/node_modules/delayed-stream/lib/delayed_stream.js +0 -107
  465. package/node_modules/delayed-stream/package.json +0 -63
  466. package/node_modules/ecc-jsbn/.npmignore +0 -15
  467. package/node_modules/ecc-jsbn/LICENSE +0 -21
  468. package/node_modules/ecc-jsbn/README.md +0 -8
  469. package/node_modules/ecc-jsbn/index.js +0 -57
  470. package/node_modules/ecc-jsbn/lib/LICENSE-jsbn +0 -40
  471. package/node_modules/ecc-jsbn/lib/ec.js +0 -561
  472. package/node_modules/ecc-jsbn/lib/sec.js +0 -170
  473. package/node_modules/ecc-jsbn/package.json +0 -66
  474. package/node_modules/ecc-jsbn/test.js +0 -14
  475. package/node_modules/extend/.eslintrc +0 -17
  476. package/node_modules/extend/.jscs.json +0 -175
  477. package/node_modules/extend/.npmignore +0 -1
  478. package/node_modules/extend/.travis.yml +0 -179
  479. package/node_modules/extend/CHANGELOG.md +0 -77
  480. package/node_modules/extend/LICENSE +0 -23
  481. package/node_modules/extend/README.md +0 -81
  482. package/node_modules/extend/component.json +0 -32
  483. package/node_modules/extend/index.js +0 -86
  484. package/node_modules/extend/package.json +0 -76
  485. package/node_modules/extsprintf/.gitmodules +0 -6
  486. package/node_modules/extsprintf/LICENSE +0 -19
  487. package/node_modules/extsprintf/Makefile +0 -23
  488. package/node_modules/extsprintf/Makefile.deps +0 -39
  489. package/node_modules/extsprintf/Makefile.targ +0 -285
  490. package/node_modules/extsprintf/README.md +0 -39
  491. package/node_modules/extsprintf/examples/simple.js +0 -2
  492. package/node_modules/extsprintf/jsl.node.conf +0 -137
  493. package/node_modules/extsprintf/lib/extsprintf.js +0 -166
  494. package/node_modules/extsprintf/package.json +0 -43
  495. package/node_modules/forever-agent/LICENSE +0 -55
  496. package/node_modules/forever-agent/README.md +0 -4
  497. package/node_modules/forever-agent/index.js +0 -138
  498. package/node_modules/forever-agent/package.json +0 -51
  499. package/node_modules/form-data/License +0 -19
  500. package/node_modules/form-data/README.md +0 -217
  501. package/node_modules/form-data/lib/browser.js +0 -2
  502. package/node_modules/form-data/lib/form_data.js +0 -444
  503. package/node_modules/form-data/lib/populate.js +0 -10
  504. package/node_modules/form-data/package.json +0 -99
  505. package/node_modules/fstream/.npmignore +0 -5
  506. package/node_modules/fstream/.travis.yml +0 -9
  507. package/node_modules/fstream/README.md +0 -76
  508. package/node_modules/fstream/examples/filter-pipe.js +0 -134
  509. package/node_modules/fstream/examples/pipe.js +0 -118
  510. package/node_modules/fstream/examples/reader.js +0 -68
  511. package/node_modules/fstream/examples/symlink-write.js +0 -27
  512. package/node_modules/fstream/fstream.js +0 -35
  513. package/node_modules/fstream/lib/abstract.js +0 -85
  514. package/node_modules/fstream/lib/collect.js +0 -70
  515. package/node_modules/fstream/lib/dir-reader.js +0 -252
  516. package/node_modules/fstream/lib/dir-writer.js +0 -174
  517. package/node_modules/fstream/lib/file-reader.js +0 -150
  518. package/node_modules/fstream/lib/file-writer.js +0 -107
  519. package/node_modules/fstream/lib/get-type.js +0 -33
  520. package/node_modules/fstream/lib/link-reader.js +0 -53
  521. package/node_modules/fstream/lib/link-writer.js +0 -95
  522. package/node_modules/fstream/lib/proxy-reader.js +0 -95
  523. package/node_modules/fstream/lib/proxy-writer.js +0 -111
  524. package/node_modules/fstream/lib/reader.js +0 -255
  525. package/node_modules/fstream/lib/socket-reader.js +0 -36
  526. package/node_modules/fstream/lib/writer.js +0 -390
  527. package/node_modules/fstream/package.json +0 -62
  528. package/node_modules/fstream-ignore/README.md +0 -22
  529. package/node_modules/fstream-ignore/ignore.js +0 -275
  530. package/node_modules/fstream-ignore/package.json +0 -62
  531. package/node_modules/getpass/.npmignore +0 -8
  532. package/node_modules/getpass/.travis.yml +0 -9
  533. package/node_modules/getpass/LICENSE +0 -18
  534. package/node_modules/getpass/README.md +0 -32
  535. package/node_modules/getpass/lib/index.js +0 -123
  536. package/node_modules/getpass/node_modules/assert-plus/AUTHORS +0 -6
  537. package/node_modules/getpass/node_modules/assert-plus/CHANGES.md +0 -14
  538. package/node_modules/getpass/node_modules/assert-plus/README.md +0 -162
  539. package/node_modules/getpass/node_modules/assert-plus/assert.js +0 -211
  540. package/node_modules/getpass/node_modules/assert-plus/package.json +0 -83
  541. package/node_modules/getpass/package.json +0 -51
  542. package/node_modules/graceful-fs/LICENSE +0 -15
  543. package/node_modules/graceful-fs/README.md +0 -133
  544. package/node_modules/graceful-fs/fs.js +0 -21
  545. package/node_modules/graceful-fs/graceful-fs.js +0 -262
  546. package/node_modules/graceful-fs/legacy-streams.js +0 -118
  547. package/node_modules/graceful-fs/package.json +0 -77
  548. package/node_modules/graceful-fs/polyfills.js +0 -330
  549. package/node_modules/har-schema/LICENSE +0 -13
  550. package/node_modules/har-schema/README.md +0 -49
  551. package/node_modules/har-schema/lib/afterRequest.json +0 -29
  552. package/node_modules/har-schema/lib/beforeRequest.json +0 -29
  553. package/node_modules/har-schema/lib/browser.json +0 -19
  554. package/node_modules/har-schema/lib/cache.json +0 -20
  555. package/node_modules/har-schema/lib/content.json +0 -28
  556. package/node_modules/har-schema/lib/cookie.json +0 -35
  557. package/node_modules/har-schema/lib/creator.json +0 -19
  558. package/node_modules/har-schema/lib/entry.json +0 -52
  559. package/node_modules/har-schema/lib/har.json +0 -12
  560. package/node_modules/har-schema/lib/header.json +0 -19
  561. package/node_modules/har-schema/lib/index.js +0 -22
  562. package/node_modules/har-schema/lib/log.json +0 -35
  563. package/node_modules/har-schema/lib/page.json +0 -31
  564. package/node_modules/har-schema/lib/pageTimings.json +0 -17
  565. package/node_modules/har-schema/lib/postData.json +0 -42
  566. package/node_modules/har-schema/lib/query.json +0 -19
  567. package/node_modules/har-schema/lib/request.json +0 -56
  568. package/node_modules/har-schema/lib/response.json +0 -53
  569. package/node_modules/har-schema/lib/timings.json +0 -41
  570. package/node_modules/har-schema/package.json +0 -87
  571. package/node_modules/har-validator/LICENSE +0 -13
  572. package/node_modules/har-validator/README.md +0 -75
  573. package/node_modules/har-validator/lib/browser/async.js +0 -96
  574. package/node_modules/har-validator/lib/browser/error.js +0 -15
  575. package/node_modules/har-validator/lib/browser/promise.js +0 -93
  576. package/node_modules/har-validator/lib/node4/async.js +0 -136
  577. package/node_modules/har-validator/lib/node4/error.js +0 -22
  578. package/node_modules/har-validator/lib/node4/promise.js +0 -132
  579. package/node_modules/har-validator/lib/node6/async.js +0 -133
  580. package/node_modules/har-validator/lib/node6/error.js +0 -22
  581. package/node_modules/har-validator/lib/node6/promise.js +0 -130
  582. package/node_modules/har-validator/lib/node7/async.js +0 -133
  583. package/node_modules/har-validator/lib/node7/error.js +0 -22
  584. package/node_modules/har-validator/lib/node7/promise.js +0 -130
  585. package/node_modules/har-validator/package.json +0 -102
  586. package/node_modules/har-validator/src/async.js +0 -96
  587. package/node_modules/har-validator/src/error.js +0 -15
  588. package/node_modules/har-validator/src/promise.js +0 -93
  589. package/node_modules/hawk/.npmignore +0 -20
  590. package/node_modules/hawk/.travis.yml +0 -5
  591. package/node_modules/hawk/LICENSE +0 -28
  592. package/node_modules/hawk/README.md +0 -634
  593. package/node_modules/hawk/bower.json +0 -24
  594. package/node_modules/hawk/component.json +0 -19
  595. package/node_modules/hawk/dist/client.js +0 -343
  596. package/node_modules/hawk/example/usage.js +0 -78
  597. package/node_modules/hawk/images/hawk.png +0 -0
  598. package/node_modules/hawk/images/logo.png +0 -0
  599. package/node_modules/hawk/lib/browser.js +0 -637
  600. package/node_modules/hawk/lib/client.js +0 -369
  601. package/node_modules/hawk/lib/crypto.js +0 -126
  602. package/node_modules/hawk/lib/index.js +0 -15
  603. package/node_modules/hawk/lib/server.js +0 -548
  604. package/node_modules/hawk/lib/utils.js +0 -184
  605. package/node_modules/hawk/package.json +0 -71
  606. package/node_modules/hawk/test/browser.js +0 -1492
  607. package/node_modules/hawk/test/client.js +0 -440
  608. package/node_modules/hawk/test/crypto.js +0 -70
  609. package/node_modules/hawk/test/index.js +0 -378
  610. package/node_modules/hawk/test/readme.js +0 -95
  611. package/node_modules/hawk/test/server.js +0 -1329
  612. package/node_modules/hawk/test/uri.js +0 -838
  613. package/node_modules/hawk/test/utils.js +0 -149
  614. package/node_modules/hoek/.npmignore +0 -18
  615. package/node_modules/hoek/.travis.yml +0 -7
  616. package/node_modules/hoek/CONTRIBUTING.md +0 -1
  617. package/node_modules/hoek/LICENSE +0 -31
  618. package/node_modules/hoek/README.md +0 -584
  619. package/node_modules/hoek/images/hoek.png +0 -0
  620. package/node_modules/hoek/lib/escape.js +0 -132
  621. package/node_modules/hoek/lib/index.js +0 -993
  622. package/node_modules/hoek/package.json +0 -56
  623. package/node_modules/hoek/test/escaper.js +0 -88
  624. package/node_modules/hoek/test/index.js +0 -2513
  625. package/node_modules/hoek/test/modules/ignore.txt +0 -0
  626. package/node_modules/hoek/test/modules/test1.js +0 -1
  627. package/node_modules/hoek/test/modules/test2.js +0 -1
  628. package/node_modules/hoek/test/modules/test3.js +0 -1
  629. package/node_modules/http-signature/.dir-locals.el +0 -6
  630. package/node_modules/http-signature/.npmignore +0 -7
  631. package/node_modules/http-signature/CHANGES.md +0 -46
  632. package/node_modules/http-signature/LICENSE +0 -18
  633. package/node_modules/http-signature/README.md +0 -79
  634. package/node_modules/http-signature/http_signing.md +0 -363
  635. package/node_modules/http-signature/lib/index.js +0 -29
  636. package/node_modules/http-signature/lib/parser.js +0 -318
  637. package/node_modules/http-signature/lib/signer.js +0 -399
  638. package/node_modules/http-signature/lib/utils.js +0 -112
  639. package/node_modules/http-signature/lib/verify.js +0 -88
  640. package/node_modules/http-signature/package.json +0 -78
  641. package/node_modules/is-typedarray/LICENSE.md +0 -18
  642. package/node_modules/is-typedarray/README.md +0 -16
  643. package/node_modules/is-typedarray/index.js +0 -41
  644. package/node_modules/is-typedarray/package.json +0 -60
  645. package/node_modules/is-typedarray/test.js +0 -34
  646. package/node_modules/isstream/.jshintrc +0 -59
  647. package/node_modules/isstream/.npmignore +0 -1
  648. package/node_modules/isstream/.travis.yml +0 -12
  649. package/node_modules/isstream/LICENSE.md +0 -11
  650. package/node_modules/isstream/README.md +0 -66
  651. package/node_modules/isstream/isstream.js +0 -27
  652. package/node_modules/isstream/package.json +0 -62
  653. package/node_modules/isstream/test.js +0 -168
  654. package/node_modules/jodid25519/.npmignore +0 -11
  655. package/node_modules/jodid25519/.travis.yml +0 -7
  656. package/node_modules/jodid25519/AUTHORS.md +0 -3
  657. package/node_modules/jodid25519/LICENSE +0 -23
  658. package/node_modules/jodid25519/README.md +0 -51
  659. package/node_modules/jodid25519/almond.0 +0 -42
  660. package/node_modules/jodid25519/almond.1 +0 -13
  661. package/node_modules/jodid25519/index.js +0 -35
  662. package/node_modules/jodid25519/jsdoc.json +0 -19
  663. package/node_modules/jodid25519/lib/core.js +0 -481
  664. package/node_modules/jodid25519/lib/curve255.js +0 -221
  665. package/node_modules/jodid25519/lib/dh.js +0 -111
  666. package/node_modules/jodid25519/lib/eddsa.js +0 -573
  667. package/node_modules/jodid25519/lib/utils.js +0 -198
  668. package/node_modules/jodid25519/package.json +0 -76
  669. package/node_modules/jsbn/.npmignore +0 -2
  670. package/node_modules/jsbn/LICENSE +0 -40
  671. package/node_modules/jsbn/README.md +0 -175
  672. package/node_modules/jsbn/example.html +0 -12
  673. package/node_modules/jsbn/example.js +0 -3
  674. package/node_modules/jsbn/index.js +0 -1357
  675. package/node_modules/jsbn/package.json +0 -54
  676. package/node_modules/json-schema/README.md +0 -5
  677. package/node_modules/json-schema/draft-00/hyper-schema +0 -68
  678. package/node_modules/json-schema/draft-00/json-ref +0 -26
  679. package/node_modules/json-schema/draft-00/links +0 -33
  680. package/node_modules/json-schema/draft-00/schema +0 -155
  681. package/node_modules/json-schema/draft-01/hyper-schema +0 -68
  682. package/node_modules/json-schema/draft-01/json-ref +0 -26
  683. package/node_modules/json-schema/draft-01/links +0 -33
  684. package/node_modules/json-schema/draft-01/schema +0 -155
  685. package/node_modules/json-schema/draft-02/hyper-schema +0 -68
  686. package/node_modules/json-schema/draft-02/json-ref +0 -26
  687. package/node_modules/json-schema/draft-02/links +0 -35
  688. package/node_modules/json-schema/draft-02/schema +0 -166
  689. package/node_modules/json-schema/draft-03/examples/address +0 -20
  690. package/node_modules/json-schema/draft-03/examples/calendar +0 -53
  691. package/node_modules/json-schema/draft-03/examples/card +0 -105
  692. package/node_modules/json-schema/draft-03/examples/geo +0 -8
  693. package/node_modules/json-schema/draft-03/examples/interfaces +0 -23
  694. package/node_modules/json-schema/draft-03/hyper-schema +0 -60
  695. package/node_modules/json-schema/draft-03/json-ref +0 -26
  696. package/node_modules/json-schema/draft-03/links +0 -35
  697. package/node_modules/json-schema/draft-03/schema +0 -174
  698. package/node_modules/json-schema/draft-04/hyper-schema +0 -60
  699. package/node_modules/json-schema/draft-04/links +0 -41
  700. package/node_modules/json-schema/draft-04/schema +0 -189
  701. package/node_modules/json-schema/draft-zyp-json-schema-03.xml +0 -1120
  702. package/node_modules/json-schema/draft-zyp-json-schema-04.xml +0 -1072
  703. package/node_modules/json-schema/lib/links.js +0 -66
  704. package/node_modules/json-schema/lib/validate.js +0 -273
  705. package/node_modules/json-schema/package.json +0 -72
  706. package/node_modules/json-schema/test/tests.js +0 -95
  707. package/node_modules/json-stable-stringify/.npmignore +0 -1
  708. package/node_modules/json-stable-stringify/.travis.yml +0 -4
  709. package/node_modules/json-stable-stringify/LICENSE +0 -18
  710. package/node_modules/json-stable-stringify/example/key_cmp.js +0 -7
  711. package/node_modules/json-stable-stringify/example/nested.js +0 -3
  712. package/node_modules/json-stable-stringify/example/str.js +0 -3
  713. package/node_modules/json-stable-stringify/example/value_cmp.js +0 -7
  714. package/node_modules/json-stable-stringify/index.js +0 -84
  715. package/node_modules/json-stable-stringify/package.json +0 -75
  716. package/node_modules/json-stable-stringify/readme.markdown +0 -130
  717. package/node_modules/json-stable-stringify/test/cmp.js +0 -11
  718. package/node_modules/json-stable-stringify/test/nested.js +0 -35
  719. package/node_modules/json-stable-stringify/test/replacer.js +0 -74
  720. package/node_modules/json-stable-stringify/test/space.js +0 -59
  721. package/node_modules/json-stable-stringify/test/str.js +0 -32
  722. package/node_modules/json-stable-stringify/test/to-json.js +0 -20
  723. package/node_modules/json-stringify-safe/.npmignore +0 -1
  724. package/node_modules/json-stringify-safe/CHANGELOG.md +0 -14
  725. package/node_modules/json-stringify-safe/Makefile +0 -35
  726. package/node_modules/json-stringify-safe/README.md +0 -52
  727. package/node_modules/json-stringify-safe/package.json +0 -67
  728. package/node_modules/json-stringify-safe/stringify.js +0 -27
  729. package/node_modules/json-stringify-safe/test/mocha.opts +0 -2
  730. package/node_modules/json-stringify-safe/test/stringify_test.js +0 -246
  731. package/node_modules/jsonify/README.markdown +0 -34
  732. package/node_modules/jsonify/index.js +0 -2
  733. package/node_modules/jsonify/lib/parse.js +0 -273
  734. package/node_modules/jsonify/lib/stringify.js +0 -154
  735. package/node_modules/jsonify/package.json +0 -60
  736. package/node_modules/jsonify/test/parse.js +0 -16
  737. package/node_modules/jsonify/test/stringify.js +0 -15
  738. package/node_modules/jsprim/CHANGES.md +0 -43
  739. package/node_modules/jsprim/LICENSE +0 -19
  740. package/node_modules/jsprim/README.md +0 -292
  741. package/node_modules/jsprim/lib/jsprim.js +0 -735
  742. package/node_modules/jsprim/node_modules/assert-plus/AUTHORS +0 -6
  743. package/node_modules/jsprim/node_modules/assert-plus/CHANGES.md +0 -14
  744. package/node_modules/jsprim/node_modules/assert-plus/README.md +0 -162
  745. package/node_modules/jsprim/node_modules/assert-plus/assert.js +0 -211
  746. package/node_modules/jsprim/node_modules/assert-plus/package.json +0 -83
  747. package/node_modules/jsprim/package.json +0 -50
  748. package/node_modules/mime-db/HISTORY.md +0 -412
  749. package/node_modules/mime-db/LICENSE +0 -22
  750. package/node_modules/mime-db/README.md +0 -82
  751. package/node_modules/mime-db/db.json +0 -6805
  752. package/node_modules/mime-db/index.js +0 -11
  753. package/node_modules/mime-db/package.json +0 -99
  754. package/node_modules/mime-types/HISTORY.md +0 -223
  755. package/node_modules/mime-types/LICENSE +0 -23
  756. package/node_modules/mime-types/README.md +0 -108
  757. package/node_modules/mime-types/index.js +0 -188
  758. package/node_modules/mime-types/package.json +0 -85
  759. package/node_modules/oauth-sign/LICENSE +0 -55
  760. package/node_modules/oauth-sign/README.md +0 -4
  761. package/node_modules/oauth-sign/index.js +0 -136
  762. package/node_modules/oauth-sign/package.json +0 -57
  763. package/node_modules/osenv/.npmignore +0 -13
  764. package/node_modules/osenv/.travis.yml +0 -9
  765. package/node_modules/osenv/test/unix.js +0 -71
  766. package/node_modules/osenv/test/windows.js +0 -74
  767. package/node_modules/osenv/x.tap +0 -39
  768. package/node_modules/performance-now/.npmignore +0 -1
  769. package/node_modules/performance-now/.tm_properties +0 -7
  770. package/node_modules/performance-now/.travis.yml +0 -4
  771. package/node_modules/performance-now/Makefile +0 -25
  772. package/node_modules/performance-now/README.md +0 -30
  773. package/node_modules/performance-now/lib/performance-now.js +0 -32
  774. package/node_modules/performance-now/license.txt +0 -7
  775. package/node_modules/performance-now/package.json +0 -58
  776. package/node_modules/performance-now/src/performance-now.coffee +0 -15
  777. package/node_modules/performance-now/test/mocha.opts +0 -3
  778. package/node_modules/performance-now/test/performance-now.coffee +0 -38
  779. package/node_modules/process-nextick-args/.travis.yml +0 -12
  780. package/node_modules/process-nextick-args/test.js +0 -24
  781. package/node_modules/punycode/README.md +0 -176
  782. package/node_modules/punycode/package.json +0 -92
  783. package/node_modules/punycode/punycode.js +0 -533
  784. package/node_modules/qs/.eslintignore +0 -1
  785. package/node_modules/qs/.eslintrc +0 -18
  786. package/node_modules/qs/.jscs.json +0 -176
  787. package/node_modules/qs/CHANGELOG.md +0 -175
  788. package/node_modules/qs/LICENSE +0 -28
  789. package/node_modules/qs/README.md +0 -440
  790. package/node_modules/qs/dist/qs.js +0 -597
  791. package/node_modules/qs/lib/formats.js +0 -18
  792. package/node_modules/qs/lib/index.js +0 -11
  793. package/node_modules/qs/lib/parse.js +0 -167
  794. package/node_modules/qs/lib/stringify.js +0 -207
  795. package/node_modules/qs/lib/utils.js +0 -182
  796. package/node_modules/qs/package.json +0 -79
  797. package/node_modules/qs/test/.eslintrc +0 -11
  798. package/node_modules/qs/test/index.js +0 -7
  799. package/node_modules/qs/test/parse.js +0 -519
  800. package/node_modules/qs/test/stringify.js +0 -567
  801. package/node_modules/qs/test/utils.js +0 -22
  802. package/node_modules/rc/.npmignore +0 -3
  803. package/node_modules/readable-stream/.npmignore +0 -9
  804. package/node_modules/request/CHANGELOG.md +0 -674
  805. package/node_modules/request/LICENSE +0 -55
  806. package/node_modules/request/README.md +0 -1115
  807. package/node_modules/request/index.js +0 -156
  808. package/node_modules/request/lib/auth.js +0 -168
  809. package/node_modules/request/lib/cookies.js +0 -39
  810. package/node_modules/request/lib/getProxyFromURI.js +0 -79
  811. package/node_modules/request/lib/har.js +0 -215
  812. package/node_modules/request/lib/helpers.js +0 -66
  813. package/node_modules/request/lib/multipart.js +0 -113
  814. package/node_modules/request/lib/oauth.js +0 -148
  815. package/node_modules/request/lib/querystring.js +0 -51
  816. package/node_modules/request/lib/redirect.js +0 -157
  817. package/node_modules/request/lib/tunnel.js +0 -176
  818. package/node_modules/request/package.json +0 -119
  819. package/node_modules/request/request.js +0 -1565
  820. package/node_modules/safe-buffer/browser.js +0 -1
  821. package/node_modules/sntp/.npmignore +0 -18
  822. package/node_modules/sntp/.travis.yml +0 -5
  823. package/node_modules/sntp/LICENSE +0 -28
  824. package/node_modules/sntp/Makefile +0 -9
  825. package/node_modules/sntp/README.md +0 -68
  826. package/node_modules/sntp/examples/offset.js +0 -16
  827. package/node_modules/sntp/examples/time.js +0 -25
  828. package/node_modules/sntp/index.js +0 -1
  829. package/node_modules/sntp/lib/index.js +0 -412
  830. package/node_modules/sntp/package.json +0 -69
  831. package/node_modules/sntp/test/index.js +0 -435
  832. package/node_modules/sshpk/.npmignore +0 -9
  833. package/node_modules/sshpk/.travis.yml +0 -11
  834. package/node_modules/sshpk/LICENSE +0 -18
  835. package/node_modules/sshpk/README.md +0 -698
  836. package/node_modules/sshpk/bin/sshpk-conv +0 -201
  837. package/node_modules/sshpk/bin/sshpk-sign +0 -191
  838. package/node_modules/sshpk/bin/sshpk-verify +0 -166
  839. package/node_modules/sshpk/lib/algs.js +0 -168
  840. package/node_modules/sshpk/lib/certificate.js +0 -377
  841. package/node_modules/sshpk/lib/dhe.js +0 -410
  842. package/node_modules/sshpk/lib/ed-compat.js +0 -96
  843. package/node_modules/sshpk/lib/errors.js +0 -84
  844. package/node_modules/sshpk/lib/fingerprint.js +0 -161
  845. package/node_modules/sshpk/lib/formats/auto.js +0 -73
  846. package/node_modules/sshpk/lib/formats/openssh-cert.js +0 -322
  847. package/node_modules/sshpk/lib/formats/pem.js +0 -186
  848. package/node_modules/sshpk/lib/formats/pkcs1.js +0 -320
  849. package/node_modules/sshpk/lib/formats/pkcs8.js +0 -505
  850. package/node_modules/sshpk/lib/formats/rfc4253.js +0 -146
  851. package/node_modules/sshpk/lib/formats/ssh-private.js +0 -261
  852. package/node_modules/sshpk/lib/formats/ssh.js +0 -114
  853. package/node_modules/sshpk/lib/formats/x509-pem.js +0 -77
  854. package/node_modules/sshpk/lib/formats/x509.js +0 -726
  855. package/node_modules/sshpk/lib/identity.js +0 -277
  856. package/node_modules/sshpk/lib/index.js +0 -39
  857. package/node_modules/sshpk/lib/key.js +0 -274
  858. package/node_modules/sshpk/lib/private-key.js +0 -255
  859. package/node_modules/sshpk/lib/signature.js +0 -313
  860. package/node_modules/sshpk/lib/ssh-buffer.js +0 -148
  861. package/node_modules/sshpk/lib/utils.js +0 -288
  862. package/node_modules/sshpk/man/man1/sshpk-conv.1 +0 -135
  863. package/node_modules/sshpk/man/man1/sshpk-sign.1 +0 -81
  864. package/node_modules/sshpk/man/man1/sshpk-verify.1 +0 -68
  865. package/node_modules/sshpk/node_modules/assert-plus/AUTHORS +0 -6
  866. package/node_modules/sshpk/node_modules/assert-plus/CHANGES.md +0 -14
  867. package/node_modules/sshpk/node_modules/assert-plus/README.md +0 -162
  868. package/node_modules/sshpk/node_modules/assert-plus/assert.js +0 -211
  869. package/node_modules/sshpk/node_modules/assert-plus/package.json +0 -83
  870. package/node_modules/sshpk/package.json +0 -103
  871. package/node_modules/string_decoder/.npmignore +0 -2
  872. package/node_modules/stringstream/.npmignore +0 -15
  873. package/node_modules/stringstream/.travis.yml +0 -4
  874. package/node_modules/stringstream/LICENSE.txt +0 -22
  875. package/node_modules/stringstream/README.md +0 -38
  876. package/node_modules/stringstream/example.js +0 -27
  877. package/node_modules/stringstream/package.json +0 -52
  878. package/node_modules/stringstream/stringstream.js +0 -102
  879. package/node_modules/tar/.npmignore +0 -5
  880. package/node_modules/tar/.travis.yml +0 -4
  881. package/node_modules/tar/examples/extracter.js +0 -19
  882. package/node_modules/tar/examples/packer.js +0 -24
  883. package/node_modules/tar/examples/reader.js +0 -36
  884. package/node_modules/tar/lib/buffer-entry.js +0 -30
  885. package/node_modules/tar/lib/entry-writer.js +0 -169
  886. package/node_modules/tar/lib/entry.js +0 -220
  887. package/node_modules/tar/lib/extended-header-writer.js +0 -191
  888. package/node_modules/tar/lib/extended-header.js +0 -140
  889. package/node_modules/tar/lib/global-header-writer.js +0 -14
  890. package/node_modules/tar/tar.js +0 -173
  891. package/node_modules/tar/test/00-setup-fixtures.js +0 -53
  892. package/node_modules/tar/test/cb-never-called-1.0.1.tgz +0 -0
  893. package/node_modules/tar/test/dir-normalization.js +0 -177
  894. package/node_modules/tar/test/dir-normalization.tar +0 -0
  895. package/node_modules/tar/test/error-on-broken.js +0 -33
  896. package/node_modules/tar/test/extract-move.js +0 -132
  897. package/node_modules/tar/test/extract.js +0 -367
  898. package/node_modules/tar/test/fixtures.tgz +0 -0
  899. package/node_modules/tar/test/header.js +0 -183
  900. package/node_modules/tar/test/pack-no-proprietary.js +0 -886
  901. package/node_modules/tar/test/pack.js +0 -952
  902. package/node_modules/tar/test/parse-discard.js +0 -29
  903. package/node_modules/tar/test/parse.js +0 -359
  904. package/node_modules/tar/test/zz-cleanup.js +0 -20
  905. package/node_modules/tar-pack/.npmignore +0 -14
  906. package/node_modules/tar-pack/.travis.yml +0 -7
  907. package/node_modules/tar-pack/LICENSE +0 -23
  908. package/node_modules/tar-pack/README.md +0 -84
  909. package/node_modules/tar-pack/index.js +0 -245
  910. package/node_modules/tar-pack/package.json +0 -58
  911. package/node_modules/tar-pack/test/fixtures/packed-file.txt +0 -1
  912. package/node_modules/tar-pack/test/fixtures/packed.tar +0 -0
  913. package/node_modules/tar-pack/test/fixtures/packed.tar.gz +0 -0
  914. package/node_modules/tar-pack/test/fixtures/to-pack/bar.txt +0 -1
  915. package/node_modules/tar-pack/test/fixtures/to-pack/foo.txt +0 -1
  916. package/node_modules/tar-pack/test/index.js +0 -109
  917. package/node_modules/tough-cookie/LICENSE +0 -27
  918. package/node_modules/tough-cookie/README.md +0 -506
  919. package/node_modules/tough-cookie/lib/cookie.js +0 -1336
  920. package/node_modules/tough-cookie/lib/memstore.js +0 -170
  921. package/node_modules/tough-cookie/lib/pathMatch.js +0 -61
  922. package/node_modules/tough-cookie/lib/permuteDomain.js +0 -56
  923. package/node_modules/tough-cookie/lib/pubsuffix.js +0 -98
  924. package/node_modules/tough-cookie/lib/store.js +0 -71
  925. package/node_modules/tough-cookie/package.json +0 -93
  926. package/node_modules/tunnel-agent/LICENSE +0 -55
  927. package/node_modules/tunnel-agent/README.md +0 -4
  928. package/node_modules/tunnel-agent/index.js +0 -244
  929. package/node_modules/tunnel-agent/package.json +0 -56
  930. package/node_modules/tweetnacl/.npmignore +0 -4
  931. package/node_modules/tweetnacl/AUTHORS.md +0 -28
  932. package/node_modules/tweetnacl/CHANGELOG.md +0 -221
  933. package/node_modules/tweetnacl/LICENSE +0 -24
  934. package/node_modules/tweetnacl/PULL_REQUEST_TEMPLATE.md +0 -20
  935. package/node_modules/tweetnacl/README.md +0 -459
  936. package/node_modules/tweetnacl/nacl-fast.js +0 -2388
  937. package/node_modules/tweetnacl/nacl-fast.min.js +0 -2
  938. package/node_modules/tweetnacl/nacl.d.ts +0 -98
  939. package/node_modules/tweetnacl/nacl.js +0 -1175
  940. package/node_modules/tweetnacl/nacl.min.js +0 -1
  941. package/node_modules/tweetnacl/package.json +0 -87
  942. package/node_modules/uid-number/LICENSE +0 -15
  943. package/node_modules/uid-number/README.md +0 -17
  944. package/node_modules/uid-number/get-uid-gid.js +0 -24
  945. package/node_modules/uid-number/package.json +0 -52
  946. package/node_modules/uid-number/uid-number.js +0 -59
  947. package/node_modules/uuid/.npmignore +0 -8
  948. package/node_modules/uuid/.travis.yml +0 -5
  949. package/node_modules/uuid/AUTHORS +0 -5
  950. package/node_modules/uuid/HISTORY.md +0 -28
  951. package/node_modules/uuid/LICENSE.md +0 -21
  952. package/node_modules/uuid/README.md +0 -132
  953. package/node_modules/uuid/bin/uuid +0 -26
  954. package/node_modules/uuid/index.js +0 -8
  955. package/node_modules/uuid/lib/bytesToUuid.js +0 -23
  956. package/node_modules/uuid/lib/rng-browser.js +0 -33
  957. package/node_modules/uuid/lib/rng.js +0 -10
  958. package/node_modules/uuid/package.json +0 -79
  959. package/node_modules/uuid/test/mocha.opts +0 -3
  960. package/node_modules/uuid/test/test.js +0 -96
  961. package/node_modules/uuid/v1.js +0 -103
  962. package/node_modules/uuid/v4.js +0 -29
  963. package/node_modules/verror/.gitmodules +0 -0
  964. package/node_modules/verror/.npmignore +0 -1
  965. package/node_modules/verror/LICENSE +0 -19
  966. package/node_modules/verror/Makefile +0 -35
  967. package/node_modules/verror/Makefile.targ +0 -285
  968. package/node_modules/verror/README.md +0 -120
  969. package/node_modules/verror/examples/levels-verror.js +0 -36
  970. package/node_modules/verror/examples/levels-werror.js +0 -34
  971. package/node_modules/verror/examples/varargs.js +0 -6
  972. package/node_modules/verror/examples/verror.js +0 -13
  973. package/node_modules/verror/examples/werror.js +0 -14
  974. package/node_modules/verror/jsl.node.conf +0 -139
  975. package/node_modules/verror/lib/verror.js +0 -157
  976. package/node_modules/verror/package.json +0 -49
  977. package/node_modules/verror/tests/tst.inherit.js +0 -100
  978. package/node_modules/verror/tests/tst.verror.js +0 -156
  979. package/node_modules/verror/tests/tst.werror.js +0 -179
@@ -1,50 +1,949 @@
1
1
  # node-tar
2
2
 
3
- Tar for Node.js.
3
+ [![Build Status](https://travis-ci.org/npm/node-tar.svg?branch=master)](https://travis-ci.org/npm/node-tar)
4
4
 
5
- [![NPM](https://nodei.co/npm/tar.png)](https://nodei.co/npm/tar/)
5
+ [Fast](./benchmarks) and full-featured Tar for Node.js
6
6
 
7
- ## API
7
+ The API is designed to mimic the behavior of `tar(1)` on unix systems.
8
+ If you are familiar with how tar works, most of this will hopefully be
9
+ straightforward for you. If not, then hopefully this module can teach
10
+ you useful unix skills that may come in handy someday :)
8
11
 
9
- See `examples/` for usage examples.
12
+ ## Background
10
13
 
11
- ### var tar = require('tar')
14
+ A "tar file" or "tarball" is an archive of file system entries
15
+ (directories, files, links, etc.) The name comes from "tape archive".
16
+ If you run `man tar` on almost any Unix command line, you'll learn
17
+ quite a bit about what it can do, and its history.
12
18
 
13
- Returns an object with `.Pack`, `.Extract` and `.Parse` methods.
19
+ Tar has 5 main top-level commands:
14
20
 
15
- ### tar.Pack([properties])
21
+ * `c` Create an archive
22
+ * `r` Replace entries within an archive
23
+ * `u` Update entries within an archive (ie, replace if they're newer)
24
+ * `t` List out the contents of an archive
25
+ * `x` Extract an archive to disk
16
26
 
17
- Returns a through stream. Use
18
- [fstream](https://npmjs.org/package/fstream) to write files into the
19
- pack stream and you will receive tar archive data from the pack
20
- stream.
27
+ The other flags and options modify how this top level function works.
21
28
 
22
- This only works with directories, it does not work with individual files.
29
+ ## High-Level API
23
30
 
24
- The optional `properties` object are used to set properties in the tar
25
- 'Global Extended Header'. If the `fromBase` property is set to true,
26
- the tar will contain files relative to the path passed, and not with
27
- the path included.
31
+ These 5 functions are the high-level API. All of them have a
32
+ single-character name (for unix nerds familiar with `tar(1)`) as well
33
+ as a long name (for everyone else).
28
34
 
29
- ### tar.Extract([options])
35
+ All the high-level functions take the following arguments, all three
36
+ of which are optional and may be omitted.
30
37
 
31
- Returns a through stream. Write tar data to the stream and the files
32
- in the tarball will be extracted onto the filesystem.
38
+ 1. `options` - An optional object specifying various options
39
+ 2. `paths` - An array of paths to add or extract
40
+ 3. `callback` - Called when the command is completed, if async. (If
41
+ sync or no file specified, providing a callback throws a
42
+ `TypeError`.)
33
43
 
34
- `options` can be:
44
+ If the command is sync (ie, if `options.sync=true`), then the
45
+ callback is not allowed, since the action will be completed immediately.
46
+
47
+ If a `file` argument is specified, and the command is async, then a
48
+ `Promise` is returned. In this case, if async, a callback may be
49
+ provided which is called when the command is completed.
50
+
51
+ If a `file` option is not specified, then a stream is returned. For
52
+ `create`, this is a readable stream of the generated archive. For
53
+ `list` and `extract` this is a writable stream that an archive should
54
+ be written into. If a file is not specified, then a callback is not
55
+ allowed, because you're already getting a stream to work with.
56
+
57
+ `replace` and `update` only work on existing archives, and so require
58
+ a `file` argument.
59
+
60
+ Sync commands without a file argument return a stream that acts on its
61
+ input immediately in the same tick. For readable streams, this means
62
+ that all of the data is immediately available by calling
63
+ `stream.read()`. For writable streams, it will be acted upon as soon
64
+ as it is provided, but this can be at any time.
65
+
66
+ ### Warnings
67
+
68
+ Some things cause tar to emit a warning, but should usually not cause
69
+ the entire operation to fail. There are three ways to handle
70
+ warnings:
71
+
72
+ 1. **Ignore them** (default) Invalid entries won't be put in the
73
+ archive, and invalid entries won't be unpacked. This is usually
74
+ fine, but can hide failures that you might care about.
75
+ 2. **Notice them** Add an `onwarn` function to the options, or listen
76
+ to the `'warn'` event on any tar stream. The function will get
77
+ called as `onwarn(message, data)`. Handle as appropriate.
78
+ 3. **Explode them.** Set `strict: true` in the options object, and
79
+ `warn` messages will be emitted as `'error'` events instead. If
80
+ there's no `error` handler, this causes the program to crash. If
81
+ used with a promise-returning/callback-taking method, then it'll
82
+ send the error to the promise/callback.
83
+
84
+ ### Examples
85
+
86
+ The API mimics the `tar(1)` command line functionality, with aliases
87
+ for more human-readable option and function names. The goal is that
88
+ if you know how to use `tar(1)` in Unix, then you know how to use
89
+ `require('tar')` in JavaScript.
90
+
91
+ To replicate `tar czf my-tarball.tgz files and folders`, you'd do:
92
+
93
+ ```js
94
+ tar.c(
95
+ {
96
+ gzip: <true|gzip options>,
97
+ file: 'my-tarball.tgz'
98
+ },
99
+ ['some', 'files', 'and', 'folders']
100
+ ).then(_ => { .. tarball has been created .. })
101
+ ```
102
+
103
+ To replicate `tar cz files and folders > my-tarball.tgz`, you'd do:
104
+
105
+ ```js
106
+ tar.c( // or tar.create
107
+ {
108
+ gzip: <true|gzip options>
109
+ },
110
+ ['some', 'files', 'and', 'folders']
111
+ ).pipe(fs.createWriteStream('my-tarball.tgz')
112
+ ```
113
+
114
+ To replicate `tar xf my-tarball.tgz` you'd do:
115
+
116
+ ```js
117
+ tar.x( // or tar.extract(
118
+ {
119
+ file: 'my-tarball.tgz'
120
+ }
121
+ ).then(_=> { .. tarball has been dumped in cwd .. })
122
+ ```
123
+
124
+ To replicate `cat my-tarball.tgz | tar x -C some-dir --strip=1`:
35
125
 
36
126
  ```js
37
- {
38
- path: '/path/to/extract/tar/into',
39
- strip: 0, // how many path segments to strip from the root when extracting
40
- }
127
+ fs.createReadStream('my-tarball.tgz').pipe(
128
+ tar.x({
129
+ strip: 1,
130
+ C: 'some-dir' // alias for cwd:'some-dir', also ok
131
+ })
132
+ )
41
133
  ```
42
134
 
43
- `options` also get passed to the `fstream.Writer` instance that `tar`
44
- uses internally.
135
+ To replicate `tar tf my-tarball.tgz`, do this:
136
+
137
+ ```js
138
+ tar.t({
139
+ file: 'my-tarball.tgz',
140
+ onentry: entry => { .. do whatever with it .. }
141
+ })
142
+ ```
143
+
144
+ To replicate `cat my-tarball.tgz | tar t` do:
145
+
146
+ ```js
147
+ fs.createReadStream('my-tarball.tgz')
148
+ .pipe(tar.t())
149
+ .on('entry', entry => { .. do whatever with it .. })
150
+ ```
151
+
152
+ To do anything synchronous, add `sync: true` to the options. Note
153
+ that sync functions don't take a callback and don't return a promise.
154
+ When the function returns, it's already done. Sync methods without a
155
+ file argument return a sync stream, which flushes immediately. But,
156
+ of course, it still won't be done until you `.end()` it.
157
+
158
+ To filter entries, add `filter: <function>` to the options.
159
+ Tar-creating methods call the filter with `filter(path, stat)`.
160
+ Tar-reading methods (including extraction) call the filter with
161
+ `filter(path, entry)`. The filter is called in the `this`-context of
162
+ the `Pack` or `Unpack` stream object.
163
+
164
+ The arguments list to `tar t` and `tar x` specify a list of filenames
165
+ to extract or list, so they're equivalent to a filter that tests if
166
+ the file is in the list.
167
+
168
+ For those who _aren't_ fans of tar's single-character command names:
169
+
170
+ ```
171
+ tar.c === tar.create
172
+ tar.r === tar.replace (appends to archive, file is required)
173
+ tar.u === tar.update (appends if newer, file is required)
174
+ tar.x === tar.extract
175
+ tar.t === tar.list
176
+ ```
177
+
178
+ Keep reading for all the command descriptions and options, as well as
179
+ the low-level API that they are built on.
180
+
181
+ ### tar.c(options, fileList, callback) [alias: tar.create]
182
+
183
+ Create a tarball archive.
184
+
185
+ The `fileList` is an array of paths to add to the tarball. Adding a
186
+ directory also adds its children recursively.
187
+
188
+ An entry in `fileList` that starts with an `@` symbol is a tar archive
189
+ whose entries will be added. To add a file that starts with `@`,
190
+ prepend it with `./`.
191
+
192
+ The following options are supported:
193
+
194
+ - `file` Write the tarball archive to the specified filename. If this
195
+ is specified, then the callback will be fired when the file has been
196
+ written, and a promise will be returned that resolves when the file
197
+ is written. If a filename is not specified, then a Readable Stream
198
+ will be returned which will emit the file data. [Alias: `f`]
199
+ - `sync` Act synchronously. If this is set, then any provided file
200
+ will be fully written after the call to `tar.c`. If this is set,
201
+ and a file is not provided, then the resulting stream will already
202
+ have the data ready to `read` or `emit('data')` as soon as you
203
+ request it.
204
+ - `onwarn` A function that will get called with `(message, data)` for
205
+ any warnings encountered.
206
+ - `strict` Treat warnings as crash-worthy errors. Default false.
207
+ - `cwd` The current working directory for creating the archive.
208
+ Defaults to `process.cwd()`. [Alias: `C`]
209
+ - `prefix` A path portion to prefix onto the entries in the archive.
210
+ - `gzip` Set to any truthy value to create a gzipped archive, or an
211
+ object with settings for `zlib.Gzip()` [Alias: `z`]
212
+ - `filter` A function that gets called with `(path, stat)` for each
213
+ entry being added. Return `true` to add the entry to the archive,
214
+ or `false` to omit it.
215
+ - `portable` Omit metadata that is system-specific: `ctime`, `atime`,
216
+ `uid`, `gid`, `uname`, `gname`, `dev`, `ino`, and `nlink`. Note
217
+ that `mtime` is still included, because this is necessary other
218
+ time-based operations.
219
+ - `preservePaths` Allow absolute paths. By default, `/` is stripped
220
+ from absolute paths. [Alias: `P`]
221
+ - `mode` The mode to set on the created file archive
222
+ - `noDirRecurse` Do not recursively archive the contents of
223
+ directories. [Alias: `n`]
224
+ - `follow` Set to true to pack the targets of symbolic links. Without
225
+ this option, symbolic links are archived as such. [Alias: `L`, `h`]
226
+ - `noPax` Suppress pax extended headers. Note that this means that
227
+ long paths and linkpaths will be truncated, and large or negative
228
+ numeric values may be interpreted incorrectly.
229
+ - `noMtime` Set to true to omit writing `mtime` values for entries.
230
+ Note that this prevents using other mtime-based features like
231
+ `tar.update` or the `keepNewer` option with the resulting tar archive.
232
+ [Alias: `m`, `no-mtime`]
233
+
234
+ The following options are mostly internal, but can be modified in some
235
+ advanced use cases, such as re-using caches between runs.
236
+
237
+ - `linkCache` A Map object containing the device and inode value for
238
+ any file whose nlink is > 1, to identify hard links.
239
+ - `statCache` A Map object that caches calls `lstat`.
240
+ - `readdirCache` A Map object that caches calls to `readdir`.
241
+ - `jobs` A number specifying how many concurrent jobs to run.
242
+ Defaults to 4.
243
+ - `maxReadSize` The maximum buffer size for `fs.read()` operations.
244
+ Defaults to 16 MB.
245
+
246
+ ### tar.x(options, fileList, callback) [alias: tar.extract]
247
+
248
+ Extract a tarball archive.
249
+
250
+ The `fileList` is an array of paths to extract from the tarball. If
251
+ no paths are provided, then all the entries are extracted.
252
+
253
+ If the archive is gzipped, then tar will detect this and unzip it.
254
+
255
+ Note that all directories that are created will be forced to be
256
+ writable, readable, and listable by their owner, to avoid cases where
257
+ a directory prevents extraction of child entries by virtue of its
258
+ mode.
259
+
260
+ Most extraction errors will cause a `warn` event to be emitted. If
261
+ the `cwd` is missing, or not a directory, then the extraction will
262
+ fail completely.
263
+
264
+ The following options are supported:
265
+
266
+ - `cwd` Extract files relative to the specified directory. Defaults
267
+ to `process.cwd()`. If provided, this must exist and must be a
268
+ directory. [Alias: `C`]
269
+ - `file` The archive file to extract. If not specified, then a
270
+ Writable stream is returned where the archive data should be
271
+ written. [Alias: `f`]
272
+ - `sync` Create files and directories synchronously.
273
+ - `strict` Treat warnings as crash-worthy errors. Default false.
274
+ - `filter` A function that gets called with `(path, entry)` for each
275
+ entry being unpacked. Return `true` to unpack the entry from the
276
+ archive, or `false` to skip it.
277
+ - `newer` Set to true to keep the existing file on disk if it's newer
278
+ than the file in the archive. [Alias: `keep-newer`,
279
+ `keep-newer-files`]
280
+ - `keep` Do not overwrite existing files. In particular, if a file
281
+ appears more than once in an archive, later copies will not
282
+ overwrite earlier copies. [Alias: `k`, `keep-existing`]
283
+ - `preservePaths` Allow absolute paths, paths containing `..`, and
284
+ extracting through symbolic links. By default, `/` is stripped from
285
+ absolute paths, `..` paths are not extracted, and any file whose
286
+ location would be modified by a symbolic link is not extracted.
287
+ [Alias: `P`]
288
+ - `unlink` Unlink files before creating them. Without this option,
289
+ tar overwrites existing files, which preserves existing hardlinks.
290
+ With this option, existing hardlinks will be broken, as will any
291
+ symlink that would affect the location of an extracted file. [Alias:
292
+ `U`]
293
+ - `strip` Remove the specified number of leading path elements.
294
+ Pathnames with fewer elements will be silently skipped. Note that
295
+ the pathname is edited after applying the filter, but before
296
+ security checks. [Alias: `strip-components`, `stripComponents`]
297
+ - `onwarn` A function that will get called with `(message, data)` for
298
+ any warnings encountered.
299
+ - `preserveOwner` If true, tar will set the `uid` and `gid` of
300
+ extracted entries to the `uid` and `gid` fields in the archive.
301
+ This defaults to true when run as root, and false otherwise. If
302
+ false, then files and directories will be set with the owner and
303
+ group of the user running the process. This is similar to `-p` in
304
+ `tar(1)`, but ACLs and other system-specific data is never unpacked
305
+ in this implementation, and modes are set by default already.
306
+ [Alias: `p`]
307
+ - `uid` Set to a number to force ownership of all extracted files and
308
+ folders, and all implicitly created directories, to be owned by the
309
+ specified user id, regardless of the `uid` field in the archive.
310
+ Cannot be used along with `preserveOwner`. Requires also setting a
311
+ `gid` option.
312
+ - `gid` Set to a number to force ownership of all extracted files and
313
+ folders, and all implicitly created directories, to be owned by the
314
+ specified group id, regardless of the `gid` field in the archive.
315
+ Cannot be used along with `preserveOwner`. Requires also setting a
316
+ `uid` option.
317
+ - `noMtime` Set to true to omit writing `mtime` value for extracted
318
+ entries. [Alias: `m`, `no-mtime`]
319
+ - `transform` Provide a function that takes an `entry` object, and
320
+ returns a stream, or any falsey value. If a stream is provided,
321
+ then that stream's data will be written instead of the contents of
322
+ the archive entry. If a falsey value is provided, then the entry is
323
+ written to disk as normal. (To exclude items from extraction, use
324
+ the `filter` option described above.)
325
+ - `onentry` A function that gets called with `(entry)` for each entry
326
+ that passes the filter.
327
+
328
+ The following options are mostly internal, but can be modified in some
329
+ advanced use cases, such as re-using caches between runs.
330
+
331
+ - `maxReadSize` The maximum buffer size for `fs.read()` operations.
332
+ Defaults to 16 MB.
333
+ - `umask` Filter the modes of entries like `process.umask()`.
334
+ - `dmode` Default mode for directories
335
+ - `fmode` Default mode for files
336
+ - `dirCache` A Map object of which directories exist.
337
+ - `maxMetaEntrySize` The maximum size of meta entries that is
338
+ supported. Defaults to 1 MB.
339
+
340
+ Note that using an asynchronous stream type with the `transform`
341
+ option will cause undefined behavior in sync extractions.
342
+ [MiniPass](http://npm.im/minipass)-based streams are designed for this
343
+ use case.
344
+
345
+ ### tar.t(options, fileList, callback) [alias: tar.list]
346
+
347
+ List the contents of a tarball archive.
348
+
349
+ The `fileList` is an array of paths to list from the tarball. If
350
+ no paths are provided, then all the entries are listed.
351
+
352
+ If the archive is gzipped, then tar will detect this and unzip it.
353
+
354
+ Returns an event emitter that emits `entry` events with
355
+ `tar.ReadEntry` objects. However, they don't emit `'data'` or `'end'`
356
+ events. (If you want to get actual readable entries, use the
357
+ `tar.Parse` class instead.)
358
+
359
+ The following options are supported:
360
+
361
+ - `cwd` Extract files relative to the specified directory. Defaults
362
+ to `process.cwd()`. [Alias: `C`]
363
+ - `file` The archive file to list. If not specified, then a
364
+ Writable stream is returned where the archive data should be
365
+ written. [Alias: `f`]
366
+ - `sync` Read the specified file synchronously. (This has no effect
367
+ when a file option isn't specified, because entries are emitted as
368
+ fast as they are parsed from the stream anyway.)
369
+ - `strict` Treat warnings as crash-worthy errors. Default false.
370
+ - `filter` A function that gets called with `(path, entry)` for each
371
+ entry being listed. Return `true` to emit the entry from the
372
+ archive, or `false` to skip it.
373
+ - `onentry` A function that gets called with `(entry)` for each entry
374
+ that passes the filter. This is important for when both `file` and
375
+ `sync` are set, because it will be called synchronously.
376
+ - `maxReadSize` The maximum buffer size for `fs.read()` operations.
377
+ Defaults to 16 MB.
378
+ - `noResume` By default, `entry` streams are resumed immediately after
379
+ the call to `onentry`. Set `noResume: true` to suppress this
380
+ behavior. Note that by opting into this, the stream will never
381
+ complete until the entry data is consumed.
382
+
383
+ ### tar.u(options, fileList, callback) [alias: tar.update]
384
+
385
+ Add files to an archive if they are newer than the entry already in
386
+ the tarball archive.
387
+
388
+ The `fileList` is an array of paths to add to the tarball. Adding a
389
+ directory also adds its children recursively.
390
+
391
+ An entry in `fileList` that starts with an `@` symbol is a tar archive
392
+ whose entries will be added. To add a file that starts with `@`,
393
+ prepend it with `./`.
394
+
395
+ The following options are supported:
396
+
397
+ - `file` Required. Write the tarball archive to the specified
398
+ filename. [Alias: `f`]
399
+ - `sync` Act synchronously. If this is set, then any provided file
400
+ will be fully written after the call to `tar.c`.
401
+ - `onwarn` A function that will get called with `(message, data)` for
402
+ any warnings encountered.
403
+ - `strict` Treat warnings as crash-worthy errors. Default false.
404
+ - `cwd` The current working directory for adding entries to the
405
+ archive. Defaults to `process.cwd()`. [Alias: `C`]
406
+ - `prefix` A path portion to prefix onto the entries in the archive.
407
+ - `gzip` Set to any truthy value to create a gzipped archive, or an
408
+ object with settings for `zlib.Gzip()` [Alias: `z`]
409
+ - `filter` A function that gets called with `(path, stat)` for each
410
+ entry being added. Return `true` to add the entry to the archive,
411
+ or `false` to omit it.
412
+ - `portable` Omit metadata that is system-specific: `ctime`, `atime`,
413
+ `uid`, `gid`, `uname`, `gname`, `dev`, `ino`, and `nlink`. Note
414
+ that `mtime` is still included, because this is necessary other
415
+ time-based operations.
416
+ - `preservePaths` Allow absolute paths. By default, `/` is stripped
417
+ from absolute paths. [Alias: `P`]
418
+ - `maxReadSize` The maximum buffer size for `fs.read()` operations.
419
+ Defaults to 16 MB.
420
+ - `noDirRecurse` Do not recursively archive the contents of
421
+ directories. [Alias: `n`]
422
+ - `follow` Set to true to pack the targets of symbolic links. Without
423
+ this option, symbolic links are archived as such. [Alias: `L`, `h`]
424
+ - `noPax` Suppress pax extended headers. Note that this means that
425
+ long paths and linkpaths will be truncated, and large or negative
426
+ numeric values may be interpreted incorrectly.
427
+ - `noMtime` Set to true to omit writing `mtime` values for entries.
428
+ Note that this prevents using other mtime-based features like
429
+ `tar.update` or the `keepNewer` option with the resulting tar archive.
430
+ [Alias: `m`, `no-mtime`]
431
+ - `mtime` Set to a `Date` object to force a specific `mtime` for
432
+ everything added to the archive. Overridden by `noMtime`.
433
+
434
+ ### tar.r(options, fileList, callback) [alias: tar.replace]
435
+
436
+ Add files to an existing archive. Because later entries override
437
+ earlier entries, this effectively replaces any existing entries.
438
+
439
+ The `fileList` is an array of paths to add to the tarball. Adding a
440
+ directory also adds its children recursively.
441
+
442
+ An entry in `fileList` that starts with an `@` symbol is a tar archive
443
+ whose entries will be added. To add a file that starts with `@`,
444
+ prepend it with `./`.
445
+
446
+ The following options are supported:
447
+
448
+ - `file` Required. Write the tarball archive to the specified
449
+ filename. [Alias: `f`]
450
+ - `sync` Act synchronously. If this is set, then any provided file
451
+ will be fully written after the call to `tar.c`.
452
+ - `onwarn` A function that will get called with `(message, data)` for
453
+ any warnings encountered.
454
+ - `strict` Treat warnings as crash-worthy errors. Default false.
455
+ - `cwd` The current working directory for adding entries to the
456
+ archive. Defaults to `process.cwd()`. [Alias: `C`]
457
+ - `prefix` A path portion to prefix onto the entries in the archive.
458
+ - `gzip` Set to any truthy value to create a gzipped archive, or an
459
+ object with settings for `zlib.Gzip()` [Alias: `z`]
460
+ - `filter` A function that gets called with `(path, stat)` for each
461
+ entry being added. Return `true` to add the entry to the archive,
462
+ or `false` to omit it.
463
+ - `portable` Omit metadata that is system-specific: `ctime`, `atime`,
464
+ `uid`, `gid`, `uname`, `gname`, `dev`, `ino`, and `nlink`. Note
465
+ that `mtime` is still included, because this is necessary other
466
+ time-based operations.
467
+ - `preservePaths` Allow absolute paths. By default, `/` is stripped
468
+ from absolute paths. [Alias: `P`]
469
+ - `maxReadSize` The maximum buffer size for `fs.read()` operations.
470
+ Defaults to 16 MB.
471
+ - `noDirRecurse` Do not recursively archive the contents of
472
+ directories. [Alias: `n`]
473
+ - `follow` Set to true to pack the targets of symbolic links. Without
474
+ this option, symbolic links are archived as such. [Alias: `L`, `h`]
475
+ - `noPax` Suppress pax extended headers. Note that this means that
476
+ long paths and linkpaths will be truncated, and large or negative
477
+ numeric values may be interpreted incorrectly.
478
+ - `noMtime` Set to true to omit writing `mtime` values for entries.
479
+ Note that this prevents using other mtime-based features like
480
+ `tar.update` or the `keepNewer` option with the resulting tar archive.
481
+ [Alias: `m`, `no-mtime`]
482
+ - `mtime` Set to a `Date` object to force a specific `mtime` for
483
+ everything added to the archive. Overridden by `noMtime`.
484
+
485
+
486
+ ## Low-Level API
487
+
488
+ ### class tar.Pack
489
+
490
+ A readable tar stream.
491
+
492
+ Has all the standard readable stream interface stuff. `'data'` and
493
+ `'end'` events, `read()` method, `pause()` and `resume()`, etc.
494
+
495
+ #### constructor(options)
496
+
497
+ The following options are supported:
498
+
499
+ - `onwarn` A function that will get called with `(message, data)` for
500
+ any warnings encountered.
501
+ - `strict` Treat warnings as crash-worthy errors. Default false.
502
+ - `cwd` The current working directory for creating the archive.
503
+ Defaults to `process.cwd()`.
504
+ - `prefix` A path portion to prefix onto the entries in the archive.
505
+ - `gzip` Set to any truthy value to create a gzipped archive, or an
506
+ object with settings for `zlib.Gzip()`
507
+ - `filter` A function that gets called with `(path, stat)` for each
508
+ entry being added. Return `true` to add the entry to the archive,
509
+ or `false` to omit it.
510
+ - `portable` Omit metadata that is system-specific: `ctime`, `atime`,
511
+ `uid`, `gid`, `uname`, `gname`, `dev`, `ino`, and `nlink`. Note
512
+ that `mtime` is still included, because this is necessary other
513
+ time-based operations.
514
+ - `preservePaths` Allow absolute paths. By default, `/` is stripped
515
+ from absolute paths.
516
+ - `linkCache` A Map object containing the device and inode value for
517
+ any file whose nlink is > 1, to identify hard links.
518
+ - `statCache` A Map object that caches calls `lstat`.
519
+ - `readdirCache` A Map object that caches calls to `readdir`.
520
+ - `jobs` A number specifying how many concurrent jobs to run.
521
+ Defaults to 4.
522
+ - `maxReadSize` The maximum buffer size for `fs.read()` operations.
523
+ Defaults to 16 MB.
524
+ - `noDirRecurse` Do not recursively archive the contents of
525
+ directories.
526
+ - `follow` Set to true to pack the targets of symbolic links. Without
527
+ this option, symbolic links are archived as such.
528
+ - `noPax` Suppress pax extended headers. Note that this means that
529
+ long paths and linkpaths will be truncated, and large or negative
530
+ numeric values may be interpreted incorrectly.
531
+ - `noMtime` Set to true to omit writing `mtime` values for entries.
532
+ Note that this prevents using other mtime-based features like
533
+ `tar.update` or the `keepNewer` option with the resulting tar archive.
534
+ - `mtime` Set to a `Date` object to force a specific `mtime` for
535
+ everything added to the archive. Overridden by `noMtime`.
536
+
537
+
538
+ #### add(path)
539
+
540
+ Adds an entry to the archive. Returns the Pack stream.
541
+
542
+ #### write(path)
543
+
544
+ Adds an entry to the archive. Returns true if flushed.
545
+
546
+ #### end()
547
+
548
+ Finishes the archive.
549
+
550
+ ### class tar.Pack.Sync
551
+
552
+ Synchronous version of `tar.Pack`.
553
+
554
+ ### class tar.Unpack
555
+
556
+ A writable stream that unpacks a tar archive onto the file system.
557
+
558
+ All the normal writable stream stuff is supported. `write()` and
559
+ `end()` methods, `'drain'` events, etc.
560
+
561
+ Note that all directories that are created will be forced to be
562
+ writable, readable, and listable by their owner, to avoid cases where
563
+ a directory prevents extraction of child entries by virtue of its
564
+ mode.
565
+
566
+ `'close'` is emitted when it's done writing stuff to the file system.
567
+
568
+ Most unpack errors will cause a `warn` event to be emitted. If the
569
+ `cwd` is missing, or not a directory, then an error will be emitted.
570
+
571
+ #### constructor(options)
572
+
573
+ - `cwd` Extract files relative to the specified directory. Defaults
574
+ to `process.cwd()`. If provided, this must exist and must be a
575
+ directory.
576
+ - `filter` A function that gets called with `(path, entry)` for each
577
+ entry being unpacked. Return `true` to unpack the entry from the
578
+ archive, or `false` to skip it.
579
+ - `newer` Set to true to keep the existing file on disk if it's newer
580
+ than the file in the archive.
581
+ - `keep` Do not overwrite existing files. In particular, if a file
582
+ appears more than once in an archive, later copies will not
583
+ overwrite earlier copies.
584
+ - `preservePaths` Allow absolute paths, paths containing `..`, and
585
+ extracting through symbolic links. By default, `/` is stripped from
586
+ absolute paths, `..` paths are not extracted, and any file whose
587
+ location would be modified by a symbolic link is not extracted.
588
+ - `unlink` Unlink files before creating them. Without this option,
589
+ tar overwrites existing files, which preserves existing hardlinks.
590
+ With this option, existing hardlinks will be broken, as will any
591
+ symlink that would affect the location of an extracted file.
592
+ - `strip` Remove the specified number of leading path elements.
593
+ Pathnames with fewer elements will be silently skipped. Note that
594
+ the pathname is edited after applying the filter, but before
595
+ security checks.
596
+ - `onwarn` A function that will get called with `(message, data)` for
597
+ any warnings encountered.
598
+ - `umask` Filter the modes of entries like `process.umask()`.
599
+ - `dmode` Default mode for directories
600
+ - `fmode` Default mode for files
601
+ - `dirCache` A Map object of which directories exist.
602
+ - `maxMetaEntrySize` The maximum size of meta entries that is
603
+ supported. Defaults to 1 MB.
604
+ - `preserveOwner` If true, tar will set the `uid` and `gid` of
605
+ extracted entries to the `uid` and `gid` fields in the archive.
606
+ This defaults to true when run as root, and false otherwise. If
607
+ false, then files and directories will be set with the owner and
608
+ group of the user running the process. This is similar to `-p` in
609
+ `tar(1)`, but ACLs and other system-specific data is never unpacked
610
+ in this implementation, and modes are set by default already.
611
+ - `win32` True if on a windows platform. Causes behavior where
612
+ filenames containing `<|>?` chars are converted to
613
+ windows-compatible values while being unpacked.
614
+ - `uid` Set to a number to force ownership of all extracted files and
615
+ folders, and all implicitly created directories, to be owned by the
616
+ specified user id, regardless of the `uid` field in the archive.
617
+ Cannot be used along with `preserveOwner`. Requires also setting a
618
+ `gid` option.
619
+ - `gid` Set to a number to force ownership of all extracted files and
620
+ folders, and all implicitly created directories, to be owned by the
621
+ specified group id, regardless of the `gid` field in the archive.
622
+ Cannot be used along with `preserveOwner`. Requires also setting a
623
+ `uid` option.
624
+ - `noMtime` Set to true to omit writing `mtime` value for extracted
625
+ entries.
626
+ - `transform` Provide a function that takes an `entry` object, and
627
+ returns a stream, or any falsey value. If a stream is provided,
628
+ then that stream's data will be written instead of the contents of
629
+ the archive entry. If a falsey value is provided, then the entry is
630
+ written to disk as normal. (To exclude items from extraction, use
631
+ the `filter` option described above.)
632
+ - `strict` Treat warnings as crash-worthy errors. Default false.
633
+ - `onentry` A function that gets called with `(entry)` for each entry
634
+ that passes the filter.
635
+ - `onwarn` A function that will get called with `(message, data)` for
636
+ any warnings encountered.
637
+
638
+ ### class tar.Unpack.Sync
639
+
640
+ Synchronous version of `tar.Unpack`.
641
+
642
+ Note that using an asynchronous stream type with the `transform`
643
+ option will cause undefined behavior in sync unpack streams.
644
+ [MiniPass](http://npm.im/minipass)-based streams are designed for this
645
+ use case.
646
+
647
+ ### class tar.Parse
648
+
649
+ A writable stream that parses a tar archive stream. All the standard
650
+ writable stream stuff is supported.
651
+
652
+ If the archive is gzipped, then tar will detect this and unzip it.
653
+
654
+ Emits `'entry'` events with `tar.ReadEntry` objects, which are
655
+ themselves readable streams that you can pipe wherever.
656
+
657
+ Each `entry` will not emit until the one before it is flushed through,
658
+ so make sure to either consume the data (with `on('data', ...)` or
659
+ `.pipe(...)`) or throw it away with `.resume()` to keep the stream
660
+ flowing.
661
+
662
+ #### constructor(options)
663
+
664
+ Returns an event emitter that emits `entry` events with
665
+ `tar.ReadEntry` objects.
666
+
667
+ The following options are supported:
668
+
669
+ - `strict` Treat warnings as crash-worthy errors. Default false.
670
+ - `filter` A function that gets called with `(path, entry)` for each
671
+ entry being listed. Return `true` to emit the entry from the
672
+ archive, or `false` to skip it.
673
+ - `onentry` A function that gets called with `(entry)` for each entry
674
+ that passes the filter.
675
+ - `onwarn` A function that will get called with `(message, data)` for
676
+ any warnings encountered.
677
+
678
+ #### abort(message, error)
679
+
680
+ Stop all parsing activities. This is called when there are zlib
681
+ errors. It also emits a warning with the message and error provided.
682
+
683
+ ### class tar.ReadEntry extends [MiniPass](http://npm.im/minipass)
684
+
685
+ A representation of an entry that is being read out of a tar archive.
686
+
687
+ It has the following fields:
688
+
689
+ - `extended` The extended metadata object provided to the constructor.
690
+ - `globalExtended` The global extended metadata object provided to the
691
+ constructor.
692
+ - `remain` The number of bytes remaining to be written into the
693
+ stream.
694
+ - `blockRemain` The number of 512-byte blocks remaining to be written
695
+ into the stream.
696
+ - `ignore` Whether this entry should be ignored.
697
+ - `meta` True if this represents metadata about the next entry, false
698
+ if it represents a filesystem object.
699
+ - All the fields from the header, extended header, and global extended
700
+ header are added to the ReadEntry object. So it has `path`, `type`,
701
+ `size, `mode`, and so on.
702
+
703
+ #### constructor(header, extended, globalExtended)
704
+
705
+ Create a new ReadEntry object with the specified header, extended
706
+ header, and global extended header values.
707
+
708
+ ### class tar.WriteEntry extends [MiniPass](http://npm.im/minipass)
709
+
710
+ A representation of an entry that is being written from the file
711
+ system into a tar archive.
712
+
713
+ Emits data for the Header, and for the Pax Extended Header if one is
714
+ required, as well as any body data.
715
+
716
+ Creating a WriteEntry for a directory does not also create
717
+ WriteEntry objects for all of the directory contents.
718
+
719
+ It has the following fields:
720
+
721
+ - `path` The path field that will be written to the archive. By
722
+ default, this is also the path from the cwd to the file system
723
+ object.
724
+ - `portable` Omit metadata that is system-specific: `ctime`, `atime`,
725
+ `uid`, `gid`, `uname`, `gname`, `dev`, `ino`, and `nlink`. Note
726
+ that `mtime` is still included, because this is necessary other
727
+ time-based operations.
728
+ - `myuid` If supported, the uid of the user running the current
729
+ process.
730
+ - `myuser` The `env.USER` string if set, or `''`. Set as the entry
731
+ `uname` field if the file's `uid` matches `this.myuid`.
732
+ - `maxReadSize` The maximum buffer size for `fs.read()` operations.
733
+ Defaults to 1 MB.
734
+ - `linkCache` A Map object containing the device and inode value for
735
+ any file whose nlink is > 1, to identify hard links.
736
+ - `statCache` A Map object that caches calls `lstat`.
737
+ - `preservePaths` Allow absolute paths. By default, `/` is stripped
738
+ from absolute paths.
739
+ - `cwd` The current working directory for creating the archive.
740
+ Defaults to `process.cwd()`.
741
+ - `absolute` The absolute path to the entry on the filesystem. By
742
+ default, this is `path.resolve(this.cwd, this.path)`, but it can be
743
+ overridden explicitly.
744
+ - `strict` Treat warnings as crash-worthy errors. Default false.
745
+ - `win32` True if on a windows platform. Causes behavior where paths
746
+ replace `\` with `/` and filenames containing the windows-compatible
747
+ forms of `<|>?:` characters are converted to actual `<|>?:` characters
748
+ in the archive.
749
+ - `noPax` Suppress pax extended headers. Note that this means that
750
+ long paths and linkpaths will be truncated, and large or negative
751
+ numeric values may be interpreted incorrectly.
752
+ - `noMtime` Set to true to omit writing `mtime` values for entries.
753
+ Note that this prevents using other mtime-based features like
754
+ `tar.update` or the `keepNewer` option with the resulting tar archive.
755
+
756
+
757
+ #### constructor(path, options)
758
+
759
+ `path` is the path of the entry as it is written in the archive.
760
+
761
+ The following options are supported:
762
+
763
+ - `portable` Omit metadata that is system-specific: `ctime`, `atime`,
764
+ `uid`, `gid`, `uname`, `gname`, `dev`, `ino`, and `nlink`. Note
765
+ that `mtime` is still included, because this is necessary other
766
+ time-based operations.
767
+ - `maxReadSize` The maximum buffer size for `fs.read()` operations.
768
+ Defaults to 1 MB.
769
+ - `linkCache` A Map object containing the device and inode value for
770
+ any file whose nlink is > 1, to identify hard links.
771
+ - `statCache` A Map object that caches calls `lstat`.
772
+ - `preservePaths` Allow absolute paths. By default, `/` is stripped
773
+ from absolute paths.
774
+ - `cwd` The current working directory for creating the archive.
775
+ Defaults to `process.cwd()`.
776
+ - `absolute` The absolute path to the entry on the filesystem. By
777
+ default, this is `path.resolve(this.cwd, this.path)`, but it can be
778
+ overridden explicitly.
779
+ - `strict` Treat warnings as crash-worthy errors. Default false.
780
+ - `win32` True if on a windows platform. Causes behavior where paths
781
+ replace `\` with `/`.
782
+ - `onwarn` A function that will get called with `(message, data)` for
783
+ any warnings encountered.
784
+ - `noMtime` Set to true to omit writing `mtime` values for entries.
785
+ Note that this prevents using other mtime-based features like
786
+ `tar.update` or the `keepNewer` option with the resulting tar archive.
787
+
788
+ #### warn(message, data)
789
+
790
+ If strict, emit an error with the provided message.
791
+
792
+ Othewise, emit a `'warn'` event with the provided message and data.
793
+
794
+ ### class tar.WriteEntry.Sync
795
+
796
+ Synchronous version of tar.WriteEntry
797
+
798
+ ### class tar.WriteEntry.Tar
799
+
800
+ A version of tar.WriteEntry that gets its data from a tar.ReadEntry
801
+ instead of from the filesystem.
802
+
803
+ #### constructor(readEntry, options)
804
+
805
+ `readEntry` is the entry being read out of another archive.
806
+
807
+ The following options are supported:
808
+
809
+ - `portable` Omit metadata that is system-specific: `ctime`, `atime`,
810
+ `uid`, `gid`, `uname`, `gname`, `dev`, `ino`, and `nlink`. Note
811
+ that `mtime` is still included, because this is necessary other
812
+ time-based operations.
813
+ - `preservePaths` Allow absolute paths. By default, `/` is stripped
814
+ from absolute paths.
815
+ - `strict` Treat warnings as crash-worthy errors. Default false.
816
+ - `onwarn` A function that will get called with `(message, data)` for
817
+ any warnings encountered.
818
+ - `noMtime` Set to true to omit writing `mtime` values for entries.
819
+ Note that this prevents using other mtime-based features like
820
+ `tar.update` or the `keepNewer` option with the resulting tar archive.
821
+
822
+ ### class tar.Header
823
+
824
+ A class for reading and writing header blocks.
825
+
826
+ It has the following fields:
827
+
828
+ - `nullBlock` True if decoding a block which is entirely composed of
829
+ `0x00` null bytes. (Useful because tar files are terminated by
830
+ at least 2 null blocks.)
831
+ - `cksumValid` True if the checksum in the header is valid, false
832
+ otherwise.
833
+ - `needPax` True if the values, as encoded, will require a Pax
834
+ extended header.
835
+ - `path` The path of the entry.
836
+ - `mode` The 4 lowest-order octal digits of the file mode. That is,
837
+ read/write/execute permissions for world, group, and owner, and the
838
+ setuid, setgid, and sticky bits.
839
+ - `uid` Numeric user id of the file owner
840
+ - `gid` Numeric group id of the file owner
841
+ - `size` Size of the file in bytes
842
+ - `mtime` Modified time of the file
843
+ - `cksum` The checksum of the header. This is generated by adding all
844
+ the bytes of the header block, treating the checksum field itself as
845
+ all ascii space characters (that is, `0x20`).
846
+ - `type` The human-readable name of the type of entry this represents,
847
+ or the alphanumeric key if unknown.
848
+ - `typeKey` The alphanumeric key for the type of entry this header
849
+ represents.
850
+ - `linkpath` The target of Link and SymbolicLink entries.
851
+ - `uname` Human-readable user name of the file owner
852
+ - `gname` Human-readable group name of the file owner
853
+ - `devmaj` The major portion of the device number. Always `0` for
854
+ files, directories, and links.
855
+ - `devmin` The minor portion of the device number. Always `0` for
856
+ files, directories, and links.
857
+ - `atime` File access time.
858
+ - `ctime` File change time.
859
+
860
+ #### constructor(data, [offset=0])
861
+
862
+ `data` is optional. It is either a Buffer that should be interpreted
863
+ as a tar Header starting at the specified offset and continuing for
864
+ 512 bytes, or a data object of keys and values to set on the header
865
+ object, and eventually encode as a tar Header.
866
+
867
+ #### decode(block, offset)
868
+
869
+ Decode the provided buffer starting at the specified offset.
870
+
871
+ Buffer length must be greater than 512 bytes.
872
+
873
+ #### set(data)
874
+
875
+ Set the fields in the data object.
876
+
877
+ #### encode(buffer, offset)
878
+
879
+ Encode the header fields into the buffer at the specified offset.
880
+
881
+ Returns `this.needPax` to indicate whether a Pax Extended Header is
882
+ required to properly encode the specified data.
883
+
884
+ ### class tar.Pax
885
+
886
+ An object representing a set of key-value pairs in an Pax extended
887
+ header entry.
888
+
889
+ It has the following fields. Where the same name is used, they have
890
+ the same semantics as the tar.Header field of the same name.
891
+
892
+ - `global` True if this represents a global extended header, or false
893
+ if it is for a single entry.
894
+ - `atime`
895
+ - `charset`
896
+ - `comment`
897
+ - `ctime`
898
+ - `gid`
899
+ - `gname`
900
+ - `linkpath`
901
+ - `mtime`
902
+ - `path`
903
+ - `size`
904
+ - `uid`
905
+ - `uname`
906
+ - `dev`
907
+ - `ino`
908
+ - `nlink`
909
+
910
+ #### constructor(object, global)
911
+
912
+ Set the fields set in the object. `global` is a boolean that defaults
913
+ to false.
914
+
915
+ #### encode()
916
+
917
+ Return a Buffer containing the header and body for the Pax extended
918
+ header entry, or `null` if there is nothing to encode.
919
+
920
+ #### encodeBody()
921
+
922
+ Return a string representing the body of the pax extended header
923
+ entry.
924
+
925
+ #### encodeField(fieldName)
926
+
927
+ Return a string representing the key/value encoding for the specified
928
+ fieldName, or `''` if the field is unset.
929
+
930
+ ### tar.Pax.parse(string, extended, global)
931
+
932
+ Return a new Pax object created by parsing the contents of the string
933
+ provided.
934
+
935
+ If the `extended` object is set, then also add the fields from that
936
+ object. (This is necessary because multiple metadata entries can
937
+ occur in sequence.)
938
+
939
+ ### tar.types
940
+
941
+ A translation table for the `type` field in tar headers.
942
+
943
+ #### tar.types.name.get(code)
944
+
945
+ Get the human-readable name for a given alphanumeric code.
45
946
 
46
- ### tar.Parse()
947
+ #### tar.types.code.get(name)
47
948
 
48
- Returns a writable stream. Write tar data to it and it will emit
49
- `entry` events for each entry parsed from the tarball. This is used by
50
- `tar.Extract`.
949
+ Get the alphanumeric code for a given human-readable name.