fsevents 1.1.2 → 1.2.3

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 (929) hide show
  1. package/.travis.yml +2 -1
  2. package/fsevents.cc +5 -7
  3. package/install.js +2 -2
  4. package/node_modules/abbrev/LICENSE +31 -0
  5. package/node_modules/abbrev/package.json +10 -10
  6. package/node_modules/aproba/README.md +16 -11
  7. package/node_modules/aproba/index.js +11 -9
  8. package/node_modules/aproba/package.json +12 -12
  9. package/node_modules/balanced-match/index.js +1 -0
  10. package/node_modules/balanced-match/package.json +12 -10
  11. package/node_modules/{asynckit → brace-expansion}/LICENSE +2 -2
  12. package/node_modules/brace-expansion/README.md +7 -1
  13. package/node_modules/brace-expansion/package.json +11 -11
  14. package/node_modules/{block-stream → chownr}/LICENSE +0 -0
  15. package/node_modules/chownr/README.md +3 -0
  16. package/node_modules/chownr/chownr.js +52 -0
  17. package/node_modules/chownr/package.json +57 -0
  18. package/node_modules/debug/CHANGELOG.md +5 -0
  19. package/node_modules/debug/component.json +1 -1
  20. package/node_modules/debug/package.json +10 -10
  21. package/node_modules/debug/src/inspector-log.js +15 -0
  22. package/node_modules/debug/src/node.js +3 -1
  23. package/node_modules/detect-libc/.npmignore +7 -0
  24. package/node_modules/detect-libc/LICENSE +201 -0
  25. package/node_modules/detect-libc/README.md +78 -0
  26. package/node_modules/detect-libc/bin/detect-libc.js +18 -0
  27. package/node_modules/detect-libc/lib/detect-libc.js +92 -0
  28. package/node_modules/detect-libc/package.json +71 -0
  29. package/node_modules/{fstream-ignore → fs-minipass}/LICENSE +0 -0
  30. package/node_modules/fs-minipass/README.md +70 -0
  31. package/node_modules/fs-minipass/index.js +386 -0
  32. package/node_modules/fs-minipass/package.json +63 -0
  33. package/node_modules/iconv-lite/.travis.yml +23 -0
  34. package/node_modules/iconv-lite/Changelog.md +146 -0
  35. package/node_modules/{punycode/LICENSE-MIT.txt → iconv-lite/LICENSE} +2 -1
  36. package/node_modules/iconv-lite/README.md +156 -0
  37. package/node_modules/iconv-lite/encodings/dbcs-codec.js +555 -0
  38. package/node_modules/iconv-lite/encodings/dbcs-data.js +176 -0
  39. package/node_modules/iconv-lite/encodings/index.js +22 -0
  40. package/node_modules/iconv-lite/encodings/internal.js +188 -0
  41. package/node_modules/iconv-lite/encodings/sbcs-codec.js +72 -0
  42. package/node_modules/iconv-lite/encodings/sbcs-data-generated.js +451 -0
  43. package/node_modules/iconv-lite/encodings/sbcs-data.js +169 -0
  44. package/node_modules/iconv-lite/encodings/tables/big5-added.json +122 -0
  45. package/node_modules/iconv-lite/encodings/tables/cp936.json +264 -0
  46. package/node_modules/iconv-lite/encodings/tables/cp949.json +273 -0
  47. package/node_modules/iconv-lite/encodings/tables/cp950.json +177 -0
  48. package/node_modules/iconv-lite/encodings/tables/eucjp.json +182 -0
  49. package/node_modules/iconv-lite/encodings/tables/gb18030-ranges.json +1 -0
  50. package/node_modules/iconv-lite/encodings/tables/gbk-added.json +55 -0
  51. package/node_modules/iconv-lite/encodings/tables/shiftjis.json +125 -0
  52. package/node_modules/iconv-lite/encodings/utf16.js +177 -0
  53. package/node_modules/iconv-lite/encodings/utf7.js +290 -0
  54. package/node_modules/iconv-lite/lib/bom-handling.js +52 -0
  55. package/node_modules/iconv-lite/lib/extend-node.js +217 -0
  56. package/node_modules/iconv-lite/lib/index.d.ts +24 -0
  57. package/node_modules/iconv-lite/lib/index.js +153 -0
  58. package/node_modules/iconv-lite/lib/streams.js +121 -0
  59. package/node_modules/iconv-lite/package.json +77 -0
  60. package/node_modules/{fstream → ignore-walk}/LICENSE +0 -0
  61. package/node_modules/ignore-walk/README.md +60 -0
  62. package/node_modules/ignore-walk/index.js +265 -0
  63. package/node_modules/ignore-walk/package.json +72 -0
  64. package/node_modules/ini/ini.js +66 -62
  65. package/node_modules/ini/package.json +17 -12
  66. package/node_modules/minipass/README.md +46 -0
  67. package/node_modules/minipass/index.js +304 -0
  68. package/node_modules/minipass/package.json +68 -0
  69. package/node_modules/minizlib/LICENSE +26 -0
  70. package/node_modules/minizlib/README.md +44 -0
  71. package/node_modules/minizlib/constants.js +46 -0
  72. package/node_modules/minizlib/index.js +364 -0
  73. package/node_modules/minizlib/package.json +72 -0
  74. package/node_modules/needle/README.md +593 -0
  75. package/node_modules/needle/bin/needle +40 -0
  76. package/node_modules/needle/examples/deflated-stream.js +22 -0
  77. package/node_modules/needle/examples/digest-auth.js +16 -0
  78. package/node_modules/needle/examples/download-to-file.js +18 -0
  79. package/node_modules/needle/examples/multipart-stream.js +25 -0
  80. package/node_modules/needle/examples/parsed-stream.js +23 -0
  81. package/node_modules/needle/examples/parsed-stream2.js +21 -0
  82. package/node_modules/needle/examples/stream-events.js +23 -0
  83. package/node_modules/needle/examples/stream-to-file.js +14 -0
  84. package/node_modules/needle/examples/upload-image.js +51 -0
  85. package/node_modules/needle/lib/auth.js +110 -0
  86. package/node_modules/needle/lib/cookies.js +77 -0
  87. package/node_modules/needle/lib/decoder.js +53 -0
  88. package/node_modules/needle/lib/multipart.js +98 -0
  89. package/node_modules/needle/lib/needle.js +783 -0
  90. package/node_modules/needle/lib/parsers.js +120 -0
  91. package/node_modules/needle/lib/querystring.js +49 -0
  92. package/node_modules/{delayed-stream/License → needle/license.txt} +2 -2
  93. package/node_modules/needle/package.json +103 -0
  94. package/node_modules/needle/test/basic_auth_spec.js +196 -0
  95. package/node_modules/needle/test/compression_spec.js +94 -0
  96. package/node_modules/needle/test/cookies_spec.js +305 -0
  97. package/node_modules/needle/test/decoder_spec.js +86 -0
  98. package/node_modules/needle/test/errors_spec.js +286 -0
  99. package/node_modules/needle/test/headers_spec.js +198 -0
  100. package/node_modules/needle/test/helpers.js +72 -0
  101. package/node_modules/needle/test/long_string_spec.js +34 -0
  102. package/node_modules/needle/test/output_spec.js +254 -0
  103. package/node_modules/needle/test/parsing_spec.js +494 -0
  104. package/node_modules/needle/test/post_data_spec.js +1021 -0
  105. package/node_modules/needle/test/proxy_spec.js +202 -0
  106. package/node_modules/needle/test/querystring_spec.js +128 -0
  107. package/node_modules/needle/test/redirect_spec.js +392 -0
  108. package/node_modules/needle/test/redirect_with_timeout.js +45 -0
  109. package/node_modules/needle/test/request_stream_spec.js +202 -0
  110. package/node_modules/needle/test/response_stream_spec.js +139 -0
  111. package/node_modules/needle/test/socket_pool_spec.js +66 -0
  112. package/node_modules/needle/test/url_spec.js +147 -0
  113. package/node_modules/needle/test/utils/formidable.js +17 -0
  114. package/node_modules/needle/test/utils/proxy.js +62 -0
  115. package/node_modules/needle/test/utils/test.js +104 -0
  116. package/node_modules/node-pre-gyp/CHANGELOG.md +43 -0
  117. package/node_modules/node-pre-gyp/README.md +85 -9
  118. package/node_modules/node-pre-gyp/appveyor.yml +9 -7
  119. package/node_modules/node-pre-gyp/bin/node-pre-gyp +5 -2
  120. package/node_modules/node-pre-gyp/lib/build.js +8 -0
  121. package/node_modules/node-pre-gyp/lib/clean.js +17 -8
  122. package/node_modules/node-pre-gyp/lib/configure.js +4 -0
  123. package/node_modules/node-pre-gyp/lib/install.js +58 -34
  124. package/node_modules/node-pre-gyp/lib/node-pre-gyp.js +9 -0
  125. package/node_modules/node-pre-gyp/lib/package.js +20 -13
  126. package/node_modules/node-pre-gyp/lib/pre-binding.js +6 -1
  127. package/node_modules/node-pre-gyp/lib/publish.js +3 -1
  128. package/node_modules/node-pre-gyp/lib/rebuild.js +12 -4
  129. package/node_modules/node-pre-gyp/lib/reinstall.js +8 -1
  130. package/node_modules/node-pre-gyp/lib/reveal.js +4 -2
  131. package/node_modules/node-pre-gyp/lib/testbinary.js +3 -1
  132. package/node_modules/node-pre-gyp/lib/testpackage.js +22 -16
  133. package/node_modules/node-pre-gyp/lib/unpublish.js +3 -1
  134. package/node_modules/node-pre-gyp/lib/util/abi_crosswalk.json +196 -0
  135. package/node_modules/node-pre-gyp/lib/util/handle_gyp_opts.js +8 -2
  136. package/node_modules/node-pre-gyp/lib/util/napi.js +156 -0
  137. package/node_modules/node-pre-gyp/lib/util/versioning.js +24 -2
  138. package/node_modules/node-pre-gyp/package.json +28 -25
  139. package/node_modules/npm-bundled/README.md +46 -0
  140. package/node_modules/npm-bundled/index.js +227 -0
  141. package/node_modules/npm-bundled/package.json +61 -0
  142. package/node_modules/{json-stringify-safe → npm-packlist}/LICENSE +0 -0
  143. package/node_modules/npm-packlist/README.md +68 -0
  144. package/node_modules/npm-packlist/index.js +220 -0
  145. package/node_modules/npm-packlist/package.json +67 -0
  146. package/node_modules/npmlog/log.js +6 -1
  147. package/node_modules/npmlog/package.json +10 -10
  148. package/node_modules/osenv/package.json +17 -11
  149. package/node_modules/process-nextick-args/index.js +3 -2
  150. package/node_modules/process-nextick-args/package.json +13 -10
  151. package/node_modules/process-nextick-args/readme.md +2 -2
  152. package/node_modules/rc/README.md +80 -2
  153. package/node_modules/rc/cli.js +4 -0
  154. package/node_modules/rc/index.js +0 -7
  155. package/node_modules/rc/package.json +12 -12
  156. package/node_modules/readable-stream/.travis.yml +26 -20
  157. package/node_modules/readable-stream/README.md +3 -2
  158. package/node_modules/readable-stream/lib/_stream_duplex.js +69 -13
  159. package/node_modules/readable-stream/lib/_stream_passthrough.js +21 -0
  160. package/node_modules/readable-stream/lib/_stream_readable.js +194 -110
  161. package/node_modules/readable-stream/lib/_stream_transform.js +64 -32
  162. package/node_modules/readable-stream/lib/_stream_writable.js +198 -55
  163. package/node_modules/readable-stream/lib/internal/streams/BufferList.js +68 -53
  164. package/node_modules/readable-stream/lib/internal/streams/destroy.js +74 -0
  165. package/node_modules/readable-stream/package.json +20 -22
  166. package/node_modules/readable-stream/writable.js +2 -2
  167. package/node_modules/rimraf/package.json +10 -10
  168. package/node_modules/rimraf/rimraf.js +3 -2
  169. package/node_modules/safe-buffer/README.md +12 -9
  170. package/node_modules/safe-buffer/index.js +10 -6
  171. package/node_modules/safe-buffer/package.json +11 -12
  172. package/node_modules/safe-buffer/test.js +2 -0
  173. package/node_modules/{ajv → safer-buffer}/LICENSE +2 -3
  174. package/node_modules/safer-buffer/Porting-Buffer.md +268 -0
  175. package/node_modules/safer-buffer/Readme.md +156 -0
  176. package/node_modules/safer-buffer/dangerous.js +58 -0
  177. package/node_modules/safer-buffer/package.json +61 -0
  178. package/node_modules/safer-buffer/safer.js +77 -0
  179. package/node_modules/safer-buffer/tests.js +406 -0
  180. package/node_modules/sax/LICENSE +41 -0
  181. package/node_modules/sax/README.md +225 -0
  182. package/node_modules/sax/lib/sax.js +1565 -0
  183. package/node_modules/sax/package.json +62 -0
  184. package/node_modules/semver/README.md +75 -37
  185. package/node_modules/semver/bin/semver +12 -2
  186. package/node_modules/semver/package.json +12 -12
  187. package/node_modules/semver/range.bnf +2 -2
  188. package/node_modules/semver/semver.js +134 -13
  189. package/node_modules/string_decoder/.travis.yml +50 -0
  190. package/node_modules/string_decoder/README.md +22 -3
  191. package/node_modules/string_decoder/lib/string_decoder.js +35 -11
  192. package/node_modules/string_decoder/package.json +18 -15
  193. package/node_modules/tar/LICENSE +3 -0
  194. package/node_modules/tar/README.md +929 -30
  195. package/node_modules/tar/index.js +18 -0
  196. package/node_modules/tar/lib/buffer.js +11 -0
  197. package/node_modules/tar/lib/create.js +105 -0
  198. package/node_modules/tar/lib/extract.js +97 -79
  199. package/node_modules/tar/lib/header.js +236 -348
  200. package/node_modules/tar/lib/high-level-opt.js +29 -0
  201. package/node_modules/tar/lib/large-numbers.js +92 -0
  202. package/node_modules/tar/lib/list.js +130 -0
  203. package/node_modules/tar/lib/mkdir.js +206 -0
  204. package/node_modules/tar/lib/pack.js +354 -187
  205. package/node_modules/tar/lib/parse.js +393 -246
  206. package/node_modules/tar/lib/pax.js +146 -0
  207. package/node_modules/tar/lib/read-entry.js +94 -0
  208. package/node_modules/tar/lib/replace.js +220 -0
  209. package/node_modules/tar/lib/types.js +44 -0
  210. package/node_modules/tar/lib/unpack.js +560 -0
  211. package/node_modules/tar/lib/update.js +36 -0
  212. package/node_modules/tar/lib/warn-mixin.js +14 -0
  213. package/node_modules/tar/lib/winchars.js +23 -0
  214. package/node_modules/tar/lib/write-entry.js +403 -0
  215. package/node_modules/tar/package.json +41 -22
  216. package/node_modules/yallist/LICENSE +15 -0
  217. package/node_modules/yallist/README.md +204 -0
  218. package/node_modules/yallist/iterator.js +8 -0
  219. package/node_modules/yallist/package.json +63 -0
  220. package/node_modules/yallist/yallist.js +376 -0
  221. package/package.json +3 -3
  222. package/src/methods.cc +9 -7
  223. package/node_modules/ajv/.tonic_example.js +0 -20
  224. package/node_modules/ajv/README.md +0 -1213
  225. package/node_modules/ajv/dist/ajv.bundle.js +0 -8023
  226. package/node_modules/ajv/dist/ajv.min.js +0 -6
  227. package/node_modules/ajv/dist/ajv.min.js.map +0 -1
  228. package/node_modules/ajv/dist/nodent.min.js +0 -8
  229. package/node_modules/ajv/dist/regenerator.min.js +0 -32
  230. package/node_modules/ajv/lib/ajv.d.ts +0 -284
  231. package/node_modules/ajv/lib/ajv.js +0 -420
  232. package/node_modules/ajv/lib/async.js +0 -218
  233. package/node_modules/ajv/lib/cache.js +0 -26
  234. package/node_modules/ajv/lib/compile/_rules.js +0 -28
  235. package/node_modules/ajv/lib/compile/equal.js +0 -45
  236. package/node_modules/ajv/lib/compile/formats.js +0 -164
  237. package/node_modules/ajv/lib/compile/index.js +0 -390
  238. package/node_modules/ajv/lib/compile/resolve.js +0 -267
  239. package/node_modules/ajv/lib/compile/rules.js +0 -40
  240. package/node_modules/ajv/lib/compile/schema_obj.js +0 -9
  241. package/node_modules/ajv/lib/compile/ucs2length.js +0 -20
  242. package/node_modules/ajv/lib/compile/util.js +0 -257
  243. package/node_modules/ajv/lib/compile/validation_error.js +0 -14
  244. package/node_modules/ajv/lib/dot/_limit.jst +0 -49
  245. package/node_modules/ajv/lib/dot/_limitItems.jst +0 -10
  246. package/node_modules/ajv/lib/dot/_limitLength.jst +0 -10
  247. package/node_modules/ajv/lib/dot/_limitProperties.jst +0 -10
  248. package/node_modules/ajv/lib/dot/allOf.jst +0 -34
  249. package/node_modules/ajv/lib/dot/anyOf.jst +0 -48
  250. package/node_modules/ajv/lib/dot/coerce.def +0 -61
  251. package/node_modules/ajv/lib/dot/custom.jst +0 -184
  252. package/node_modules/ajv/lib/dot/defaults.def +0 -32
  253. package/node_modules/ajv/lib/dot/definitions.def +0 -182
  254. package/node_modules/ajv/lib/dot/dependencies.jst +0 -69
  255. package/node_modules/ajv/lib/dot/enum.jst +0 -30
  256. package/node_modules/ajv/lib/dot/errors.def +0 -185
  257. package/node_modules/ajv/lib/dot/format.jst +0 -100
  258. package/node_modules/ajv/lib/dot/items.jst +0 -101
  259. package/node_modules/ajv/lib/dot/missing.def +0 -34
  260. package/node_modules/ajv/lib/dot/multipleOf.jst +0 -20
  261. package/node_modules/ajv/lib/dot/not.jst +0 -43
  262. package/node_modules/ajv/lib/dot/oneOf.jst +0 -44
  263. package/node_modules/ajv/lib/dot/pattern.jst +0 -14
  264. package/node_modules/ajv/lib/dot/properties.jst +0 -319
  265. package/node_modules/ajv/lib/dot/ref.jst +0 -86
  266. package/node_modules/ajv/lib/dot/required.jst +0 -96
  267. package/node_modules/ajv/lib/dot/uniqueItems.jst +0 -38
  268. package/node_modules/ajv/lib/dot/v5/_formatLimit.jst +0 -116
  269. package/node_modules/ajv/lib/dot/v5/constant.jst +0 -10
  270. package/node_modules/ajv/lib/dot/v5/patternRequired.jst +0 -28
  271. package/node_modules/ajv/lib/dot/v5/switch.jst +0 -73
  272. package/node_modules/ajv/lib/dot/validate.jst +0 -210
  273. package/node_modules/ajv/lib/dotjs/README.md +0 -3
  274. package/node_modules/ajv/lib/dotjs/_formatLimit.js +0 -176
  275. package/node_modules/ajv/lib/dotjs/_limit.js +0 -124
  276. package/node_modules/ajv/lib/dotjs/_limitItems.js +0 -76
  277. package/node_modules/ajv/lib/dotjs/_limitLength.js +0 -81
  278. package/node_modules/ajv/lib/dotjs/_limitProperties.js +0 -76
  279. package/node_modules/ajv/lib/dotjs/allOf.js +0 -43
  280. package/node_modules/ajv/lib/dotjs/anyOf.js +0 -65
  281. package/node_modules/ajv/lib/dotjs/constant.js +0 -52
  282. package/node_modules/ajv/lib/dotjs/custom.js +0 -220
  283. package/node_modules/ajv/lib/dotjs/dependencies.js +0 -147
  284. package/node_modules/ajv/lib/dotjs/enum.js +0 -65
  285. package/node_modules/ajv/lib/dotjs/format.js +0 -138
  286. package/node_modules/ajv/lib/dotjs/items.js +0 -144
  287. package/node_modules/ajv/lib/dotjs/multipleOf.js +0 -76
  288. package/node_modules/ajv/lib/dotjs/not.js +0 -83
  289. package/node_modules/ajv/lib/dotjs/oneOf.js +0 -76
  290. package/node_modules/ajv/lib/dotjs/pattern.js +0 -74
  291. package/node_modules/ajv/lib/dotjs/patternRequired.js +0 -51
  292. package/node_modules/ajv/lib/dotjs/properties.js +0 -445
  293. package/node_modules/ajv/lib/dotjs/ref.js +0 -119
  294. package/node_modules/ajv/lib/dotjs/required.js +0 -249
  295. package/node_modules/ajv/lib/dotjs/switch.js +0 -128
  296. package/node_modules/ajv/lib/dotjs/uniqueItems.js +0 -71
  297. package/node_modules/ajv/lib/dotjs/validate.js +0 -375
  298. package/node_modules/ajv/lib/keyword.js +0 -129
  299. package/node_modules/ajv/lib/refs/json-schema-draft-04.json +0 -150
  300. package/node_modules/ajv/lib/refs/json-schema-v5.json +0 -328
  301. package/node_modules/ajv/lib/v5.js +0 -52
  302. package/node_modules/ajv/package.json +0 -132
  303. package/node_modules/ajv/scripts/.eslintrc.yml +0 -3
  304. package/node_modules/ajv/scripts/bundle.js +0 -54
  305. package/node_modules/ajv/scripts/compile-dots.js +0 -73
  306. package/node_modules/ajv/scripts/info +0 -10
  307. package/node_modules/ajv/scripts/prepare-tests +0 -9
  308. package/node_modules/ajv/scripts/travis-gh-pages +0 -23
  309. package/node_modules/asn1/.npmignore +0 -2
  310. package/node_modules/asn1/.travis.yml +0 -4
  311. package/node_modules/asn1/LICENSE +0 -19
  312. package/node_modules/asn1/README.md +0 -50
  313. package/node_modules/asn1/lib/ber/errors.js +0 -13
  314. package/node_modules/asn1/lib/ber/index.js +0 -27
  315. package/node_modules/asn1/lib/ber/reader.js +0 -261
  316. package/node_modules/asn1/lib/ber/types.js +0 -36
  317. package/node_modules/asn1/lib/ber/writer.js +0 -316
  318. package/node_modules/asn1/lib/index.js +0 -20
  319. package/node_modules/asn1/package.json +0 -66
  320. package/node_modules/asn1/tst/ber/reader.test.js +0 -208
  321. package/node_modules/asn1/tst/ber/writer.test.js +0 -370
  322. package/node_modules/assert-plus/AUTHORS +0 -6
  323. package/node_modules/assert-plus/CHANGES.md +0 -8
  324. package/node_modules/assert-plus/README.md +0 -155
  325. package/node_modules/assert-plus/assert.js +0 -206
  326. package/node_modules/assert-plus/package.json +0 -83
  327. package/node_modules/asynckit/README.md +0 -233
  328. package/node_modules/asynckit/bench.js +0 -76
  329. package/node_modules/asynckit/index.js +0 -6
  330. package/node_modules/asynckit/lib/abort.js +0 -29
  331. package/node_modules/asynckit/lib/async.js +0 -34
  332. package/node_modules/asynckit/lib/defer.js +0 -26
  333. package/node_modules/asynckit/lib/iterate.js +0 -75
  334. package/node_modules/asynckit/lib/readable_asynckit.js +0 -91
  335. package/node_modules/asynckit/lib/readable_parallel.js +0 -25
  336. package/node_modules/asynckit/lib/readable_serial.js +0 -25
  337. package/node_modules/asynckit/lib/readable_serial_ordered.js +0 -29
  338. package/node_modules/asynckit/lib/state.js +0 -37
  339. package/node_modules/asynckit/lib/streamify.js +0 -141
  340. package/node_modules/asynckit/lib/terminator.js +0 -29
  341. package/node_modules/asynckit/package.json +0 -92
  342. package/node_modules/asynckit/parallel.js +0 -43
  343. package/node_modules/asynckit/serial.js +0 -17
  344. package/node_modules/asynckit/serialOrdered.js +0 -75
  345. package/node_modules/asynckit/stream.js +0 -21
  346. package/node_modules/aws-sign2/LICENSE +0 -55
  347. package/node_modules/aws-sign2/README.md +0 -4
  348. package/node_modules/aws-sign2/index.js +0 -212
  349. package/node_modules/aws-sign2/package.json +0 -51
  350. package/node_modules/aws4/.npmignore +0 -4
  351. package/node_modules/aws4/.tern-port +0 -1
  352. package/node_modules/aws4/.travis.yml +0 -5
  353. package/node_modules/aws4/LICENSE +0 -19
  354. package/node_modules/aws4/README.md +0 -523
  355. package/node_modules/aws4/aws4.js +0 -332
  356. package/node_modules/aws4/lru.js +0 -96
  357. package/node_modules/aws4/package.json +0 -105
  358. package/node_modules/bcrypt-pbkdf/README.md +0 -39
  359. package/node_modules/bcrypt-pbkdf/index.js +0 -556
  360. package/node_modules/bcrypt-pbkdf/package.json +0 -38
  361. package/node_modules/block-stream/LICENCE +0 -25
  362. package/node_modules/block-stream/README.md +0 -14
  363. package/node_modules/block-stream/block-stream.js +0 -209
  364. package/node_modules/block-stream/package.json +0 -61
  365. package/node_modules/boom/.npmignore +0 -18
  366. package/node_modules/boom/.travis.yml +0 -8
  367. package/node_modules/boom/CONTRIBUTING.md +0 -1
  368. package/node_modules/boom/LICENSE +0 -28
  369. package/node_modules/boom/README.md +0 -652
  370. package/node_modules/boom/images/boom.png +0 -0
  371. package/node_modules/boom/lib/index.js +0 -318
  372. package/node_modules/boom/package.json +0 -59
  373. package/node_modules/boom/test/index.js +0 -654
  374. package/node_modules/buffer-shims/index.js +0 -108
  375. package/node_modules/buffer-shims/license.md +0 -19
  376. package/node_modules/buffer-shims/package.json +0 -50
  377. package/node_modules/buffer-shims/readme.md +0 -21
  378. package/node_modules/caseless/LICENSE +0 -28
  379. package/node_modules/caseless/README.md +0 -45
  380. package/node_modules/caseless/index.js +0 -67
  381. package/node_modules/caseless/package.json +0 -57
  382. package/node_modules/caseless/test.js +0 -67
  383. package/node_modules/co/History.md +0 -172
  384. package/node_modules/co/LICENSE +0 -22
  385. package/node_modules/co/Readme.md +0 -212
  386. package/node_modules/co/index.js +0 -237
  387. package/node_modules/co/package.json +0 -67
  388. package/node_modules/combined-stream/License +0 -19
  389. package/node_modules/combined-stream/Readme.md +0 -138
  390. package/node_modules/combined-stream/lib/combined_stream.js +0 -188
  391. package/node_modules/combined-stream/package.json +0 -58
  392. package/node_modules/cryptiles/.npmignore +0 -18
  393. package/node_modules/cryptiles/.travis.yml +0 -8
  394. package/node_modules/cryptiles/LICENSE +0 -28
  395. package/node_modules/cryptiles/README.md +0 -16
  396. package/node_modules/cryptiles/lib/index.js +0 -68
  397. package/node_modules/cryptiles/package.json +0 -60
  398. package/node_modules/cryptiles/test/index.js +0 -102
  399. package/node_modules/dashdash/CHANGES.md +0 -364
  400. package/node_modules/dashdash/LICENSE.txt +0 -24
  401. package/node_modules/dashdash/README.md +0 -574
  402. package/node_modules/dashdash/etc/dashdash.bash_completion.in +0 -389
  403. package/node_modules/dashdash/lib/dashdash.js +0 -1055
  404. package/node_modules/dashdash/node_modules/assert-plus/AUTHORS +0 -6
  405. package/node_modules/dashdash/node_modules/assert-plus/CHANGES.md +0 -14
  406. package/node_modules/dashdash/node_modules/assert-plus/README.md +0 -162
  407. package/node_modules/dashdash/node_modules/assert-plus/assert.js +0 -211
  408. package/node_modules/dashdash/node_modules/assert-plus/package.json +0 -83
  409. package/node_modules/dashdash/package.json +0 -68
  410. package/node_modules/delayed-stream/.npmignore +0 -1
  411. package/node_modules/delayed-stream/Makefile +0 -7
  412. package/node_modules/delayed-stream/Readme.md +0 -141
  413. package/node_modules/delayed-stream/lib/delayed_stream.js +0 -107
  414. package/node_modules/delayed-stream/package.json +0 -63
  415. package/node_modules/ecc-jsbn/.npmignore +0 -15
  416. package/node_modules/ecc-jsbn/LICENSE +0 -21
  417. package/node_modules/ecc-jsbn/README.md +0 -8
  418. package/node_modules/ecc-jsbn/index.js +0 -57
  419. package/node_modules/ecc-jsbn/lib/LICENSE-jsbn +0 -40
  420. package/node_modules/ecc-jsbn/lib/ec.js +0 -561
  421. package/node_modules/ecc-jsbn/lib/sec.js +0 -170
  422. package/node_modules/ecc-jsbn/package.json +0 -66
  423. package/node_modules/ecc-jsbn/test.js +0 -14
  424. package/node_modules/extend/.eslintrc +0 -17
  425. package/node_modules/extend/.jscs.json +0 -175
  426. package/node_modules/extend/.npmignore +0 -1
  427. package/node_modules/extend/.travis.yml +0 -179
  428. package/node_modules/extend/CHANGELOG.md +0 -77
  429. package/node_modules/extend/LICENSE +0 -23
  430. package/node_modules/extend/README.md +0 -81
  431. package/node_modules/extend/component.json +0 -32
  432. package/node_modules/extend/index.js +0 -86
  433. package/node_modules/extend/package.json +0 -76
  434. package/node_modules/extsprintf/.gitmodules +0 -6
  435. package/node_modules/extsprintf/LICENSE +0 -19
  436. package/node_modules/extsprintf/Makefile +0 -23
  437. package/node_modules/extsprintf/Makefile.deps +0 -39
  438. package/node_modules/extsprintf/Makefile.targ +0 -285
  439. package/node_modules/extsprintf/README.md +0 -39
  440. package/node_modules/extsprintf/examples/simple.js +0 -2
  441. package/node_modules/extsprintf/jsl.node.conf +0 -137
  442. package/node_modules/extsprintf/lib/extsprintf.js +0 -166
  443. package/node_modules/extsprintf/package.json +0 -43
  444. package/node_modules/forever-agent/LICENSE +0 -55
  445. package/node_modules/forever-agent/README.md +0 -4
  446. package/node_modules/forever-agent/index.js +0 -138
  447. package/node_modules/forever-agent/package.json +0 -51
  448. package/node_modules/form-data/License +0 -19
  449. package/node_modules/form-data/README.md +0 -217
  450. package/node_modules/form-data/lib/browser.js +0 -2
  451. package/node_modules/form-data/lib/form_data.js +0 -444
  452. package/node_modules/form-data/lib/populate.js +0 -10
  453. package/node_modules/form-data/package.json +0 -99
  454. package/node_modules/fstream/.npmignore +0 -5
  455. package/node_modules/fstream/.travis.yml +0 -9
  456. package/node_modules/fstream/README.md +0 -76
  457. package/node_modules/fstream/examples/filter-pipe.js +0 -134
  458. package/node_modules/fstream/examples/pipe.js +0 -118
  459. package/node_modules/fstream/examples/reader.js +0 -68
  460. package/node_modules/fstream/examples/symlink-write.js +0 -27
  461. package/node_modules/fstream/fstream.js +0 -35
  462. package/node_modules/fstream/lib/abstract.js +0 -85
  463. package/node_modules/fstream/lib/collect.js +0 -70
  464. package/node_modules/fstream/lib/dir-reader.js +0 -252
  465. package/node_modules/fstream/lib/dir-writer.js +0 -174
  466. package/node_modules/fstream/lib/file-reader.js +0 -150
  467. package/node_modules/fstream/lib/file-writer.js +0 -107
  468. package/node_modules/fstream/lib/get-type.js +0 -33
  469. package/node_modules/fstream/lib/link-reader.js +0 -53
  470. package/node_modules/fstream/lib/link-writer.js +0 -95
  471. package/node_modules/fstream/lib/proxy-reader.js +0 -95
  472. package/node_modules/fstream/lib/proxy-writer.js +0 -111
  473. package/node_modules/fstream/lib/reader.js +0 -255
  474. package/node_modules/fstream/lib/socket-reader.js +0 -36
  475. package/node_modules/fstream/lib/writer.js +0 -390
  476. package/node_modules/fstream/package.json +0 -62
  477. package/node_modules/fstream-ignore/README.md +0 -22
  478. package/node_modules/fstream-ignore/ignore.js +0 -275
  479. package/node_modules/fstream-ignore/package.json +0 -62
  480. package/node_modules/getpass/.npmignore +0 -8
  481. package/node_modules/getpass/.travis.yml +0 -9
  482. package/node_modules/getpass/LICENSE +0 -18
  483. package/node_modules/getpass/README.md +0 -32
  484. package/node_modules/getpass/lib/index.js +0 -123
  485. package/node_modules/getpass/node_modules/assert-plus/AUTHORS +0 -6
  486. package/node_modules/getpass/node_modules/assert-plus/CHANGES.md +0 -14
  487. package/node_modules/getpass/node_modules/assert-plus/README.md +0 -162
  488. package/node_modules/getpass/node_modules/assert-plus/assert.js +0 -211
  489. package/node_modules/getpass/node_modules/assert-plus/package.json +0 -83
  490. package/node_modules/getpass/package.json +0 -51
  491. package/node_modules/graceful-fs/LICENSE +0 -15
  492. package/node_modules/graceful-fs/README.md +0 -133
  493. package/node_modules/graceful-fs/fs.js +0 -21
  494. package/node_modules/graceful-fs/graceful-fs.js +0 -262
  495. package/node_modules/graceful-fs/legacy-streams.js +0 -118
  496. package/node_modules/graceful-fs/package.json +0 -77
  497. package/node_modules/graceful-fs/polyfills.js +0 -330
  498. package/node_modules/har-schema/LICENSE +0 -13
  499. package/node_modules/har-schema/README.md +0 -49
  500. package/node_modules/har-schema/lib/afterRequest.json +0 -29
  501. package/node_modules/har-schema/lib/beforeRequest.json +0 -29
  502. package/node_modules/har-schema/lib/browser.json +0 -19
  503. package/node_modules/har-schema/lib/cache.json +0 -20
  504. package/node_modules/har-schema/lib/content.json +0 -28
  505. package/node_modules/har-schema/lib/cookie.json +0 -35
  506. package/node_modules/har-schema/lib/creator.json +0 -19
  507. package/node_modules/har-schema/lib/entry.json +0 -52
  508. package/node_modules/har-schema/lib/har.json +0 -12
  509. package/node_modules/har-schema/lib/header.json +0 -19
  510. package/node_modules/har-schema/lib/index.js +0 -22
  511. package/node_modules/har-schema/lib/log.json +0 -35
  512. package/node_modules/har-schema/lib/page.json +0 -31
  513. package/node_modules/har-schema/lib/pageTimings.json +0 -17
  514. package/node_modules/har-schema/lib/postData.json +0 -42
  515. package/node_modules/har-schema/lib/query.json +0 -19
  516. package/node_modules/har-schema/lib/request.json +0 -56
  517. package/node_modules/har-schema/lib/response.json +0 -53
  518. package/node_modules/har-schema/lib/timings.json +0 -41
  519. package/node_modules/har-schema/package.json +0 -87
  520. package/node_modules/har-validator/LICENSE +0 -13
  521. package/node_modules/har-validator/README.md +0 -75
  522. package/node_modules/har-validator/lib/browser/async.js +0 -96
  523. package/node_modules/har-validator/lib/browser/error.js +0 -15
  524. package/node_modules/har-validator/lib/browser/promise.js +0 -93
  525. package/node_modules/har-validator/lib/node4/async.js +0 -136
  526. package/node_modules/har-validator/lib/node4/error.js +0 -22
  527. package/node_modules/har-validator/lib/node4/promise.js +0 -132
  528. package/node_modules/har-validator/lib/node6/async.js +0 -133
  529. package/node_modules/har-validator/lib/node6/error.js +0 -22
  530. package/node_modules/har-validator/lib/node6/promise.js +0 -130
  531. package/node_modules/har-validator/lib/node7/async.js +0 -133
  532. package/node_modules/har-validator/lib/node7/error.js +0 -22
  533. package/node_modules/har-validator/lib/node7/promise.js +0 -130
  534. package/node_modules/har-validator/package.json +0 -102
  535. package/node_modules/har-validator/src/async.js +0 -96
  536. package/node_modules/har-validator/src/error.js +0 -15
  537. package/node_modules/har-validator/src/promise.js +0 -93
  538. package/node_modules/hawk/.npmignore +0 -20
  539. package/node_modules/hawk/.travis.yml +0 -5
  540. package/node_modules/hawk/LICENSE +0 -28
  541. package/node_modules/hawk/README.md +0 -634
  542. package/node_modules/hawk/bower.json +0 -24
  543. package/node_modules/hawk/component.json +0 -19
  544. package/node_modules/hawk/dist/client.js +0 -343
  545. package/node_modules/hawk/example/usage.js +0 -78
  546. package/node_modules/hawk/images/hawk.png +0 -0
  547. package/node_modules/hawk/images/logo.png +0 -0
  548. package/node_modules/hawk/lib/browser.js +0 -637
  549. package/node_modules/hawk/lib/client.js +0 -369
  550. package/node_modules/hawk/lib/crypto.js +0 -126
  551. package/node_modules/hawk/lib/index.js +0 -15
  552. package/node_modules/hawk/lib/server.js +0 -548
  553. package/node_modules/hawk/lib/utils.js +0 -184
  554. package/node_modules/hawk/package.json +0 -71
  555. package/node_modules/hawk/test/browser.js +0 -1492
  556. package/node_modules/hawk/test/client.js +0 -440
  557. package/node_modules/hawk/test/crypto.js +0 -70
  558. package/node_modules/hawk/test/index.js +0 -378
  559. package/node_modules/hawk/test/readme.js +0 -95
  560. package/node_modules/hawk/test/server.js +0 -1329
  561. package/node_modules/hawk/test/uri.js +0 -838
  562. package/node_modules/hawk/test/utils.js +0 -149
  563. package/node_modules/hoek/.npmignore +0 -18
  564. package/node_modules/hoek/.travis.yml +0 -7
  565. package/node_modules/hoek/CONTRIBUTING.md +0 -1
  566. package/node_modules/hoek/LICENSE +0 -31
  567. package/node_modules/hoek/README.md +0 -584
  568. package/node_modules/hoek/images/hoek.png +0 -0
  569. package/node_modules/hoek/lib/escape.js +0 -132
  570. package/node_modules/hoek/lib/index.js +0 -993
  571. package/node_modules/hoek/package.json +0 -56
  572. package/node_modules/hoek/test/escaper.js +0 -88
  573. package/node_modules/hoek/test/index.js +0 -2513
  574. package/node_modules/hoek/test/modules/ignore.txt +0 -0
  575. package/node_modules/hoek/test/modules/test1.js +0 -1
  576. package/node_modules/hoek/test/modules/test2.js +0 -1
  577. package/node_modules/hoek/test/modules/test3.js +0 -1
  578. package/node_modules/http-signature/.dir-locals.el +0 -6
  579. package/node_modules/http-signature/.npmignore +0 -7
  580. package/node_modules/http-signature/CHANGES.md +0 -46
  581. package/node_modules/http-signature/LICENSE +0 -18
  582. package/node_modules/http-signature/README.md +0 -79
  583. package/node_modules/http-signature/http_signing.md +0 -363
  584. package/node_modules/http-signature/lib/index.js +0 -29
  585. package/node_modules/http-signature/lib/parser.js +0 -318
  586. package/node_modules/http-signature/lib/signer.js +0 -399
  587. package/node_modules/http-signature/lib/utils.js +0 -112
  588. package/node_modules/http-signature/lib/verify.js +0 -88
  589. package/node_modules/http-signature/package.json +0 -78
  590. package/node_modules/is-typedarray/LICENSE.md +0 -18
  591. package/node_modules/is-typedarray/README.md +0 -16
  592. package/node_modules/is-typedarray/index.js +0 -41
  593. package/node_modules/is-typedarray/package.json +0 -60
  594. package/node_modules/is-typedarray/test.js +0 -34
  595. package/node_modules/isstream/.jshintrc +0 -59
  596. package/node_modules/isstream/.npmignore +0 -1
  597. package/node_modules/isstream/.travis.yml +0 -12
  598. package/node_modules/isstream/LICENSE.md +0 -11
  599. package/node_modules/isstream/README.md +0 -66
  600. package/node_modules/isstream/isstream.js +0 -27
  601. package/node_modules/isstream/package.json +0 -62
  602. package/node_modules/isstream/test.js +0 -168
  603. package/node_modules/jodid25519/.npmignore +0 -11
  604. package/node_modules/jodid25519/.travis.yml +0 -7
  605. package/node_modules/jodid25519/AUTHORS.md +0 -3
  606. package/node_modules/jodid25519/LICENSE +0 -23
  607. package/node_modules/jodid25519/README.md +0 -51
  608. package/node_modules/jodid25519/almond.0 +0 -42
  609. package/node_modules/jodid25519/almond.1 +0 -13
  610. package/node_modules/jodid25519/index.js +0 -35
  611. package/node_modules/jodid25519/jsdoc.json +0 -19
  612. package/node_modules/jodid25519/lib/core.js +0 -481
  613. package/node_modules/jodid25519/lib/curve255.js +0 -221
  614. package/node_modules/jodid25519/lib/dh.js +0 -111
  615. package/node_modules/jodid25519/lib/eddsa.js +0 -573
  616. package/node_modules/jodid25519/lib/utils.js +0 -198
  617. package/node_modules/jodid25519/package.json +0 -76
  618. package/node_modules/jsbn/.npmignore +0 -2
  619. package/node_modules/jsbn/LICENSE +0 -40
  620. package/node_modules/jsbn/README.md +0 -175
  621. package/node_modules/jsbn/example.html +0 -12
  622. package/node_modules/jsbn/example.js +0 -3
  623. package/node_modules/jsbn/index.js +0 -1357
  624. package/node_modules/jsbn/package.json +0 -54
  625. package/node_modules/json-schema/README.md +0 -5
  626. package/node_modules/json-schema/draft-00/hyper-schema +0 -68
  627. package/node_modules/json-schema/draft-00/json-ref +0 -26
  628. package/node_modules/json-schema/draft-00/links +0 -33
  629. package/node_modules/json-schema/draft-00/schema +0 -155
  630. package/node_modules/json-schema/draft-01/hyper-schema +0 -68
  631. package/node_modules/json-schema/draft-01/json-ref +0 -26
  632. package/node_modules/json-schema/draft-01/links +0 -33
  633. package/node_modules/json-schema/draft-01/schema +0 -155
  634. package/node_modules/json-schema/draft-02/hyper-schema +0 -68
  635. package/node_modules/json-schema/draft-02/json-ref +0 -26
  636. package/node_modules/json-schema/draft-02/links +0 -35
  637. package/node_modules/json-schema/draft-02/schema +0 -166
  638. package/node_modules/json-schema/draft-03/examples/address +0 -20
  639. package/node_modules/json-schema/draft-03/examples/calendar +0 -53
  640. package/node_modules/json-schema/draft-03/examples/card +0 -105
  641. package/node_modules/json-schema/draft-03/examples/geo +0 -8
  642. package/node_modules/json-schema/draft-03/examples/interfaces +0 -23
  643. package/node_modules/json-schema/draft-03/hyper-schema +0 -60
  644. package/node_modules/json-schema/draft-03/json-ref +0 -26
  645. package/node_modules/json-schema/draft-03/links +0 -35
  646. package/node_modules/json-schema/draft-03/schema +0 -174
  647. package/node_modules/json-schema/draft-04/hyper-schema +0 -60
  648. package/node_modules/json-schema/draft-04/links +0 -41
  649. package/node_modules/json-schema/draft-04/schema +0 -189
  650. package/node_modules/json-schema/draft-zyp-json-schema-03.xml +0 -1120
  651. package/node_modules/json-schema/draft-zyp-json-schema-04.xml +0 -1072
  652. package/node_modules/json-schema/lib/links.js +0 -66
  653. package/node_modules/json-schema/lib/validate.js +0 -273
  654. package/node_modules/json-schema/package.json +0 -72
  655. package/node_modules/json-schema/test/tests.js +0 -95
  656. package/node_modules/json-stable-stringify/.npmignore +0 -1
  657. package/node_modules/json-stable-stringify/.travis.yml +0 -4
  658. package/node_modules/json-stable-stringify/LICENSE +0 -18
  659. package/node_modules/json-stable-stringify/example/key_cmp.js +0 -7
  660. package/node_modules/json-stable-stringify/example/nested.js +0 -3
  661. package/node_modules/json-stable-stringify/example/str.js +0 -3
  662. package/node_modules/json-stable-stringify/example/value_cmp.js +0 -7
  663. package/node_modules/json-stable-stringify/index.js +0 -84
  664. package/node_modules/json-stable-stringify/package.json +0 -75
  665. package/node_modules/json-stable-stringify/readme.markdown +0 -130
  666. package/node_modules/json-stable-stringify/test/cmp.js +0 -11
  667. package/node_modules/json-stable-stringify/test/nested.js +0 -35
  668. package/node_modules/json-stable-stringify/test/replacer.js +0 -74
  669. package/node_modules/json-stable-stringify/test/space.js +0 -59
  670. package/node_modules/json-stable-stringify/test/str.js +0 -32
  671. package/node_modules/json-stable-stringify/test/to-json.js +0 -20
  672. package/node_modules/json-stringify-safe/.npmignore +0 -1
  673. package/node_modules/json-stringify-safe/CHANGELOG.md +0 -14
  674. package/node_modules/json-stringify-safe/Makefile +0 -35
  675. package/node_modules/json-stringify-safe/README.md +0 -52
  676. package/node_modules/json-stringify-safe/package.json +0 -67
  677. package/node_modules/json-stringify-safe/stringify.js +0 -27
  678. package/node_modules/json-stringify-safe/test/mocha.opts +0 -2
  679. package/node_modules/json-stringify-safe/test/stringify_test.js +0 -246
  680. package/node_modules/jsonify/README.markdown +0 -34
  681. package/node_modules/jsonify/index.js +0 -2
  682. package/node_modules/jsonify/lib/parse.js +0 -273
  683. package/node_modules/jsonify/lib/stringify.js +0 -154
  684. package/node_modules/jsonify/package.json +0 -60
  685. package/node_modules/jsonify/test/parse.js +0 -16
  686. package/node_modules/jsonify/test/stringify.js +0 -15
  687. package/node_modules/jsprim/CHANGES.md +0 -43
  688. package/node_modules/jsprim/LICENSE +0 -19
  689. package/node_modules/jsprim/README.md +0 -292
  690. package/node_modules/jsprim/lib/jsprim.js +0 -735
  691. package/node_modules/jsprim/node_modules/assert-plus/AUTHORS +0 -6
  692. package/node_modules/jsprim/node_modules/assert-plus/CHANGES.md +0 -14
  693. package/node_modules/jsprim/node_modules/assert-plus/README.md +0 -162
  694. package/node_modules/jsprim/node_modules/assert-plus/assert.js +0 -211
  695. package/node_modules/jsprim/node_modules/assert-plus/package.json +0 -83
  696. package/node_modules/jsprim/package.json +0 -50
  697. package/node_modules/mime-db/HISTORY.md +0 -412
  698. package/node_modules/mime-db/LICENSE +0 -22
  699. package/node_modules/mime-db/README.md +0 -82
  700. package/node_modules/mime-db/db.json +0 -6805
  701. package/node_modules/mime-db/index.js +0 -11
  702. package/node_modules/mime-db/package.json +0 -99
  703. package/node_modules/mime-types/HISTORY.md +0 -223
  704. package/node_modules/mime-types/LICENSE +0 -23
  705. package/node_modules/mime-types/README.md +0 -108
  706. package/node_modules/mime-types/index.js +0 -188
  707. package/node_modules/mime-types/package.json +0 -85
  708. package/node_modules/node-pre-gyp/cloudformation/travis.template +0 -73
  709. package/node_modules/node-pre-gyp/template-name.diff +0 -12
  710. package/node_modules/oauth-sign/LICENSE +0 -55
  711. package/node_modules/oauth-sign/README.md +0 -4
  712. package/node_modules/oauth-sign/index.js +0 -136
  713. package/node_modules/oauth-sign/package.json +0 -57
  714. package/node_modules/osenv/.npmignore +0 -13
  715. package/node_modules/osenv/.travis.yml +0 -9
  716. package/node_modules/osenv/test/unix.js +0 -71
  717. package/node_modules/osenv/test/windows.js +0 -74
  718. package/node_modules/osenv/x.tap +0 -39
  719. package/node_modules/performance-now/.npmignore +0 -1
  720. package/node_modules/performance-now/.tm_properties +0 -7
  721. package/node_modules/performance-now/.travis.yml +0 -4
  722. package/node_modules/performance-now/Makefile +0 -25
  723. package/node_modules/performance-now/README.md +0 -30
  724. package/node_modules/performance-now/lib/performance-now.js +0 -32
  725. package/node_modules/performance-now/license.txt +0 -7
  726. package/node_modules/performance-now/package.json +0 -58
  727. package/node_modules/performance-now/src/performance-now.coffee +0 -15
  728. package/node_modules/performance-now/test/mocha.opts +0 -3
  729. package/node_modules/performance-now/test/performance-now.coffee +0 -38
  730. package/node_modules/process-nextick-args/.travis.yml +0 -12
  731. package/node_modules/process-nextick-args/test.js +0 -24
  732. package/node_modules/punycode/README.md +0 -176
  733. package/node_modules/punycode/package.json +0 -92
  734. package/node_modules/punycode/punycode.js +0 -533
  735. package/node_modules/qs/.eslintignore +0 -1
  736. package/node_modules/qs/.eslintrc +0 -18
  737. package/node_modules/qs/.jscs.json +0 -176
  738. package/node_modules/qs/CHANGELOG.md +0 -175
  739. package/node_modules/qs/LICENSE +0 -28
  740. package/node_modules/qs/README.md +0 -440
  741. package/node_modules/qs/dist/qs.js +0 -597
  742. package/node_modules/qs/lib/formats.js +0 -18
  743. package/node_modules/qs/lib/index.js +0 -11
  744. package/node_modules/qs/lib/parse.js +0 -167
  745. package/node_modules/qs/lib/stringify.js +0 -207
  746. package/node_modules/qs/lib/utils.js +0 -182
  747. package/node_modules/qs/package.json +0 -79
  748. package/node_modules/qs/test/.eslintrc +0 -11
  749. package/node_modules/qs/test/index.js +0 -7
  750. package/node_modules/qs/test/parse.js +0 -519
  751. package/node_modules/qs/test/stringify.js +0 -567
  752. package/node_modules/qs/test/utils.js +0 -22
  753. package/node_modules/readable-stream/.npmignore +0 -9
  754. package/node_modules/request/CHANGELOG.md +0 -674
  755. package/node_modules/request/LICENSE +0 -55
  756. package/node_modules/request/README.md +0 -1115
  757. package/node_modules/request/index.js +0 -156
  758. package/node_modules/request/lib/auth.js +0 -168
  759. package/node_modules/request/lib/cookies.js +0 -39
  760. package/node_modules/request/lib/getProxyFromURI.js +0 -79
  761. package/node_modules/request/lib/har.js +0 -215
  762. package/node_modules/request/lib/helpers.js +0 -66
  763. package/node_modules/request/lib/multipart.js +0 -113
  764. package/node_modules/request/lib/oauth.js +0 -148
  765. package/node_modules/request/lib/querystring.js +0 -51
  766. package/node_modules/request/lib/redirect.js +0 -157
  767. package/node_modules/request/lib/tunnel.js +0 -176
  768. package/node_modules/request/package.json +0 -119
  769. package/node_modules/request/request.js +0 -1565
  770. package/node_modules/safe-buffer/browser.js +0 -1
  771. package/node_modules/sntp/.npmignore +0 -18
  772. package/node_modules/sntp/.travis.yml +0 -5
  773. package/node_modules/sntp/LICENSE +0 -28
  774. package/node_modules/sntp/Makefile +0 -9
  775. package/node_modules/sntp/README.md +0 -68
  776. package/node_modules/sntp/examples/offset.js +0 -16
  777. package/node_modules/sntp/examples/time.js +0 -25
  778. package/node_modules/sntp/index.js +0 -1
  779. package/node_modules/sntp/lib/index.js +0 -412
  780. package/node_modules/sntp/package.json +0 -69
  781. package/node_modules/sntp/test/index.js +0 -435
  782. package/node_modules/sshpk/.npmignore +0 -9
  783. package/node_modules/sshpk/.travis.yml +0 -11
  784. package/node_modules/sshpk/LICENSE +0 -18
  785. package/node_modules/sshpk/README.md +0 -698
  786. package/node_modules/sshpk/bin/sshpk-conv +0 -201
  787. package/node_modules/sshpk/bin/sshpk-sign +0 -191
  788. package/node_modules/sshpk/bin/sshpk-verify +0 -166
  789. package/node_modules/sshpk/lib/algs.js +0 -168
  790. package/node_modules/sshpk/lib/certificate.js +0 -377
  791. package/node_modules/sshpk/lib/dhe.js +0 -410
  792. package/node_modules/sshpk/lib/ed-compat.js +0 -96
  793. package/node_modules/sshpk/lib/errors.js +0 -84
  794. package/node_modules/sshpk/lib/fingerprint.js +0 -161
  795. package/node_modules/sshpk/lib/formats/auto.js +0 -73
  796. package/node_modules/sshpk/lib/formats/openssh-cert.js +0 -322
  797. package/node_modules/sshpk/lib/formats/pem.js +0 -186
  798. package/node_modules/sshpk/lib/formats/pkcs1.js +0 -320
  799. package/node_modules/sshpk/lib/formats/pkcs8.js +0 -505
  800. package/node_modules/sshpk/lib/formats/rfc4253.js +0 -146
  801. package/node_modules/sshpk/lib/formats/ssh-private.js +0 -261
  802. package/node_modules/sshpk/lib/formats/ssh.js +0 -114
  803. package/node_modules/sshpk/lib/formats/x509-pem.js +0 -77
  804. package/node_modules/sshpk/lib/formats/x509.js +0 -726
  805. package/node_modules/sshpk/lib/identity.js +0 -277
  806. package/node_modules/sshpk/lib/index.js +0 -39
  807. package/node_modules/sshpk/lib/key.js +0 -274
  808. package/node_modules/sshpk/lib/private-key.js +0 -255
  809. package/node_modules/sshpk/lib/signature.js +0 -313
  810. package/node_modules/sshpk/lib/ssh-buffer.js +0 -148
  811. package/node_modules/sshpk/lib/utils.js +0 -288
  812. package/node_modules/sshpk/man/man1/sshpk-conv.1 +0 -135
  813. package/node_modules/sshpk/man/man1/sshpk-sign.1 +0 -81
  814. package/node_modules/sshpk/man/man1/sshpk-verify.1 +0 -68
  815. package/node_modules/sshpk/node_modules/assert-plus/AUTHORS +0 -6
  816. package/node_modules/sshpk/node_modules/assert-plus/CHANGES.md +0 -14
  817. package/node_modules/sshpk/node_modules/assert-plus/README.md +0 -162
  818. package/node_modules/sshpk/node_modules/assert-plus/assert.js +0 -211
  819. package/node_modules/sshpk/node_modules/assert-plus/package.json +0 -83
  820. package/node_modules/sshpk/package.json +0 -103
  821. package/node_modules/string_decoder/.npmignore +0 -2
  822. package/node_modules/stringstream/.npmignore +0 -15
  823. package/node_modules/stringstream/.travis.yml +0 -4
  824. package/node_modules/stringstream/LICENSE.txt +0 -22
  825. package/node_modules/stringstream/README.md +0 -38
  826. package/node_modules/stringstream/example.js +0 -27
  827. package/node_modules/stringstream/package.json +0 -52
  828. package/node_modules/stringstream/stringstream.js +0 -102
  829. package/node_modules/tar/.npmignore +0 -5
  830. package/node_modules/tar/.travis.yml +0 -4
  831. package/node_modules/tar/examples/extracter.js +0 -19
  832. package/node_modules/tar/examples/packer.js +0 -24
  833. package/node_modules/tar/examples/reader.js +0 -36
  834. package/node_modules/tar/lib/buffer-entry.js +0 -30
  835. package/node_modules/tar/lib/entry-writer.js +0 -169
  836. package/node_modules/tar/lib/entry.js +0 -220
  837. package/node_modules/tar/lib/extended-header-writer.js +0 -191
  838. package/node_modules/tar/lib/extended-header.js +0 -140
  839. package/node_modules/tar/lib/global-header-writer.js +0 -14
  840. package/node_modules/tar/tar.js +0 -173
  841. package/node_modules/tar/test/00-setup-fixtures.js +0 -53
  842. package/node_modules/tar/test/cb-never-called-1.0.1.tgz +0 -0
  843. package/node_modules/tar/test/dir-normalization.js +0 -177
  844. package/node_modules/tar/test/dir-normalization.tar +0 -0
  845. package/node_modules/tar/test/error-on-broken.js +0 -33
  846. package/node_modules/tar/test/extract-move.js +0 -132
  847. package/node_modules/tar/test/extract.js +0 -367
  848. package/node_modules/tar/test/fixtures.tgz +0 -0
  849. package/node_modules/tar/test/header.js +0 -183
  850. package/node_modules/tar/test/pack-no-proprietary.js +0 -886
  851. package/node_modules/tar/test/pack.js +0 -952
  852. package/node_modules/tar/test/parse-discard.js +0 -29
  853. package/node_modules/tar/test/parse.js +0 -359
  854. package/node_modules/tar/test/zz-cleanup.js +0 -20
  855. package/node_modules/tar-pack/.npmignore +0 -14
  856. package/node_modules/tar-pack/.travis.yml +0 -7
  857. package/node_modules/tar-pack/LICENSE +0 -23
  858. package/node_modules/tar-pack/README.md +0 -84
  859. package/node_modules/tar-pack/index.js +0 -245
  860. package/node_modules/tar-pack/package.json +0 -58
  861. package/node_modules/tar-pack/test/fixtures/packed-file.txt +0 -1
  862. package/node_modules/tar-pack/test/fixtures/packed.tar +0 -0
  863. package/node_modules/tar-pack/test/fixtures/packed.tar.gz +0 -0
  864. package/node_modules/tar-pack/test/fixtures/to-pack/bar.txt +0 -1
  865. package/node_modules/tar-pack/test/fixtures/to-pack/foo.txt +0 -1
  866. package/node_modules/tar-pack/test/index.js +0 -109
  867. package/node_modules/tough-cookie/LICENSE +0 -27
  868. package/node_modules/tough-cookie/README.md +0 -506
  869. package/node_modules/tough-cookie/lib/cookie.js +0 -1336
  870. package/node_modules/tough-cookie/lib/memstore.js +0 -170
  871. package/node_modules/tough-cookie/lib/pathMatch.js +0 -61
  872. package/node_modules/tough-cookie/lib/permuteDomain.js +0 -56
  873. package/node_modules/tough-cookie/lib/pubsuffix.js +0 -98
  874. package/node_modules/tough-cookie/lib/store.js +0 -71
  875. package/node_modules/tough-cookie/package.json +0 -93
  876. package/node_modules/tunnel-agent/LICENSE +0 -55
  877. package/node_modules/tunnel-agent/README.md +0 -4
  878. package/node_modules/tunnel-agent/index.js +0 -244
  879. package/node_modules/tunnel-agent/package.json +0 -56
  880. package/node_modules/tweetnacl/.npmignore +0 -4
  881. package/node_modules/tweetnacl/AUTHORS.md +0 -28
  882. package/node_modules/tweetnacl/CHANGELOG.md +0 -221
  883. package/node_modules/tweetnacl/LICENSE +0 -24
  884. package/node_modules/tweetnacl/PULL_REQUEST_TEMPLATE.md +0 -20
  885. package/node_modules/tweetnacl/README.md +0 -459
  886. package/node_modules/tweetnacl/nacl-fast.js +0 -2388
  887. package/node_modules/tweetnacl/nacl-fast.min.js +0 -2
  888. package/node_modules/tweetnacl/nacl.d.ts +0 -98
  889. package/node_modules/tweetnacl/nacl.js +0 -1175
  890. package/node_modules/tweetnacl/nacl.min.js +0 -1
  891. package/node_modules/tweetnacl/package.json +0 -87
  892. package/node_modules/uid-number/LICENSE +0 -15
  893. package/node_modules/uid-number/README.md +0 -17
  894. package/node_modules/uid-number/get-uid-gid.js +0 -24
  895. package/node_modules/uid-number/package.json +0 -52
  896. package/node_modules/uid-number/uid-number.js +0 -59
  897. package/node_modules/uuid/.npmignore +0 -8
  898. package/node_modules/uuid/.travis.yml +0 -5
  899. package/node_modules/uuid/AUTHORS +0 -5
  900. package/node_modules/uuid/HISTORY.md +0 -28
  901. package/node_modules/uuid/LICENSE.md +0 -21
  902. package/node_modules/uuid/README.md +0 -132
  903. package/node_modules/uuid/bin/uuid +0 -26
  904. package/node_modules/uuid/index.js +0 -8
  905. package/node_modules/uuid/lib/bytesToUuid.js +0 -23
  906. package/node_modules/uuid/lib/rng-browser.js +0 -33
  907. package/node_modules/uuid/lib/rng.js +0 -10
  908. package/node_modules/uuid/package.json +0 -79
  909. package/node_modules/uuid/test/mocha.opts +0 -3
  910. package/node_modules/uuid/test/test.js +0 -96
  911. package/node_modules/uuid/v1.js +0 -103
  912. package/node_modules/uuid/v4.js +0 -29
  913. package/node_modules/verror/.gitmodules +0 -0
  914. package/node_modules/verror/.npmignore +0 -1
  915. package/node_modules/verror/LICENSE +0 -19
  916. package/node_modules/verror/Makefile +0 -35
  917. package/node_modules/verror/Makefile.targ +0 -285
  918. package/node_modules/verror/README.md +0 -120
  919. package/node_modules/verror/examples/levels-verror.js +0 -36
  920. package/node_modules/verror/examples/levels-werror.js +0 -34
  921. package/node_modules/verror/examples/varargs.js +0 -6
  922. package/node_modules/verror/examples/verror.js +0 -13
  923. package/node_modules/verror/examples/werror.js +0 -14
  924. package/node_modules/verror/jsl.node.conf +0 -139
  925. package/node_modules/verror/lib/verror.js +0 -157
  926. package/node_modules/verror/package.json +0 -49
  927. package/node_modules/verror/tests/tst.inherit.js +0 -100
  928. package/node_modules/verror/tests/tst.verror.js +0 -156
  929. package/node_modules/verror/tests/tst.werror.js +0 -179
@@ -1,79 +0,0 @@
1
- {
2
- "_args": [
3
- [
4
- "uuid@3.0.1",
5
- "/Users/eshanker/Code/fsevents"
6
- ]
7
- ],
8
- "_from": "uuid@3.0.1",
9
- "_id": "uuid@3.0.1",
10
- "_inBundle": false,
11
- "_integrity": "sha1-ZUS7ot/ajBzxfmKaOjBeK7H+5sE=",
12
- "_location": "/uuid",
13
- "_phantomChildren": {},
14
- "_requested": {
15
- "type": "version",
16
- "registry": true,
17
- "raw": "uuid@3.0.1",
18
- "name": "uuid",
19
- "escapedName": "uuid",
20
- "rawSpec": "3.0.1",
21
- "saveSpec": null,
22
- "fetchSpec": "3.0.1"
23
- },
24
- "_requiredBy": [],
25
- "_resolved": "https://registry.npmjs.org/uuid/-/uuid-3.0.1.tgz",
26
- "_spec": "3.0.1",
27
- "_where": "/Users/eshanker/Code/fsevents",
28
- "bin": {
29
- "uuid": "./bin/uuid"
30
- },
31
- "browser": {
32
- "./lib/rng.js": "./lib/rng-browser.js"
33
- },
34
- "bugs": {
35
- "url": "https://github.com/kelektiv/node-uuid/issues"
36
- },
37
- "contributors": [
38
- {
39
- "name": "Robert Kieffer",
40
- "email": "robert@broofa.com"
41
- },
42
- {
43
- "name": "Christoph Tavan",
44
- "email": "dev@tavan.de"
45
- },
46
- {
47
- "name": "AJ ONeal",
48
- "email": "coolaj86@gmail.com"
49
- },
50
- {
51
- "name": "Vincent Voyer",
52
- "email": "vincent@zeroload.net"
53
- },
54
- {
55
- "name": "Roman Shtylman",
56
- "email": "shtylman@gmail.com"
57
- }
58
- ],
59
- "description": "RFC4122 (v1 and v4) generator",
60
- "devDependencies": {
61
- "mocha": "3.1.2"
62
- },
63
- "homepage": "https://github.com/kelektiv/node-uuid#readme",
64
- "keywords": [
65
- "uuid",
66
- "guid",
67
- "rfc4122"
68
- ],
69
- "license": "MIT",
70
- "name": "uuid",
71
- "repository": {
72
- "type": "git",
73
- "url": "git+https://github.com/kelektiv/node-uuid.git"
74
- },
75
- "scripts": {
76
- "test": "mocha test/test.js"
77
- },
78
- "version": "3.0.1"
79
- }
@@ -1,3 +0,0 @@
1
- --ui qunit
2
- --reporter spec
3
- --check-leaks
@@ -1,96 +0,0 @@
1
- var assert = require('assert');
2
-
3
- var uuid = require('../');
4
-
5
- // Verify ordering of v1 ids created with explicit times
6
- var TIME = 1321644961388; // 2011-11-18 11:36:01.388-08:00
7
-
8
- function compare(name, ids) {
9
- test(name, function() {
10
- // avoid .map for older browsers
11
- for (var i=0 ; i<ids.length ; ++i) {
12
- ids[i] = ids[i].split('-').reverse().join('-');
13
- }
14
- ids = ids.sort();
15
- var sorted = ([].concat(ids)).sort();
16
-
17
- assert(sorted.toString() == ids.toString(), name + ' have expected order');
18
- });
19
- }
20
-
21
- // Verify ordering of v1 ids created using default behavior
22
- compare('uuids with current time', [
23
- uuid.v1(),
24
- uuid.v1(),
25
- uuid.v1(),
26
- uuid.v1(),
27
- uuid.v1()
28
- ]);
29
-
30
- // Verify ordering of v1 ids created with explicit times
31
- compare('uuids with time option', [
32
- uuid.v1({msecs: TIME - 10*3600*1000}),
33
- uuid.v1({msecs: TIME - 1}),
34
- uuid.v1({msecs: TIME}),
35
- uuid.v1({msecs: TIME + 1}),
36
- uuid.v1({msecs: TIME + 28*24*3600*1000})
37
- ]);
38
-
39
- test('msec', function() {
40
- assert(
41
- uuid.v1({msecs: TIME}) != uuid.v1({msecs: TIME}),
42
- 'IDs created at same msec are different'
43
- );
44
- });
45
-
46
- test('exception thrown when > 10k ids created in 1ms', function() {
47
- // Verify throw if too many ids created
48
- var thrown = false;
49
- try {
50
- uuid.v1({msecs: TIME, nsecs: 10000});
51
- } catch (e) {
52
- thrown = true;
53
- }
54
- assert(thrown, 'Exception thrown when > 10K ids created in 1 ms');
55
- });
56
-
57
- test('clock regression by msec', function() {
58
- // Verify clock regression bumps clockseq
59
- var uidt = uuid.v1({msecs: TIME});
60
- var uidtb = uuid.v1({msecs: TIME - 1});
61
- assert(
62
- parseInt(uidtb.split('-')[3], 16) - parseInt(uidt.split('-')[3], 16) === 1,
63
- 'Clock regression by msec increments the clockseq'
64
- );
65
- });
66
-
67
- test('clock regression by nsec', function() {
68
- // Verify clock regression bumps clockseq
69
- var uidtn = uuid.v1({msecs: TIME, nsecs: 10});
70
- var uidtnb = uuid.v1({msecs: TIME, nsecs: 9});
71
- assert(
72
- parseInt(uidtnb.split('-')[3], 16) - parseInt(uidtn.split('-')[3], 16) === 1,
73
- 'Clock regression by nsec increments the clockseq'
74
- );
75
- });
76
-
77
- test('explicit options product expected id', function() {
78
- // Verify explicit options produce expected id
79
- var id = uuid.v1({
80
- msecs: 1321651533573,
81
- nsecs: 5432,
82
- clockseq: 0x385c,
83
- node: [ 0x61, 0xcd, 0x3c, 0xbb, 0x32, 0x10 ]
84
- });
85
- assert(id == 'd9428888-122b-11e1-b85c-61cd3cbb3210', 'Explicit options produce expected id');
86
- });
87
-
88
- test('ids spanning 1ms boundary are 100ns apart', function() {
89
- // Verify adjacent ids across a msec boundary are 1 time unit apart
90
- var u0 = uuid.v1({msecs: TIME, nsecs: 9999});
91
- var u1 = uuid.v1({msecs: TIME + 1, nsecs: 0});
92
-
93
- var before = u0.split('-')[0], after = u1.split('-')[0];
94
- var dt = parseInt(after, 16) - parseInt(before, 16);
95
- assert(dt === 1, 'Ids spanning 1ms boundary are 100ns apart');
96
- });
@@ -1,103 +0,0 @@
1
- // Unique ID creation requires a high quality random # generator. We feature
2
- // detect to determine the best RNG source, normalizing to a function that
3
- // returns 128-bits of randomness, since that's what's usually required
4
- var rng = require('./lib/rng');
5
- var bytesToUuid = require('./lib/bytesToUuid');
6
-
7
- // **`v1()` - Generate time-based UUID**
8
- //
9
- // Inspired by https://github.com/LiosK/UUID.js
10
- // and http://docs.python.org/library/uuid.html
11
-
12
- // random #'s we need to init node and clockseq
13
- var _seedBytes = rng();
14
-
15
- // Per 4.5, create and 48-bit node id, (47 random bits + multicast bit = 1)
16
- var _nodeId = [
17
- _seedBytes[0] | 0x01,
18
- _seedBytes[1], _seedBytes[2], _seedBytes[3], _seedBytes[4], _seedBytes[5]
19
- ];
20
-
21
- // Per 4.2.2, randomize (14 bit) clockseq
22
- var _clockseq = (_seedBytes[6] << 8 | _seedBytes[7]) & 0x3fff;
23
-
24
- // Previous uuid creation time
25
- var _lastMSecs = 0, _lastNSecs = 0;
26
-
27
- // See https://github.com/broofa/node-uuid for API details
28
- function v1(options, buf, offset) {
29
- var i = buf && offset || 0;
30
- var b = buf || [];
31
-
32
- options = options || {};
33
-
34
- var clockseq = options.clockseq !== undefined ? options.clockseq : _clockseq;
35
-
36
- // UUID timestamps are 100 nano-second units since the Gregorian epoch,
37
- // (1582-10-15 00:00). JSNumbers aren't precise enough for this, so
38
- // time is handled internally as 'msecs' (integer milliseconds) and 'nsecs'
39
- // (100-nanoseconds offset from msecs) since unix epoch, 1970-01-01 00:00.
40
- var msecs = options.msecs !== undefined ? options.msecs : new Date().getTime();
41
-
42
- // Per 4.2.1.2, use count of uuid's generated during the current clock
43
- // cycle to simulate higher resolution clock
44
- var nsecs = options.nsecs !== undefined ? options.nsecs : _lastNSecs + 1;
45
-
46
- // Time since last uuid creation (in msecs)
47
- var dt = (msecs - _lastMSecs) + (nsecs - _lastNSecs)/10000;
48
-
49
- // Per 4.2.1.2, Bump clockseq on clock regression
50
- if (dt < 0 && options.clockseq === undefined) {
51
- clockseq = clockseq + 1 & 0x3fff;
52
- }
53
-
54
- // Reset nsecs if clock regresses (new clockseq) or we've moved onto a new
55
- // time interval
56
- if ((dt < 0 || msecs > _lastMSecs) && options.nsecs === undefined) {
57
- nsecs = 0;
58
- }
59
-
60
- // Per 4.2.1.2 Throw error if too many uuids are requested
61
- if (nsecs >= 10000) {
62
- throw new Error('uuid.v1(): Can\'t create more than 10M uuids/sec');
63
- }
64
-
65
- _lastMSecs = msecs;
66
- _lastNSecs = nsecs;
67
- _clockseq = clockseq;
68
-
69
- // Per 4.1.4 - Convert from unix epoch to Gregorian epoch
70
- msecs += 12219292800000;
71
-
72
- // `time_low`
73
- var tl = ((msecs & 0xfffffff) * 10000 + nsecs) % 0x100000000;
74
- b[i++] = tl >>> 24 & 0xff;
75
- b[i++] = tl >>> 16 & 0xff;
76
- b[i++] = tl >>> 8 & 0xff;
77
- b[i++] = tl & 0xff;
78
-
79
- // `time_mid`
80
- var tmh = (msecs / 0x100000000 * 10000) & 0xfffffff;
81
- b[i++] = tmh >>> 8 & 0xff;
82
- b[i++] = tmh & 0xff;
83
-
84
- // `time_high_and_version`
85
- b[i++] = tmh >>> 24 & 0xf | 0x10; // include version
86
- b[i++] = tmh >>> 16 & 0xff;
87
-
88
- // `clock_seq_hi_and_reserved` (Per 4.2.2 - include variant)
89
- b[i++] = clockseq >>> 8 | 0x80;
90
-
91
- // `clock_seq_low`
92
- b[i++] = clockseq & 0xff;
93
-
94
- // `node`
95
- var node = options.node || _nodeId;
96
- for (var n = 0; n < 6; ++n) {
97
- b[i + n] = node[n];
98
- }
99
-
100
- return buf ? buf : bytesToUuid(b);
101
- }
102
-
103
- module.exports = v1;
@@ -1,29 +0,0 @@
1
- var rng = require('./lib/rng');
2
- var bytesToUuid = require('./lib/bytesToUuid');
3
-
4
- function v4(options, buf, offset) {
5
- var i = buf && offset || 0;
6
-
7
- if (typeof(options) == 'string') {
8
- buf = options == 'binary' ? new Array(16) : null;
9
- options = null;
10
- }
11
- options = options || {};
12
-
13
- var rnds = options.random || (options.rng || rng)();
14
-
15
- // Per 4.4, set bits for version and `clock_seq_hi_and_reserved`
16
- rnds[6] = (rnds[6] & 0x0f) | 0x40;
17
- rnds[8] = (rnds[8] & 0x3f) | 0x80;
18
-
19
- // Copy bytes to buffer, if provided
20
- if (buf) {
21
- for (var ii = 0; ii < 16; ++ii) {
22
- buf[i + ii] = rnds[ii];
23
- }
24
- }
25
-
26
- return buf || bytesToUuid(rnds);
27
- }
28
-
29
- module.exports = v4;
File without changes
@@ -1 +0,0 @@
1
- node_modules
@@ -1,19 +0,0 @@
1
- Copyright (c) 2012, Joyent, Inc. All rights reserved.
2
-
3
- Permission is hereby granted, free of charge, to any person obtaining a copy
4
- of this software and associated documentation files (the "Software"), to deal
5
- in the Software without restriction, including without limitation the rights
6
- to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
7
- copies of the Software, and to permit persons to whom the Software is
8
- furnished to do so, subject to the following conditions:
9
-
10
- The above copyright notice and this permission notice shall be included in
11
- all copies or substantial portions of the Software.
12
-
13
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
14
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
15
- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
16
- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
17
- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
18
- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
19
- THE SOFTWARE
@@ -1,35 +0,0 @@
1
- #
2
- # Copyright (c) 2012, Joyent, Inc. All rights reserved.
3
- #
4
- # Makefile: top-level Makefile
5
- #
6
- # This Makefile contains only repo-specific logic and uses included makefiles
7
- # to supply common targets (javascriptlint, jsstyle, restdown, etc.), which are
8
- # used by other repos as well.
9
- #
10
-
11
- #
12
- # Tools
13
- #
14
- NPM = npm
15
-
16
- #
17
- # Files
18
- #
19
- JS_FILES := $(shell find lib examples tests -name '*.js')
20
- JSL_FILES_NODE = $(JS_FILES)
21
- JSSTYLE_FILES = $(JS_FILES)
22
- JSL_CONF_NODE = jsl.node.conf
23
-
24
- .PHONY: all
25
- all:
26
- $(NPM) install
27
-
28
- .PHONY: test
29
- test:
30
- node tests/tst.inherit.js
31
- node tests/tst.verror.js
32
- node tests/tst.werror.js
33
- @echo all tests passed
34
-
35
- include ./Makefile.targ
@@ -1,285 +0,0 @@
1
- # -*- mode: makefile -*-
2
- #
3
- # Copyright (c) 2012, Joyent, Inc. All rights reserved.
4
- #
5
- # Makefile.targ: common targets.
6
- #
7
- # NOTE: This makefile comes from the "eng" repo. It's designed to be dropped
8
- # into other repos as-is without requiring any modifications. If you find
9
- # yourself changing this file, you should instead update the original copy in
10
- # eng.git and then update your repo to use the new version.
11
- #
12
- # This Makefile defines several useful targets and rules. You can use it by
13
- # including it from a Makefile that specifies some of the variables below.
14
- #
15
- # Targets defined in this Makefile:
16
- #
17
- # check Checks JavaScript files for lint and style
18
- # Checks bash scripts for syntax
19
- # Checks SMF manifests for validity against the SMF DTD
20
- #
21
- # clean Removes built files
22
- #
23
- # docs Builds restdown documentation in docs/
24
- #
25
- # prepush Depends on "check" and "test"
26
- #
27
- # test Does nothing (you should override this)
28
- #
29
- # xref Generates cscope (source cross-reference index)
30
- #
31
- # For details on what these targets are supposed to do, see the Joyent
32
- # Engineering Guide.
33
- #
34
- # To make use of these targets, you'll need to set some of these variables. Any
35
- # variables left unset will simply not be used.
36
- #
37
- # BASH_FILES Bash scripts to check for syntax
38
- # (paths relative to top-level Makefile)
39
- #
40
- # CLEAN_FILES Files to remove as part of the "clean" target. Note
41
- # that files generated by targets in this Makefile are
42
- # automatically included in CLEAN_FILES. These include
43
- # restdown-generated HTML and JSON files.
44
- #
45
- # DOC_FILES Restdown (documentation source) files. These are
46
- # assumed to be contained in "docs/", and must NOT
47
- # contain the "docs/" prefix.
48
- #
49
- # JSL_CONF_NODE Specify JavaScriptLint configuration files
50
- # JSL_CONF_WEB (paths relative to top-level Makefile)
51
- #
52
- # Node.js and Web configuration files are separate
53
- # because you'll usually want different global variable
54
- # configurations. If no file is specified, none is given
55
- # to jsl, which causes it to use a default configuration,
56
- # which probably isn't what you want.
57
- #
58
- # JSL_FILES_NODE JavaScript files to check with Node config file.
59
- # JSL_FILES_WEB JavaScript files to check with Web config file.
60
- #
61
- # You can also override these variables:
62
- #
63
- # BASH Path to bash (default: bash)
64
- #
65
- # CSCOPE_DIRS Directories to search for source files for the cscope
66
- # index. (default: ".")
67
- #
68
- # JSL Path to JavaScriptLint (default: "jsl")
69
- #
70
- # JSL_FLAGS_NODE Additional flags to pass through to JSL
71
- # JSL_FLAGS_WEB
72
- # JSL_FLAGS
73
- #
74
- # JSSTYLE Path to jsstyle (default: jsstyle)
75
- #
76
- # JSSTYLE_FLAGS Additional flags to pass through to jsstyle
77
- #
78
-
79
- #
80
- # Defaults for the various tools we use.
81
- #
82
- BASH ?= bash
83
- BASHSTYLE ?= tools/bashstyle
84
- CP ?= cp
85
- CSCOPE ?= cscope
86
- CSCOPE_DIRS ?= .
87
- JSL ?= jsl
88
- JSSTYLE ?= jsstyle
89
- MKDIR ?= mkdir -p
90
- MV ?= mv
91
- RESTDOWN_FLAGS ?=
92
- RMTREE ?= rm -rf
93
- JSL_FLAGS ?= --nologo --nosummary
94
-
95
- ifeq ($(shell uname -s),SunOS)
96
- TAR ?= gtar
97
- else
98
- TAR ?= tar
99
- endif
100
-
101
-
102
- #
103
- # Defaults for other fixed values.
104
- #
105
- BUILD = build
106
- DISTCLEAN_FILES += $(BUILD)
107
- DOC_BUILD = $(BUILD)/docs/public
108
-
109
- #
110
- # Configure JSL_FLAGS_{NODE,WEB} based on JSL_CONF_{NODE,WEB}.
111
- #
112
- ifneq ($(origin JSL_CONF_NODE), undefined)
113
- JSL_FLAGS_NODE += --conf=$(JSL_CONF_NODE)
114
- endif
115
-
116
- ifneq ($(origin JSL_CONF_WEB), undefined)
117
- JSL_FLAGS_WEB += --conf=$(JSL_CONF_WEB)
118
- endif
119
-
120
- #
121
- # Targets. For descriptions on what these are supposed to do, see the
122
- # Joyent Engineering Guide.
123
- #
124
-
125
- #
126
- # Instruct make to keep around temporary files. We have rules below that
127
- # automatically update git submodules as needed, but they employ a deps/*/.git
128
- # temporary file. Without this directive, make tries to remove these .git
129
- # directories after the build has completed.
130
- #
131
- .SECONDARY: $($(wildcard deps/*):%=%/.git)
132
-
133
- #
134
- # This rule enables other rules that use files from a git submodule to have
135
- # those files depend on deps/module/.git and have "make" automatically check
136
- # out the submodule as needed.
137
- #
138
- deps/%/.git:
139
- git submodule update --init deps/$*
140
-
141
- #
142
- # These recipes make heavy use of dynamically-created phony targets. The parent
143
- # Makefile defines a list of input files like BASH_FILES. We then say that each
144
- # of these files depends on a fake target called filename.bashchk, and then we
145
- # define a pattern rule for those targets that runs bash in check-syntax-only
146
- # mode. This mechanism has the nice properties that if you specify zero files,
147
- # the rule becomes a noop (unlike a single rule to check all bash files, which
148
- # would invoke bash with zero files), and you can check individual files from
149
- # the command line with "make filename.bashchk".
150
- #
151
- .PHONY: check-bash
152
- check-bash: $(BASH_FILES:%=%.bashchk) $(BASH_FILES:%=%.bashstyle)
153
-
154
- %.bashchk: %
155
- $(BASH) -n $^
156
-
157
- %.bashstyle: %
158
- $(BASHSTYLE) $^
159
-
160
- .PHONY: check-jsl check-jsl-node check-jsl-web
161
- check-jsl: check-jsl-node check-jsl-web
162
-
163
- check-jsl-node: $(JSL_FILES_NODE:%=%.jslnodechk)
164
-
165
- check-jsl-web: $(JSL_FILES_WEB:%=%.jslwebchk)
166
-
167
- %.jslnodechk: % $(JSL_EXEC)
168
- $(JSL) $(JSL_FLAGS) $(JSL_FLAGS_NODE) $<
169
-
170
- %.jslwebchk: % $(JSL_EXEC)
171
- $(JSL) $(JSL_FLAGS) $(JSL_FLAGS_WEB) $<
172
-
173
- .PHONY: check-jsstyle
174
- check-jsstyle: $(JSSTYLE_FILES:%=%.jsstylechk)
175
-
176
- %.jsstylechk: % $(JSSTYLE_EXEC)
177
- $(JSSTYLE) $(JSSTYLE_FLAGS) $<
178
-
179
- .PHONY: check
180
- check: check-jsl check-jsstyle check-bash
181
- @echo check ok
182
-
183
- .PHONY: clean
184
- clean::
185
- -$(RMTREE) $(CLEAN_FILES)
186
-
187
- .PHONY: distclean
188
- distclean:: clean
189
- -$(RMTREE) $(DISTCLEAN_FILES)
190
-
191
- CSCOPE_FILES = cscope.in.out cscope.out cscope.po.out
192
- CLEAN_FILES += $(CSCOPE_FILES)
193
-
194
- .PHONY: xref
195
- xref: cscope.files
196
- $(CSCOPE) -bqR
197
-
198
- .PHONY: cscope.files
199
- cscope.files:
200
- find $(CSCOPE_DIRS) -name '*.c' -o -name '*.h' -o -name '*.cc' \
201
- -o -name '*.js' -o -name '*.s' -o -name '*.cpp' > $@
202
-
203
- #
204
- # The "docs" target is complicated because we do several things here:
205
- #
206
- # (1) Use restdown to build HTML and JSON files from each of DOC_FILES.
207
- #
208
- # (2) Copy these files into $(DOC_BUILD) (build/docs/public), which
209
- # functions as a complete copy of the documentation that could be
210
- # mirrored or served over HTTP.
211
- #
212
- # (3) Then copy any directories and media from docs/media into
213
- # $(DOC_BUILD)/media. This allows projects to include their own media,
214
- # including files that will override same-named files provided by
215
- # restdown.
216
- #
217
- # Step (3) is the surprisingly complex part: in order to do this, we need to
218
- # identify the subdirectories in docs/media, recreate them in
219
- # $(DOC_BUILD)/media, then do the same with the files.
220
- #
221
- DOC_MEDIA_DIRS := $(shell find docs/media -type d 2>/dev/null | grep -v "^docs/media$$")
222
- DOC_MEDIA_DIRS := $(DOC_MEDIA_DIRS:docs/media/%=%)
223
- DOC_MEDIA_DIRS_BUILD := $(DOC_MEDIA_DIRS:%=$(DOC_BUILD)/media/%)
224
-
225
- DOC_MEDIA_FILES := $(shell find docs/media -type f 2>/dev/null)
226
- DOC_MEDIA_FILES := $(DOC_MEDIA_FILES:docs/media/%=%)
227
- DOC_MEDIA_FILES_BUILD := $(DOC_MEDIA_FILES:%=$(DOC_BUILD)/media/%)
228
-
229
- #
230
- # Like the other targets, "docs" just depends on the final files we want to
231
- # create in $(DOC_BUILD), leveraging other targets and recipes to define how
232
- # to get there.
233
- #
234
- .PHONY: docs
235
- docs: \
236
- $(DOC_FILES:%.restdown=$(DOC_BUILD)/%.html) \
237
- $(DOC_FILES:%.restdown=$(DOC_BUILD)/%.json) \
238
- $(DOC_MEDIA_FILES_BUILD)
239
-
240
- #
241
- # We keep the intermediate files so that the next build can see whether the
242
- # files in DOC_BUILD are up to date.
243
- #
244
- .PRECIOUS: \
245
- $(DOC_FILES:%.restdown=docs/%.html) \
246
- $(DOC_FILES:%.restdown=docs/%json)
247
-
248
- #
249
- # We do clean those intermediate files, as well as all of DOC_BUILD.
250
- #
251
- CLEAN_FILES += \
252
- $(DOC_BUILD) \
253
- $(DOC_FILES:%.restdown=docs/%.html) \
254
- $(DOC_FILES:%.restdown=docs/%.json)
255
-
256
- #
257
- # Before installing the files, we must make sure the directories exist. The |
258
- # syntax tells make that the dependency need only exist, not be up to date.
259
- # Otherwise, it might try to rebuild spuriously because the directory itself
260
- # appears out of date.
261
- #
262
- $(DOC_MEDIA_FILES_BUILD): | $(DOC_MEDIA_DIRS_BUILD)
263
-
264
- $(DOC_BUILD)/%: docs/% | $(DOC_BUILD)
265
- $(CP) $< $@
266
-
267
- docs/%.json docs/%.html: docs/%.restdown | $(DOC_BUILD) $(RESTDOWN_EXEC)
268
- $(RESTDOWN) $(RESTDOWN_FLAGS) -m $(DOC_BUILD) $<
269
-
270
- $(DOC_BUILD):
271
- $(MKDIR) $@
272
-
273
- $(DOC_MEDIA_DIRS_BUILD):
274
- $(MKDIR) $@
275
-
276
- #
277
- # The default "test" target does nothing. This should usually be overridden by
278
- # the parent Makefile. It's included here so we can define "prepush" without
279
- # requiring the repo to define "test".
280
- #
281
- .PHONY: test
282
- test:
283
-
284
- .PHONY: prepush
285
- prepush: check test