step-node-agent 3.17.2 → 3.18.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.
Files changed (1788) hide show
  1. package/node_modules/accepts/HISTORY.md +7 -0
  2. package/node_modules/accepts/README.md +3 -5
  3. package/node_modules/accepts/package.json +16 -20
  4. package/node_modules/array-flatten/package.json +1 -5
  5. package/node_modules/asn1/Jenkinsfile +65 -0
  6. package/node_modules/asn1/package.json +3 -7
  7. package/node_modules/assert-plus/package.json +1 -5
  8. package/node_modules/asynckit/package.json +1 -5
  9. package/node_modules/aws-sign2/package.json +1 -5
  10. package/node_modules/aws4/package.json +1 -5
  11. package/node_modules/balanced-match/package.json +1 -5
  12. package/node_modules/bcrypt-pbkdf/package.json +1 -5
  13. package/node_modules/binary/package.json +1 -5
  14. package/node_modules/body-parser/HISTORY.md +42 -0
  15. package/node_modules/body-parser/README.md +33 -12
  16. package/node_modules/body-parser/SECURITY.md +25 -0
  17. package/node_modules/body-parser/lib/read.js +26 -2
  18. package/node_modules/body-parser/lib/types/json.js +10 -4
  19. package/node_modules/body-parser/package.json +28 -28
  20. package/node_modules/brace-expansion/package.json +1 -5
  21. package/node_modules/buffers/package.json +1 -5
  22. package/node_modules/bytes/History.md +10 -0
  23. package/node_modules/bytes/Readme.md +42 -16
  24. package/node_modules/bytes/index.js +9 -1
  25. package/node_modules/bytes/package.json +7 -10
  26. package/node_modules/{is-callable → call-bind}/.eslintignore +0 -0
  27. package/node_modules/call-bind/.eslintrc +17 -0
  28. package/node_modules/call-bind/.github/FUNDING.yml +12 -0
  29. package/node_modules/call-bind/.nycrc +13 -0
  30. package/node_modules/call-bind/CHANGELOG.md +42 -0
  31. package/node_modules/call-bind/LICENSE +21 -0
  32. package/node_modules/call-bind/README.md +2 -0
  33. package/node_modules/call-bind/callBound.js +15 -0
  34. package/node_modules/call-bind/index.js +47 -0
  35. package/node_modules/call-bind/package.json +80 -0
  36. package/node_modules/call-bind/test/callBound.js +55 -0
  37. package/node_modules/call-bind/test/index.js +66 -0
  38. package/node_modules/caseless/package.json +1 -5
  39. package/node_modules/chainsaw/package.json +1 -5
  40. package/node_modules/combined-stream/package.json +1 -5
  41. package/node_modules/concat-map/package.json +1 -5
  42. package/node_modules/content-disposition/HISTORY.md +5 -0
  43. package/node_modules/content-disposition/README.md +3 -9
  44. package/node_modules/content-disposition/index.js +1 -1
  45. package/node_modules/content-disposition/package.json +14 -18
  46. package/node_modules/content-type/package.json +1 -5
  47. package/node_modules/cookie/HISTORY.md +11 -0
  48. package/node_modules/cookie/README.md +53 -20
  49. package/node_modules/cookie/index.js +16 -12
  50. package/node_modules/cookie/package.json +12 -14
  51. package/node_modules/cookie-signature/package.json +1 -5
  52. package/node_modules/dashdash/package.json +1 -5
  53. package/node_modules/debug/package.json +1 -5
  54. package/node_modules/delayed-stream/package.json +1 -5
  55. package/node_modules/depd/History.md +7 -0
  56. package/node_modules/depd/LICENSE +1 -1
  57. package/node_modules/depd/Readme.md +8 -8
  58. package/node_modules/depd/index.js +29 -13
  59. package/node_modules/depd/package.json +14 -14
  60. package/node_modules/destroy/LICENSE +1 -0
  61. package/node_modules/destroy/README.md +15 -12
  62. package/node_modules/destroy/index.js +147 -13
  63. package/node_modules/destroy/package.json +17 -10
  64. package/node_modules/ecc-jsbn/package.json +1 -5
  65. package/node_modules/ee-first/package.json +1 -5
  66. package/node_modules/encodeurl/package.json +1 -5
  67. package/node_modules/escape-html/package.json +1 -5
  68. package/node_modules/etag/package.json +1 -5
  69. package/node_modules/express/History.md +48 -0
  70. package/node_modules/express/Readme.md +8 -5
  71. package/node_modules/express/lib/application.js +1 -1
  72. package/node_modules/express/lib/request.js +1 -1
  73. package/node_modules/express/lib/response.js +17 -12
  74. package/node_modules/express/lib/router/index.js +6 -0
  75. package/node_modules/express/lib/utils.js +4 -7
  76. package/node_modules/express/node_modules/body-parser/HISTORY.md +633 -0
  77. package/node_modules/express/node_modules/body-parser/LICENSE +23 -0
  78. package/node_modules/express/node_modules/body-parser/README.md +456 -0
  79. package/node_modules/express/node_modules/body-parser/index.js +157 -0
  80. package/node_modules/express/node_modules/body-parser/lib/read.js +181 -0
  81. package/node_modules/express/node_modules/body-parser/lib/types/json.js +230 -0
  82. package/node_modules/express/node_modules/body-parser/lib/types/raw.js +101 -0
  83. package/node_modules/express/node_modules/body-parser/lib/types/text.js +121 -0
  84. package/node_modules/express/node_modules/body-parser/lib/types/urlencoded.js +284 -0
  85. package/node_modules/express/node_modules/body-parser/package.json +52 -0
  86. package/node_modules/express/node_modules/depd/History.md +96 -0
  87. package/node_modules/express/node_modules/depd/LICENSE +22 -0
  88. package/node_modules/express/node_modules/depd/Readme.md +280 -0
  89. package/node_modules/express/node_modules/depd/index.js +522 -0
  90. package/node_modules/express/node_modules/depd/lib/browser/index.js +77 -0
  91. package/node_modules/{depd → express/node_modules/depd}/lib/compat/callsite-tostring.js +0 -0
  92. package/node_modules/{depd → express/node_modules/depd}/lib/compat/event-listener-count.js +0 -0
  93. package/node_modules/{depd → express/node_modules/depd}/lib/compat/index.js +0 -0
  94. package/node_modules/express/node_modules/depd/package.json +41 -0
  95. package/node_modules/express/node_modules/http-errors/HISTORY.md +165 -0
  96. package/node_modules/express/node_modules/http-errors/LICENSE +23 -0
  97. package/node_modules/express/node_modules/http-errors/README.md +169 -0
  98. package/node_modules/express/node_modules/http-errors/index.js +299 -0
  99. package/node_modules/express/node_modules/http-errors/package.json +49 -0
  100. package/node_modules/express/node_modules/on-finished/HISTORY.md +88 -0
  101. package/node_modules/express/node_modules/on-finished/LICENSE +23 -0
  102. package/node_modules/express/node_modules/on-finished/README.md +154 -0
  103. package/node_modules/express/node_modules/on-finished/index.js +196 -0
  104. package/node_modules/express/node_modules/on-finished/package.json +31 -0
  105. package/node_modules/express/node_modules/qs/.editorconfig +40 -0
  106. package/node_modules/express/node_modules/qs/.eslintrc +38 -0
  107. package/node_modules/express/node_modules/qs/.github/FUNDING.yml +12 -0
  108. package/node_modules/express/node_modules/qs/.nycrc +13 -0
  109. package/node_modules/express/node_modules/qs/CHANGELOG.md +371 -0
  110. package/node_modules/express/node_modules/qs/LICENSE.md +29 -0
  111. package/node_modules/express/node_modules/qs/README.md +616 -0
  112. package/node_modules/express/node_modules/qs/dist/qs.js +842 -0
  113. package/node_modules/express/node_modules/qs/lib/formats.js +23 -0
  114. package/node_modules/express/node_modules/qs/lib/index.js +11 -0
  115. package/node_modules/express/node_modules/qs/lib/parse.js +257 -0
  116. package/node_modules/express/node_modules/qs/lib/stringify.js +287 -0
  117. package/node_modules/express/node_modules/qs/lib/utils.js +252 -0
  118. package/node_modules/express/node_modules/qs/package.json +70 -0
  119. package/node_modules/express/node_modules/qs/test/parse.js +832 -0
  120. package/node_modules/express/node_modules/qs/test/stringify.js +804 -0
  121. package/node_modules/express/node_modules/qs/test/utils.js +136 -0
  122. package/node_modules/express/node_modules/raw-body/HISTORY.md +289 -0
  123. package/node_modules/express/node_modules/raw-body/LICENSE +22 -0
  124. package/node_modules/express/node_modules/raw-body/README.md +219 -0
  125. package/node_modules/express/node_modules/raw-body/index.d.ts +87 -0
  126. package/node_modules/express/node_modules/raw-body/index.js +286 -0
  127. package/node_modules/express/node_modules/raw-body/package.json +48 -0
  128. package/node_modules/express/package.json +29 -31
  129. package/node_modules/extend/package.json +1 -5
  130. package/node_modules/extsprintf/package.json +1 -5
  131. package/node_modules/fast-json-stable-stringify/package.json +1 -5
  132. package/node_modules/finalhandler/node_modules/on-finished/HISTORY.md +88 -0
  133. package/node_modules/finalhandler/node_modules/on-finished/LICENSE +23 -0
  134. package/node_modules/finalhandler/node_modules/on-finished/README.md +154 -0
  135. package/node_modules/finalhandler/node_modules/on-finished/index.js +196 -0
  136. package/node_modules/finalhandler/node_modules/on-finished/package.json +31 -0
  137. package/node_modules/finalhandler/package.json +1 -5
  138. package/node_modules/forever-agent/package.json +1 -5
  139. package/node_modules/form-data/package.json +1 -5
  140. package/node_modules/forwarded/package.json +1 -5
  141. package/node_modules/fresh/package.json +1 -5
  142. package/node_modules/fs.realpath/package.json +1 -5
  143. package/node_modules/function-bind/package.json +1 -5
  144. package/node_modules/{is-core-module → get-intrinsic}/.eslintignore +0 -0
  145. package/node_modules/get-intrinsic/.eslintrc +43 -0
  146. package/node_modules/get-intrinsic/.github/FUNDING.yml +12 -0
  147. package/node_modules/get-intrinsic/.nycrc +13 -0
  148. package/node_modules/get-intrinsic/CHANGELOG.md +64 -0
  149. package/node_modules/get-intrinsic/LICENSE +21 -0
  150. package/node_modules/get-intrinsic/README.md +65 -0
  151. package/node_modules/get-intrinsic/index.js +330 -0
  152. package/node_modules/get-intrinsic/package.json +78 -0
  153. package/node_modules/get-intrinsic/test/GetIntrinsic.js +260 -0
  154. package/node_modules/getpass/package.json +1 -5
  155. package/node_modules/glob/package.json +1 -5
  156. package/node_modules/har-schema/package.json +0 -4
  157. package/node_modules/{ajv → har-validator/node_modules/ajv}/.tonic_example.js +0 -0
  158. package/node_modules/{ajv → har-validator/node_modules/ajv}/LICENSE +0 -0
  159. package/node_modules/{ajv → har-validator/node_modules/ajv}/README.md +0 -0
  160. package/node_modules/{ajv → har-validator/node_modules/ajv}/dist/ajv.bundle.js +0 -0
  161. package/node_modules/{ajv → har-validator/node_modules/ajv}/dist/ajv.min.js +0 -0
  162. package/node_modules/{ajv → har-validator/node_modules/ajv}/dist/ajv.min.js.map +0 -0
  163. package/node_modules/{ajv → har-validator/node_modules/ajv}/lib/ajv.d.ts +0 -0
  164. package/node_modules/{ajv → har-validator/node_modules/ajv}/lib/ajv.js +0 -0
  165. package/node_modules/{ajv → har-validator/node_modules/ajv}/lib/cache.js +0 -0
  166. package/node_modules/{ajv → har-validator/node_modules/ajv}/lib/compile/async.js +0 -0
  167. package/node_modules/{ajv → har-validator/node_modules/ajv}/lib/compile/equal.js +0 -0
  168. package/node_modules/{ajv → har-validator/node_modules/ajv}/lib/compile/error_classes.js +0 -0
  169. package/node_modules/{ajv → har-validator/node_modules/ajv}/lib/compile/formats.js +0 -0
  170. package/node_modules/{ajv → har-validator/node_modules/ajv}/lib/compile/index.js +0 -0
  171. package/node_modules/{ajv → har-validator/node_modules/ajv}/lib/compile/resolve.js +0 -0
  172. package/node_modules/{ajv → har-validator/node_modules/ajv}/lib/compile/rules.js +0 -0
  173. package/node_modules/{ajv → har-validator/node_modules/ajv}/lib/compile/schema_obj.js +0 -0
  174. package/node_modules/{ajv → har-validator/node_modules/ajv}/lib/compile/ucs2length.js +0 -0
  175. package/node_modules/{ajv → har-validator/node_modules/ajv}/lib/compile/util.js +0 -0
  176. package/node_modules/{ajv → har-validator/node_modules/ajv}/lib/data.js +0 -0
  177. package/node_modules/{ajv → har-validator/node_modules/ajv}/lib/definition_schema.js +0 -0
  178. package/node_modules/{ajv → har-validator/node_modules/ajv}/lib/dot/_limit.jst +0 -0
  179. package/node_modules/{ajv → har-validator/node_modules/ajv}/lib/dot/_limitItems.jst +0 -0
  180. package/node_modules/{ajv → har-validator/node_modules/ajv}/lib/dot/_limitLength.jst +0 -0
  181. package/node_modules/{ajv → har-validator/node_modules/ajv}/lib/dot/_limitProperties.jst +0 -0
  182. package/node_modules/{ajv → har-validator/node_modules/ajv}/lib/dot/allOf.jst +0 -0
  183. package/node_modules/{ajv → har-validator/node_modules/ajv}/lib/dot/anyOf.jst +0 -0
  184. package/node_modules/{ajv → har-validator/node_modules/ajv}/lib/dot/coerce.def +0 -0
  185. package/node_modules/{ajv → har-validator/node_modules/ajv}/lib/dot/comment.jst +0 -0
  186. package/node_modules/{ajv → har-validator/node_modules/ajv}/lib/dot/const.jst +0 -0
  187. package/node_modules/{ajv → har-validator/node_modules/ajv}/lib/dot/contains.jst +0 -0
  188. package/node_modules/{ajv → har-validator/node_modules/ajv}/lib/dot/custom.jst +0 -0
  189. package/node_modules/{ajv → har-validator/node_modules/ajv}/lib/dot/defaults.def +0 -0
  190. package/node_modules/{ajv → har-validator/node_modules/ajv}/lib/dot/definitions.def +0 -0
  191. package/node_modules/{ajv → har-validator/node_modules/ajv}/lib/dot/dependencies.jst +0 -0
  192. package/node_modules/{ajv → har-validator/node_modules/ajv}/lib/dot/enum.jst +0 -0
  193. package/node_modules/{ajv → har-validator/node_modules/ajv}/lib/dot/errors.def +0 -0
  194. package/node_modules/{ajv → har-validator/node_modules/ajv}/lib/dot/format.jst +0 -0
  195. package/node_modules/{ajv → har-validator/node_modules/ajv}/lib/dot/if.jst +0 -0
  196. package/node_modules/{ajv → har-validator/node_modules/ajv}/lib/dot/items.jst +0 -0
  197. package/node_modules/{ajv → har-validator/node_modules/ajv}/lib/dot/missing.def +0 -0
  198. package/node_modules/{ajv → har-validator/node_modules/ajv}/lib/dot/multipleOf.jst +0 -0
  199. package/node_modules/{ajv → har-validator/node_modules/ajv}/lib/dot/not.jst +0 -0
  200. package/node_modules/{ajv → har-validator/node_modules/ajv}/lib/dot/oneOf.jst +0 -0
  201. package/node_modules/{ajv → har-validator/node_modules/ajv}/lib/dot/pattern.jst +0 -0
  202. package/node_modules/{ajv → har-validator/node_modules/ajv}/lib/dot/properties.jst +0 -0
  203. package/node_modules/{ajv → har-validator/node_modules/ajv}/lib/dot/propertyNames.jst +0 -0
  204. package/node_modules/{ajv → har-validator/node_modules/ajv}/lib/dot/ref.jst +0 -0
  205. package/node_modules/{ajv → har-validator/node_modules/ajv}/lib/dot/required.jst +0 -0
  206. package/node_modules/{ajv → har-validator/node_modules/ajv}/lib/dot/uniqueItems.jst +0 -0
  207. package/node_modules/{ajv → har-validator/node_modules/ajv}/lib/dot/validate.jst +0 -0
  208. package/node_modules/{ajv → har-validator/node_modules/ajv}/lib/dotjs/README.md +0 -0
  209. package/node_modules/{ajv → har-validator/node_modules/ajv}/lib/dotjs/_limit.js +0 -0
  210. package/node_modules/{ajv → har-validator/node_modules/ajv}/lib/dotjs/_limitItems.js +0 -0
  211. package/node_modules/{ajv → har-validator/node_modules/ajv}/lib/dotjs/_limitLength.js +0 -0
  212. package/node_modules/{ajv → har-validator/node_modules/ajv}/lib/dotjs/_limitProperties.js +0 -0
  213. package/node_modules/{ajv → har-validator/node_modules/ajv}/lib/dotjs/allOf.js +0 -0
  214. package/node_modules/{ajv → har-validator/node_modules/ajv}/lib/dotjs/anyOf.js +0 -0
  215. package/node_modules/{ajv → har-validator/node_modules/ajv}/lib/dotjs/comment.js +0 -0
  216. package/node_modules/{ajv → har-validator/node_modules/ajv}/lib/dotjs/const.js +0 -0
  217. package/node_modules/{ajv → har-validator/node_modules/ajv}/lib/dotjs/contains.js +0 -0
  218. package/node_modules/{ajv → har-validator/node_modules/ajv}/lib/dotjs/custom.js +0 -0
  219. package/node_modules/{ajv → har-validator/node_modules/ajv}/lib/dotjs/dependencies.js +0 -0
  220. package/node_modules/{ajv → har-validator/node_modules/ajv}/lib/dotjs/enum.js +0 -0
  221. package/node_modules/{ajv → har-validator/node_modules/ajv}/lib/dotjs/format.js +0 -0
  222. package/node_modules/{ajv → har-validator/node_modules/ajv}/lib/dotjs/if.js +0 -0
  223. package/node_modules/{ajv → har-validator/node_modules/ajv}/lib/dotjs/index.js +0 -0
  224. package/node_modules/{ajv → har-validator/node_modules/ajv}/lib/dotjs/items.js +0 -0
  225. package/node_modules/{ajv → har-validator/node_modules/ajv}/lib/dotjs/multipleOf.js +0 -0
  226. package/node_modules/{ajv → har-validator/node_modules/ajv}/lib/dotjs/not.js +0 -0
  227. package/node_modules/{ajv → har-validator/node_modules/ajv}/lib/dotjs/oneOf.js +0 -0
  228. package/node_modules/{ajv → har-validator/node_modules/ajv}/lib/dotjs/pattern.js +0 -0
  229. package/node_modules/{ajv → har-validator/node_modules/ajv}/lib/dotjs/properties.js +0 -0
  230. package/node_modules/{ajv → har-validator/node_modules/ajv}/lib/dotjs/propertyNames.js +0 -0
  231. package/node_modules/{ajv → har-validator/node_modules/ajv}/lib/dotjs/ref.js +0 -0
  232. package/node_modules/{ajv → har-validator/node_modules/ajv}/lib/dotjs/required.js +0 -0
  233. package/node_modules/{ajv → har-validator/node_modules/ajv}/lib/dotjs/uniqueItems.js +0 -0
  234. package/node_modules/{ajv → har-validator/node_modules/ajv}/lib/dotjs/validate.js +0 -0
  235. package/node_modules/{ajv → har-validator/node_modules/ajv}/lib/keyword.js +0 -0
  236. package/node_modules/{ajv → har-validator/node_modules/ajv}/lib/refs/data.json +0 -0
  237. package/node_modules/{ajv → har-validator/node_modules/ajv}/lib/refs/json-schema-draft-04.json +0 -0
  238. package/node_modules/{ajv → har-validator/node_modules/ajv}/lib/refs/json-schema-draft-06.json +0 -0
  239. package/node_modules/{ajv → har-validator/node_modules/ajv}/lib/refs/json-schema-draft-07.json +0 -0
  240. package/node_modules/{ajv → har-validator/node_modules/ajv}/lib/refs/json-schema-secure.json +0 -0
  241. package/node_modules/har-validator/node_modules/ajv/package.json +106 -0
  242. package/node_modules/{ajv → har-validator/node_modules/ajv}/scripts/.eslintrc.yml +0 -0
  243. package/node_modules/{ajv → har-validator/node_modules/ajv}/scripts/bundle.js +0 -0
  244. package/node_modules/{ajv → har-validator/node_modules/ajv}/scripts/compile-dots.js +0 -0
  245. package/node_modules/{ajv → har-validator/node_modules/ajv}/scripts/info +0 -0
  246. package/node_modules/{ajv → har-validator/node_modules/ajv}/scripts/prepare-tests +0 -0
  247. package/node_modules/{ajv → har-validator/node_modules/ajv}/scripts/publish-built-version +0 -0
  248. package/node_modules/{ajv → har-validator/node_modules/ajv}/scripts/travis-gh-pages +0 -0
  249. package/node_modules/{fast-deep-equal → har-validator/node_modules/fast-deep-equal}/LICENSE +0 -0
  250. package/node_modules/{fast-deep-equal → har-validator/node_modules/fast-deep-equal}/README.md +0 -0
  251. package/node_modules/{fast-deep-equal → har-validator/node_modules/fast-deep-equal}/es6/index.d.ts +0 -0
  252. package/node_modules/{fast-deep-equal → har-validator/node_modules/fast-deep-equal}/es6/index.js +0 -0
  253. package/node_modules/{fast-deep-equal → har-validator/node_modules/fast-deep-equal}/es6/react.d.ts +0 -0
  254. package/node_modules/{fast-deep-equal → har-validator/node_modules/fast-deep-equal}/es6/react.js +0 -0
  255. package/node_modules/{fast-deep-equal → har-validator/node_modules/fast-deep-equal}/index.d.ts +0 -0
  256. package/node_modules/{fast-deep-equal → har-validator/node_modules/fast-deep-equal}/index.js +0 -0
  257. package/node_modules/har-validator/node_modules/fast-deep-equal/package.json +61 -0
  258. package/node_modules/{fast-deep-equal → har-validator/node_modules/fast-deep-equal}/react.d.ts +0 -0
  259. package/node_modules/{fast-deep-equal → har-validator/node_modules/fast-deep-equal}/react.js +0 -0
  260. package/node_modules/{json-schema-traverse → har-validator/node_modules/json-schema-traverse}/.eslintrc.yml +0 -0
  261. package/node_modules/{json-schema-traverse → har-validator/node_modules/json-schema-traverse}/.travis.yml +0 -0
  262. package/node_modules/{json-schema-traverse → har-validator/node_modules/json-schema-traverse}/LICENSE +0 -0
  263. package/node_modules/{json-schema-traverse → har-validator/node_modules/json-schema-traverse}/README.md +0 -0
  264. package/node_modules/{json-schema-traverse → har-validator/node_modules/json-schema-traverse}/index.js +0 -0
  265. package/node_modules/har-validator/node_modules/json-schema-traverse/package.json +43 -0
  266. package/node_modules/{json-schema-traverse → har-validator/node_modules/json-schema-traverse}/spec/.eslintrc.yml +0 -0
  267. package/node_modules/{json-schema-traverse → har-validator/node_modules/json-schema-traverse}/spec/fixtures/schema.js +0 -0
  268. package/node_modules/{json-schema-traverse → har-validator/node_modules/json-schema-traverse}/spec/index.spec.js +0 -0
  269. package/node_modules/har-validator/package.json +1 -5
  270. package/node_modules/has/package.json +1 -5
  271. package/node_modules/has-symbols/.eslintrc +11 -0
  272. package/node_modules/has-symbols/.github/FUNDING.yml +12 -0
  273. package/node_modules/{is-callable → has-symbols}/.nycrc +0 -0
  274. package/node_modules/has-symbols/CHANGELOG.md +75 -0
  275. package/node_modules/has-symbols/LICENSE +21 -0
  276. package/node_modules/has-symbols/README.md +46 -0
  277. package/node_modules/has-symbols/index.js +13 -0
  278. package/node_modules/has-symbols/package.json +101 -0
  279. package/node_modules/has-symbols/shams.js +42 -0
  280. package/node_modules/has-symbols/test/index.js +22 -0
  281. package/node_modules/has-symbols/test/shams/core-js.js +28 -0
  282. package/node_modules/has-symbols/test/shams/get-own-property-symbols.js +28 -0
  283. package/node_modules/has-symbols/test/tests.js +56 -0
  284. package/node_modules/http/package.json +1 -5
  285. package/node_modules/http-errors/HISTORY.md +31 -0
  286. package/node_modules/http-errors/README.md +14 -8
  287. package/node_modules/http-errors/index.js +49 -26
  288. package/node_modules/http-errors/node_modules/statuses/HISTORY.md +82 -0
  289. package/node_modules/http-errors/node_modules/statuses/LICENSE +23 -0
  290. package/node_modules/http-errors/node_modules/statuses/README.md +136 -0
  291. package/node_modules/http-errors/node_modules/statuses/codes.json +65 -0
  292. package/node_modules/http-errors/node_modules/statuses/index.js +146 -0
  293. package/node_modules/http-errors/node_modules/statuses/package.json +49 -0
  294. package/node_modules/http-errors/package.json +21 -24
  295. package/node_modules/http-signature/package.json +1 -5
  296. package/node_modules/iconv-lite/package.json +1 -5
  297. package/node_modules/inflight/package.json +1 -5
  298. package/node_modules/inherits/inherits.js +2 -0
  299. package/node_modules/inherits/inherits_browser.js +18 -14
  300. package/node_modules/inherits/package.json +4 -8
  301. package/node_modules/interpret/package.json +1 -5
  302. package/node_modules/ipaddr.js/package.json +1 -5
  303. package/node_modules/is-core-module/.eslintrc +0 -1
  304. package/node_modules/is-core-module/CHANGELOG.md +18 -0
  305. package/node_modules/is-core-module/core.json +7 -5
  306. package/node_modules/is-core-module/package.json +8 -12
  307. package/node_modules/is-core-module/test/index.js +1 -1
  308. package/node_modules/is-typedarray/package.json +1 -5
  309. package/node_modules/isstream/package.json +1 -5
  310. package/node_modules/jsbn/package.json +1 -5
  311. package/node_modules/json-schema/LICENSE +195 -0
  312. package/node_modules/json-schema/README.md +2 -4
  313. package/node_modules/json-schema/lib/links.js +1 -2
  314. package/node_modules/json-schema/lib/validate.js +7 -9
  315. package/node_modules/json-schema/package.json +6 -16
  316. package/node_modules/json-stringify-safe/package.json +1 -5
  317. package/node_modules/jsprim/CHANGES.md +4 -0
  318. package/node_modules/jsprim/package.json +6 -10
  319. package/node_modules/media-typer/package.json +1 -5
  320. package/node_modules/merge-descriptors/package.json +1 -5
  321. package/node_modules/methods/package.json +1 -5
  322. package/node_modules/mime/package.json +1 -5
  323. package/node_modules/mime-db/HISTORY.md +15 -0
  324. package/node_modules/mime-db/LICENSE +19 -18
  325. package/node_modules/mime-db/README.md +1 -1
  326. package/node_modules/mime-db/db.json +72 -6
  327. package/node_modules/mime-db/index.js +1 -0
  328. package/node_modules/mime-db/package.json +7 -10
  329. package/node_modules/mime-types/HISTORY.md +15 -3
  330. package/node_modules/mime-types/README.md +1 -1
  331. package/node_modules/mime-types/package.json +6 -10
  332. package/node_modules/minimatch/README.md +22 -1
  333. package/node_modules/minimatch/minimatch.js +93 -69
  334. package/node_modules/minimatch/package.json +7 -8
  335. package/node_modules/minimist/index.js +6 -2
  336. package/node_modules/minimist/package.json +2 -6
  337. package/node_modules/minimist/readme.markdown +4 -1
  338. package/node_modules/minimist/test/proto.js +16 -0
  339. package/node_modules/mkdirp/index.js +5 -2
  340. package/node_modules/mkdirp/package.json +4 -9
  341. package/node_modules/ms/package.json +1 -5
  342. package/node_modules/negotiator/HISTORY.md +5 -0
  343. package/node_modules/negotiator/README.md +3 -3
  344. package/node_modules/negotiator/index.js +4 -46
  345. package/node_modules/negotiator/lib/language.js +3 -3
  346. package/node_modules/negotiator/package.json +9 -13
  347. package/node_modules/npm/.eslintrc +3 -0
  348. package/node_modules/npm/CHANGELOG.md +14 -0
  349. package/node_modules/npm/docs/public/cli-commands/npm/index.html +3 -3
  350. package/node_modules/npm/docs/public/cli-commands/npm-access/index.html +2 -2
  351. package/node_modules/npm/docs/public/cli-commands/npm-adduser/index.html +2 -2
  352. package/node_modules/npm/docs/public/cli-commands/npm-audit/index.html +2 -2
  353. package/node_modules/npm/docs/public/cli-commands/npm-bin/index.html +2 -2
  354. package/node_modules/npm/docs/public/cli-commands/npm-bugs/index.html +2 -2
  355. package/node_modules/npm/docs/public/cli-commands/npm-build/index.html +2 -2
  356. package/node_modules/npm/docs/public/cli-commands/npm-bundle/index.html +2 -2
  357. package/node_modules/npm/docs/public/cli-commands/npm-cache/index.html +2 -2
  358. package/node_modules/npm/docs/public/cli-commands/npm-ci/index.html +2 -2
  359. package/node_modules/npm/docs/public/cli-commands/npm-completion/index.html +2 -2
  360. package/node_modules/npm/docs/public/cli-commands/npm-config/index.html +2 -2
  361. package/node_modules/npm/docs/public/cli-commands/npm-dedupe/index.html +2 -2
  362. package/node_modules/npm/docs/public/cli-commands/npm-deprecate/index.html +2 -2
  363. package/node_modules/npm/docs/public/cli-commands/npm-dist-tag/index.html +2 -2
  364. package/node_modules/npm/docs/public/cli-commands/npm-docs/index.html +2 -2
  365. package/node_modules/npm/docs/public/cli-commands/npm-doctor/index.html +2 -2
  366. package/node_modules/npm/docs/public/cli-commands/npm-edit/index.html +2 -2
  367. package/node_modules/npm/docs/public/cli-commands/npm-explore/index.html +2 -2
  368. package/node_modules/npm/docs/public/cli-commands/npm-fund/index.html +2 -2
  369. package/node_modules/npm/docs/public/cli-commands/npm-help/index.html +2 -2
  370. package/node_modules/npm/docs/public/cli-commands/npm-help-search/index.html +2 -2
  371. package/node_modules/npm/docs/public/cli-commands/npm-hook/index.html +2 -2
  372. package/node_modules/npm/docs/public/cli-commands/npm-init/index.html +2 -2
  373. package/node_modules/npm/docs/public/cli-commands/npm-install/index.html +2 -2
  374. package/node_modules/npm/docs/public/cli-commands/npm-install-ci-test/index.html +2 -2
  375. package/node_modules/npm/docs/public/cli-commands/npm-install-test/index.html +2 -2
  376. package/node_modules/npm/docs/public/cli-commands/npm-link/index.html +2 -2
  377. package/node_modules/npm/docs/public/cli-commands/npm-logout/index.html +2 -2
  378. package/node_modules/npm/docs/public/cli-commands/npm-ls/index.html +3 -3
  379. package/node_modules/npm/docs/public/cli-commands/npm-org/index.html +2 -2
  380. package/node_modules/npm/docs/public/cli-commands/npm-outdated/index.html +2 -2
  381. package/node_modules/npm/docs/public/cli-commands/npm-owner/index.html +2 -2
  382. package/node_modules/npm/docs/public/cli-commands/npm-pack/index.html +2 -2
  383. package/node_modules/npm/docs/public/cli-commands/npm-ping/index.html +2 -2
  384. package/node_modules/npm/docs/public/cli-commands/npm-prefix/index.html +2 -2
  385. package/node_modules/npm/docs/public/cli-commands/npm-profile/index.html +2 -2
  386. package/node_modules/npm/docs/public/cli-commands/npm-prune/index.html +2 -2
  387. package/node_modules/npm/docs/public/cli-commands/npm-publish/index.html +2 -2
  388. package/node_modules/npm/docs/public/cli-commands/npm-rebuild/index.html +2 -2
  389. package/node_modules/npm/docs/public/cli-commands/npm-repo/index.html +2 -2
  390. package/node_modules/npm/docs/public/cli-commands/npm-restart/index.html +2 -2
  391. package/node_modules/npm/docs/public/cli-commands/npm-root/index.html +2 -2
  392. package/node_modules/npm/docs/public/cli-commands/npm-run-script/index.html +2 -2
  393. package/node_modules/npm/docs/public/cli-commands/npm-search/index.html +2 -2
  394. package/node_modules/npm/docs/public/cli-commands/npm-shrinkwrap/index.html +2 -2
  395. package/node_modules/npm/docs/public/cli-commands/npm-star/index.html +2 -2
  396. package/node_modules/npm/docs/public/cli-commands/npm-stars/index.html +2 -2
  397. package/node_modules/npm/docs/public/cli-commands/npm-start/index.html +2 -2
  398. package/node_modules/npm/docs/public/cli-commands/npm-stop/index.html +2 -2
  399. package/node_modules/npm/docs/public/cli-commands/npm-team/index.html +2 -2
  400. package/node_modules/npm/docs/public/cli-commands/npm-test/index.html +2 -2
  401. package/node_modules/npm/docs/public/cli-commands/npm-token/index.html +2 -2
  402. package/node_modules/npm/docs/public/cli-commands/npm-uninstall/index.html +2 -2
  403. package/node_modules/npm/docs/public/cli-commands/npm-unpublish/index.html +2 -2
  404. package/node_modules/npm/docs/public/cli-commands/npm-update/index.html +2 -2
  405. package/node_modules/npm/docs/public/cli-commands/npm-version/index.html +2 -2
  406. package/node_modules/npm/docs/public/cli-commands/npm-view/index.html +2 -2
  407. package/node_modules/npm/docs/public/cli-commands/npm-whoami/index.html +2 -2
  408. package/node_modules/npm/docs/public/configuring-npm/folders/index.html +2 -2
  409. package/node_modules/npm/docs/public/configuring-npm/install/index.html +2 -2
  410. package/node_modules/npm/docs/public/configuring-npm/npmrc/index.html +2 -2
  411. package/node_modules/npm/docs/public/configuring-npm/package-json/index.html +2 -2
  412. package/node_modules/npm/docs/public/configuring-npm/package-lock-json/index.html +2 -2
  413. package/node_modules/npm/docs/public/configuring-npm/package-locks/index.html +2 -2
  414. package/node_modules/npm/docs/public/configuring-npm/shrinkwrap-json/index.html +2 -2
  415. package/node_modules/npm/docs/public/index.html +1 -1
  416. package/node_modules/npm/docs/public/using-npm/config/index.html +2 -2
  417. package/node_modules/npm/docs/public/using-npm/developers/index.html +2 -2
  418. package/node_modules/npm/docs/public/using-npm/disputes/index.html +2 -2
  419. package/node_modules/npm/docs/public/using-npm/orgs/index.html +2 -2
  420. package/node_modules/npm/docs/public/using-npm/registry/index.html +2 -2
  421. package/node_modules/npm/docs/public/using-npm/removal/index.html +2 -2
  422. package/node_modules/npm/docs/public/using-npm/scope/index.html +2 -2
  423. package/node_modules/npm/docs/public/using-npm/scripts/index.html +2 -2
  424. package/node_modules/npm/docs/public/using-npm/semver/index.html +2 -2
  425. package/node_modules/npm/lib/auth/legacy.js +1 -1
  426. package/node_modules/npm/lib/profile.js +2 -2
  427. package/node_modules/npm/man/man1/npm-README.1 +1 -1
  428. package/node_modules/npm/man/man1/npm-access.1 +1 -1
  429. package/node_modules/npm/man/man1/npm-adduser.1 +1 -1
  430. package/node_modules/npm/man/man1/npm-audit.1 +1 -1
  431. package/node_modules/npm/man/man1/npm-bin.1 +1 -1
  432. package/node_modules/npm/man/man1/npm-bugs.1 +1 -1
  433. package/node_modules/npm/man/man1/npm-build.1 +1 -1
  434. package/node_modules/npm/man/man1/npm-bundle.1 +1 -1
  435. package/node_modules/npm/man/man1/npm-cache.1 +1 -1
  436. package/node_modules/npm/man/man1/npm-ci.1 +1 -1
  437. package/node_modules/npm/man/man1/npm-completion.1 +1 -1
  438. package/node_modules/npm/man/man1/npm-config.1 +1 -1
  439. package/node_modules/npm/man/man1/npm-dedupe.1 +1 -1
  440. package/node_modules/npm/man/man1/npm-deprecate.1 +1 -1
  441. package/node_modules/npm/man/man1/npm-dist-tag.1 +1 -1
  442. package/node_modules/npm/man/man1/npm-docs.1 +1 -1
  443. package/node_modules/npm/man/man1/npm-doctor.1 +1 -1
  444. package/node_modules/npm/man/man1/npm-edit.1 +1 -1
  445. package/node_modules/npm/man/man1/npm-explore.1 +1 -1
  446. package/node_modules/npm/man/man1/npm-fund.1 +1 -1
  447. package/node_modules/npm/man/man1/npm-help-search.1 +1 -1
  448. package/node_modules/npm/man/man1/npm-help.1 +1 -1
  449. package/node_modules/npm/man/man1/npm-hook.1 +1 -1
  450. package/node_modules/npm/man/man1/npm-init.1 +1 -1
  451. package/node_modules/npm/man/man1/npm-install-ci-test.1 +1 -1
  452. package/node_modules/npm/man/man1/npm-install-test.1 +1 -1
  453. package/node_modules/npm/man/man1/npm-install.1 +1 -1
  454. package/node_modules/npm/man/man1/npm-link.1 +1 -1
  455. package/node_modules/npm/man/man1/npm-logout.1 +1 -1
  456. package/node_modules/npm/man/man1/npm-ls.1 +2 -2
  457. package/node_modules/npm/man/man1/npm-org.1 +1 -1
  458. package/node_modules/npm/man/man1/npm-outdated.1 +1 -1
  459. package/node_modules/npm/man/man1/npm-owner.1 +1 -1
  460. package/node_modules/npm/man/man1/npm-pack.1 +1 -1
  461. package/node_modules/npm/man/man1/npm-ping.1 +1 -1
  462. package/node_modules/npm/man/man1/npm-prefix.1 +1 -1
  463. package/node_modules/npm/man/man1/npm-profile.1 +1 -1
  464. package/node_modules/npm/man/man1/npm-prune.1 +1 -1
  465. package/node_modules/npm/man/man1/npm-publish.1 +1 -1
  466. package/node_modules/npm/man/man1/npm-rebuild.1 +1 -1
  467. package/node_modules/npm/man/man1/npm-repo.1 +1 -1
  468. package/node_modules/npm/man/man1/npm-restart.1 +1 -1
  469. package/node_modules/npm/man/man1/npm-root.1 +1 -1
  470. package/node_modules/npm/man/man1/npm-run-script.1 +1 -1
  471. package/node_modules/npm/man/man1/npm-search.1 +1 -1
  472. package/node_modules/npm/man/man1/npm-shrinkwrap.1 +1 -1
  473. package/node_modules/npm/man/man1/npm-star.1 +1 -1
  474. package/node_modules/npm/man/man1/npm-stars.1 +1 -1
  475. package/node_modules/npm/man/man1/npm-start.1 +1 -1
  476. package/node_modules/npm/man/man1/npm-stop.1 +1 -1
  477. package/node_modules/npm/man/man1/npm-team.1 +1 -1
  478. package/node_modules/npm/man/man1/npm-test.1 +1 -1
  479. package/node_modules/npm/man/man1/npm-token.1 +1 -1
  480. package/node_modules/npm/man/man1/npm-uninstall.1 +1 -1
  481. package/node_modules/npm/man/man1/npm-unpublish.1 +1 -1
  482. package/node_modules/npm/man/man1/npm-update.1 +1 -1
  483. package/node_modules/npm/man/man1/npm-version.1 +1 -1
  484. package/node_modules/npm/man/man1/npm-view.1 +1 -1
  485. package/node_modules/npm/man/man1/npm-whoami.1 +1 -1
  486. package/node_modules/npm/man/man1/npm.1 +2 -2
  487. package/node_modules/npm/man/man5/folders.5 +1 -1
  488. package/node_modules/npm/man/man5/install.5 +1 -1
  489. package/node_modules/npm/man/man5/npmrc.5 +1 -1
  490. package/node_modules/npm/man/man5/package-json.5 +1 -1
  491. package/node_modules/npm/man/man5/package-lock-json.5 +1 -1
  492. package/node_modules/npm/man/man5/package-locks.5 +1 -1
  493. package/node_modules/npm/man/man5/shrinkwrap-json.5 +1 -1
  494. package/node_modules/npm/man/man7/config.7 +1 -1
  495. package/node_modules/npm/man/man7/developers.7 +1 -1
  496. package/node_modules/npm/man/man7/disputes.7 +1 -1
  497. package/node_modules/npm/man/man7/orgs.7 +1 -1
  498. package/node_modules/npm/man/man7/registry.7 +1 -1
  499. package/node_modules/npm/man/man7/removal.7 +1 -1
  500. package/node_modules/npm/man/man7/scope.7 +1 -1
  501. package/node_modules/npm/man/man7/scripts.7 +1 -1
  502. package/node_modules/npm/man/man7/semver.7 +1 -1
  503. package/node_modules/npm/node_modules/JSONStream/package.json +24 -60
  504. package/node_modules/npm/node_modules/abbrev/package.json +13 -53
  505. package/node_modules/npm/node_modules/agent-base/package.json +22 -53
  506. package/node_modules/npm/node_modules/agentkeepalive/package.json +31 -61
  507. package/node_modules/npm/node_modules/ansi-align/package.json +25 -52
  508. package/node_modules/npm/node_modules/ansi-regex/package.json +17 -62
  509. package/node_modules/npm/node_modules/ansi-styles/package.json +54 -86
  510. package/node_modules/npm/node_modules/ansicolors/package.json +12 -47
  511. package/node_modules/npm/node_modules/ansistyles/package.json +12 -47
  512. package/node_modules/npm/node_modules/aproba/package.json +18 -48
  513. package/node_modules/npm/node_modules/archy/package.json +38 -84
  514. package/node_modules/npm/node_modules/archy/{README.markdown → readme.markdown} +0 -0
  515. package/node_modules/npm/node_modules/are-we-there-yet/CHANGES.md~ +27 -0
  516. package/node_modules/npm/node_modules/are-we-there-yet/node_modules/readable-stream/CONTRIBUTING.md +38 -0
  517. package/node_modules/npm/node_modules/are-we-there-yet/node_modules/readable-stream/package.json +22 -51
  518. package/node_modules/npm/node_modules/are-we-there-yet/node_modules/string_decoder/package.json +13 -41
  519. package/node_modules/npm/node_modules/are-we-there-yet/package.json +17 -45
  520. package/node_modules/npm/node_modules/asap/package.json +32 -62
  521. package/node_modules/npm/node_modules/asn1/package.json +19 -63
  522. package/node_modules/npm/node_modules/assert-plus/package.json +14 -73
  523. package/node_modules/npm/node_modules/asynckit/package.json +40 -68
  524. package/node_modules/npm/node_modules/aws-sign2/package.json +10 -43
  525. package/node_modules/npm/node_modules/aws4/package.json +11 -47
  526. package/node_modules/npm/node_modules/balanced-match/package.json +17 -45
  527. package/node_modules/npm/node_modules/bcrypt-pbkdf/CONTRIBUTING.md +13 -0
  528. package/node_modules/npm/node_modules/bcrypt-pbkdf/package.json +8 -37
  529. package/node_modules/npm/node_modules/bin-links/package.json +25 -55
  530. package/node_modules/npm/node_modules/bluebird/package.json +39 -70
  531. package/node_modules/npm/node_modules/boxen/package.json +21 -53
  532. package/node_modules/npm/node_modules/brace-expansion/package.json +18 -46
  533. package/node_modules/npm/node_modules/buffer-from/package.json +7 -41
  534. package/node_modules/npm/node_modules/builtins/package.json +4 -36
  535. package/node_modules/npm/node_modules/byline/package.json +14 -41
  536. package/node_modules/npm/node_modules/byte-size/package.json +17 -53
  537. package/node_modules/npm/node_modules/cacache/package.json +53 -85
  538. package/node_modules/npm/node_modules/call-limit/package.json +22 -51
  539. package/node_modules/npm/node_modules/camelcase/package.json +11 -44
  540. package/node_modules/npm/node_modules/capture-stack-trace/package.json +12 -44
  541. package/node_modules/npm/node_modules/caseless/package.json +16 -45
  542. package/node_modules/npm/node_modules/chalk/package.json +69 -105
  543. package/node_modules/npm/node_modules/chownr/package.json +16 -54
  544. package/node_modules/npm/node_modules/ci-info/package.json +19 -49
  545. package/node_modules/npm/node_modules/cidr-regex/package.json +17 -56
  546. package/node_modules/npm/node_modules/cli-boxes/package.json +12 -44
  547. package/node_modules/npm/node_modules/cli-columns/package.json +23 -61
  548. package/node_modules/npm/node_modules/cli-table3/package.json +53 -83
  549. package/node_modules/npm/node_modules/cliui/node_modules/ansi-regex/package.json +51 -83
  550. package/node_modules/npm/node_modules/cliui/node_modules/is-fullwidth-code-point/package.json +11 -43
  551. package/node_modules/npm/node_modules/cliui/node_modules/string-width/package.json +54 -86
  552. package/node_modules/npm/node_modules/cliui/node_modules/strip-ansi/package.json +52 -85
  553. package/node_modules/npm/node_modules/cliui/package.json +34 -68
  554. package/node_modules/npm/node_modules/clone/package.json +35 -121
  555. package/node_modules/npm/node_modules/cmd-shim/lib/to-batch-syntax.js +51 -51
  556. package/node_modules/npm/node_modules/cmd-shim/package.json +14 -45
  557. package/node_modules/npm/node_modules/code-point-at/package.json +12 -48
  558. package/node_modules/npm/node_modules/color-convert/package.json +21 -56
  559. package/node_modules/npm/node_modules/color-name/package.json +13 -41
  560. package/node_modules/npm/node_modules/colors/package.json +41 -70
  561. package/node_modules/npm/node_modules/columnify/package.json +23 -53
  562. package/node_modules/npm/node_modules/combined-stream/package.json +14 -47
  563. package/node_modules/npm/node_modules/concat-map/package.json +40 -85
  564. package/node_modules/npm/node_modules/concat-stream/node_modules/readable-stream/CONTRIBUTING.md +38 -0
  565. package/node_modules/npm/node_modules/concat-stream/node_modules/readable-stream/package.json +22 -51
  566. package/node_modules/npm/node_modules/concat-stream/node_modules/string_decoder/package.json +13 -41
  567. package/node_modules/npm/node_modules/concat-stream/package.json +24 -58
  568. package/node_modules/npm/node_modules/config-chain/package.json +17 -50
  569. package/node_modules/npm/node_modules/configstore/package.json +19 -51
  570. package/node_modules/npm/node_modules/console-control-strings/README.md~ +140 -0
  571. package/node_modules/npm/node_modules/console-control-strings/package.json +17 -52
  572. package/node_modules/npm/node_modules/copy-concurrently/README.md~ +127 -0
  573. package/node_modules/npm/node_modules/copy-concurrently/node_modules/aproba/package.json +17 -45
  574. package/node_modules/npm/node_modules/copy-concurrently/node_modules/iferr/package.json +18 -45
  575. package/node_modules/npm/node_modules/copy-concurrently/package.json +17 -46
  576. package/node_modules/npm/node_modules/core-util-is/package.json +12 -44
  577. package/node_modules/npm/node_modules/create-error-class/package.json +16 -46
  578. package/node_modules/npm/node_modules/cross-spawn/node_modules/lru-cache/package.json +23 -58
  579. package/node_modules/npm/node_modules/cross-spawn/node_modules/yallist/package.json +15 -48
  580. package/node_modules/npm/node_modules/cross-spawn/package.json +25 -56
  581. package/node_modules/npm/node_modules/crypto-random-string/package.json +11 -43
  582. package/node_modules/npm/node_modules/cyclist/package.json +5 -40
  583. package/node_modules/npm/node_modules/dashdash/package.json +23 -64
  584. package/node_modules/npm/node_modules/debug/.eslintrc +14 -0
  585. package/node_modules/npm/node_modules/debug/node_modules/ms/package.json +19 -51
  586. package/node_modules/npm/node_modules/debug/package.json +15 -57
  587. package/node_modules/npm/node_modules/debuglog/package.json +11 -46
  588. package/node_modules/npm/node_modules/decamelize/package.json +12 -45
  589. package/node_modules/npm/node_modules/decode-uri-component/package.json +15 -47
  590. package/node_modules/npm/node_modules/deep-extend/package.json +33 -63
  591. package/node_modules/npm/node_modules/defaults/package.json +16 -47
  592. package/node_modules/npm/node_modules/define-properties/.eslintrc +12 -0
  593. package/node_modules/npm/node_modules/define-properties/package.json +1 -5
  594. package/node_modules/npm/node_modules/delayed-stream/package.json +14 -49
  595. package/node_modules/npm/node_modules/delegates/package.json +6 -41
  596. package/node_modules/npm/node_modules/detect-indent/package.json +11 -46
  597. package/node_modules/npm/node_modules/detect-newline/package.json +12 -47
  598. package/node_modules/npm/node_modules/dezalgo/package.json +16 -50
  599. package/node_modules/npm/node_modules/dot-prop/package.json +15 -47
  600. package/node_modules/npm/node_modules/dotenv/package.json +27 -57
  601. package/node_modules/npm/node_modules/duplexer3/package.json +11 -47
  602. package/node_modules/npm/node_modules/duplexify/node_modules/readable-stream/CONTRIBUTING.md +38 -0
  603. package/node_modules/npm/node_modules/duplexify/node_modules/readable-stream/package.json +22 -51
  604. package/node_modules/npm/node_modules/duplexify/node_modules/string_decoder/package.json +13 -41
  605. package/node_modules/npm/node_modules/duplexify/package.json +15 -46
  606. package/node_modules/npm/node_modules/ecc-jsbn/package.json +19 -44
  607. package/node_modules/npm/node_modules/editor/package.json +32 -65
  608. package/node_modules/npm/node_modules/emoji-regex/package.json +28 -59
  609. package/node_modules/npm/node_modules/encoding/package.json +10 -45
  610. package/node_modules/npm/node_modules/end-of-stream/package.json +15 -53
  611. package/node_modules/npm/node_modules/env-paths/package.json +43 -75
  612. package/node_modules/npm/node_modules/err-code/package.json +19 -49
  613. package/node_modules/npm/node_modules/errno/.jshintrc +59 -0
  614. package/node_modules/npm/node_modules/errno/package.json +15 -44
  615. package/node_modules/npm/node_modules/es-abstract/.eslintrc +23 -0
  616. package/node_modules/npm/node_modules/es-abstract/package.json +1 -5
  617. package/node_modules/npm/node_modules/es-abstract/test/.eslintrc +11 -0
  618. package/node_modules/npm/node_modules/es-to-primitive/.eslintrc +14 -0
  619. package/node_modules/npm/node_modules/es-to-primitive/package.json +1 -5
  620. package/node_modules/npm/node_modules/es-to-primitive/test/.eslintrc +9 -0
  621. package/node_modules/npm/node_modules/es6-promise/package.json +5 -33
  622. package/node_modules/npm/node_modules/es6-promisify/package.json +24 -55
  623. package/node_modules/npm/node_modules/escape-string-regexp/package.json +16 -59
  624. package/node_modules/npm/node_modules/execa/node_modules/get-stream/package.json +12 -44
  625. package/node_modules/npm/node_modules/execa/package.json +35 -68
  626. package/node_modules/npm/node_modules/extend/.eslintrc +17 -0
  627. package/node_modules/npm/node_modules/extend/package.json +40 -76
  628. package/node_modules/npm/node_modules/extsprintf/package.json +12 -42
  629. package/node_modules/npm/node_modules/fast-json-stable-stringify/package.json +18 -46
  630. package/node_modules/npm/node_modules/figgy-pudding/package.json +20 -62
  631. package/node_modules/npm/node_modules/find-npm-prefix/package.json +13 -46
  632. package/node_modules/npm/node_modules/find-npm-prefix/test/find-prefix.js~ +79 -0
  633. package/node_modules/npm/node_modules/flush-write-stream/node_modules/readable-stream/CONTRIBUTING.md +38 -0
  634. package/node_modules/npm/node_modules/flush-write-stream/node_modules/readable-stream/package.json +22 -51
  635. package/node_modules/npm/node_modules/flush-write-stream/node_modules/string_decoder/package.json +13 -41
  636. package/node_modules/npm/node_modules/flush-write-stream/package.json +13 -44
  637. package/node_modules/npm/node_modules/forever-agent/package.json +10 -43
  638. package/node_modules/npm/node_modules/form-data/package.json +35 -68
  639. package/node_modules/npm/node_modules/from2/node_modules/readable-stream/CONTRIBUTING.md +38 -0
  640. package/node_modules/npm/node_modules/from2/node_modules/readable-stream/package.json +22 -51
  641. package/node_modules/npm/node_modules/from2/node_modules/string_decoder/package.json +13 -41
  642. package/node_modules/npm/node_modules/from2/package.json +19 -54
  643. package/node_modules/npm/node_modules/fs-minipass/node_modules/minipass/package.json +19 -52
  644. package/node_modules/npm/node_modules/fs-minipass/package.json +17 -49
  645. package/node_modules/npm/node_modules/fs-vacuum/package.json +24 -56
  646. package/node_modules/npm/node_modules/fs-write-stream-atomic/node_modules/iferr/package.json +18 -45
  647. package/node_modules/npm/node_modules/fs-write-stream-atomic/node_modules/readable-stream/CONTRIBUTING.md +38 -0
  648. package/node_modules/npm/node_modules/fs-write-stream-atomic/node_modules/readable-stream/package.json +22 -51
  649. package/node_modules/npm/node_modules/fs-write-stream-atomic/node_modules/string_decoder/package.json +13 -41
  650. package/node_modules/npm/node_modules/fs-write-stream-atomic/package.json +14 -48
  651. package/node_modules/npm/node_modules/fs.realpath/package.json +16 -49
  652. package/node_modules/npm/node_modules/function-bind/.eslintrc +15 -0
  653. package/node_modules/npm/node_modules/function-bind/package.json +1 -5
  654. package/node_modules/npm/node_modules/function-bind/test/.eslintrc +9 -0
  655. package/node_modules/npm/node_modules/gauge/node_modules/aproba/package.json +17 -45
  656. package/node_modules/npm/node_modules/gauge/node_modules/string-width/package.json +16 -48
  657. package/node_modules/npm/node_modules/gauge/package.json +18 -49
  658. package/node_modules/npm/node_modules/genfun/package.json +20 -50
  659. package/node_modules/npm/node_modules/gentle-fs/node_modules/aproba/package.json +17 -45
  660. package/node_modules/npm/node_modules/gentle-fs/node_modules/iferr/package.json +18 -45
  661. package/node_modules/npm/node_modules/gentle-fs/package.json +22 -51
  662. package/node_modules/npm/node_modules/get-caller-file/package.json +22 -49
  663. package/node_modules/npm/node_modules/get-stream/package.json +44 -84
  664. package/node_modules/npm/node_modules/getpass/package.json +7 -39
  665. package/node_modules/npm/node_modules/glob/package.json +22 -68
  666. package/node_modules/npm/node_modules/global-dirs/package.json +15 -47
  667. package/node_modules/npm/node_modules/got/node_modules/get-stream/package.json +12 -44
  668. package/node_modules/npm/node_modules/got/package.json +42 -74
  669. package/node_modules/npm/node_modules/graceful-fs/package.json +25 -77
  670. package/node_modules/npm/node_modules/har-schema/package.json +34 -66
  671. package/node_modules/npm/node_modules/har-validator/node_modules/ajv/package.json +62 -89
  672. package/node_modules/npm/node_modules/har-validator/node_modules/fast-deep-equal/package.json +32 -59
  673. package/node_modules/npm/node_modules/har-validator/node_modules/json-schema-traverse/package.json +20 -47
  674. package/node_modules/npm/node_modules/har-validator/package.json +24 -58
  675. package/node_modules/npm/node_modules/has/package.json +1 -5
  676. package/node_modules/npm/node_modules/has-flag/package.json +12 -44
  677. package/node_modules/npm/node_modules/has-symbols/.eslintrc +10 -0
  678. package/node_modules/npm/node_modules/has-symbols/package.json +1 -4
  679. package/node_modules/npm/node_modules/has-unicode/package.json +20 -52
  680. package/node_modules/npm/node_modules/hosted-git-info/package.json +23 -55
  681. package/node_modules/npm/node_modules/http-cache-semantics/package.json +13 -51
  682. package/node_modules/npm/node_modules/http-proxy-agent/package.json +18 -50
  683. package/node_modules/npm/node_modules/http-signature/package.json +25 -63
  684. package/node_modules/npm/node_modules/https-proxy-agent/package.json +19 -49
  685. package/node_modules/npm/node_modules/humanize-ms/package.json +17 -46
  686. package/node_modules/npm/node_modules/iconv-lite/package.json +43 -74
  687. package/node_modules/npm/node_modules/iferr/package.json +20 -48
  688. package/node_modules/npm/node_modules/ignore-walk/package.json +16 -49
  689. package/node_modules/npm/node_modules/import-lazy/package.json +12 -44
  690. package/node_modules/npm/node_modules/imurmurhash/package.json +22 -52
  691. package/node_modules/npm/node_modules/infer-owner/package.json +15 -52
  692. package/node_modules/npm/node_modules/inflight/package.json +15 -48
  693. package/node_modules/npm/node_modules/inherits/package.json +12 -70
  694. package/node_modules/npm/node_modules/ini/package.json +19 -58
  695. package/node_modules/npm/node_modules/init-package-json/package.json +18 -54
  696. package/node_modules/npm/node_modules/ip/.jshintrc +89 -0
  697. package/node_modules/npm/node_modules/ip/package.json +11 -45
  698. package/node_modules/npm/node_modules/ip-regex/package.json +11 -43
  699. package/node_modules/npm/node_modules/is-callable/.eslintrc +11 -0
  700. package/node_modules/npm/node_modules/is-callable/package.json +1 -5
  701. package/node_modules/npm/node_modules/is-ci/node_modules/ci-info/package.json +19 -48
  702. package/node_modules/npm/node_modules/is-ci/package.json +20 -51
  703. package/node_modules/npm/node_modules/is-cidr/package.json +17 -57
  704. package/node_modules/npm/node_modules/is-date-object/.eslintrc +9 -0
  705. package/node_modules/npm/node_modules/is-date-object/package.json +1 -4
  706. package/node_modules/npm/node_modules/is-fullwidth-code-point/package.json +14 -47
  707. package/node_modules/npm/node_modules/is-installed-globally/package.json +16 -48
  708. package/node_modules/npm/node_modules/is-npm/package.json +11 -43
  709. package/node_modules/npm/node_modules/is-obj/package.json +12 -44
  710. package/node_modules/npm/node_modules/is-path-inside/package.json +14 -47
  711. package/node_modules/npm/node_modules/is-redirect/package.json +11 -43
  712. package/node_modules/npm/node_modules/is-regex/.eslintrc +9 -0
  713. package/node_modules/npm/node_modules/is-regex/package.json +1 -4
  714. package/node_modules/npm/node_modules/is-retry-allowed/package.json +16 -46
  715. package/node_modules/npm/node_modules/is-stream/package.json +13 -47
  716. package/node_modules/npm/node_modules/is-symbol/.eslintrc +9 -0
  717. package/node_modules/npm/node_modules/is-symbol/package.json +1 -5
  718. package/node_modules/npm/node_modules/is-symbol/test/.eslintrc +7 -0
  719. package/node_modules/npm/node_modules/is-typedarray/package.json +15 -44
  720. package/node_modules/npm/node_modules/isarray/package.json +16 -45
  721. package/node_modules/npm/node_modules/isexe/package.json +16 -46
  722. package/node_modules/npm/node_modules/isstream/.jshintrc +59 -0
  723. package/node_modules/npm/node_modules/isstream/package.json +20 -48
  724. package/node_modules/npm/node_modules/jsbn/package.json +11 -43
  725. package/node_modules/npm/node_modules/json-parse-better-errors/package.json +29 -66
  726. package/node_modules/npm/node_modules/json-schema/LICENSE +195 -0
  727. package/node_modules/npm/node_modules/json-schema/README.md +2 -4
  728. package/node_modules/npm/node_modules/json-schema/lib/links.js +1 -2
  729. package/node_modules/npm/node_modules/json-schema/lib/validate.js +7 -9
  730. package/node_modules/npm/node_modules/json-schema/package.json +24 -71
  731. package/node_modules/npm/node_modules/json-stringify-safe/package.json +15 -50
  732. package/node_modules/npm/node_modules/jsonparse/package.json +13 -49
  733. package/node_modules/npm/node_modules/jsprim/CHANGES.md +4 -0
  734. package/node_modules/npm/node_modules/jsprim/CONTRIBUTING.md +19 -0
  735. package/node_modules/npm/node_modules/jsprim/package.json +18 -47
  736. package/node_modules/npm/node_modules/latest-version/package.json +15 -47
  737. package/node_modules/npm/node_modules/lazy-property/package.json +18 -48
  738. package/node_modules/npm/node_modules/libcipm/package.json +31 -63
  739. package/node_modules/npm/node_modules/libnpm/package.json +25 -61
  740. package/node_modules/npm/node_modules/libnpmaccess/CODE_OF_CONDUCT.md +151 -0
  741. package/node_modules/npm/node_modules/libnpmaccess/CONTRIBUTING.md +256 -0
  742. package/node_modules/npm/node_modules/libnpmaccess/package.json +23 -50
  743. package/node_modules/npm/node_modules/libnpmconfig/CODE_OF_CONDUCT.md +151 -0
  744. package/node_modules/npm/node_modules/libnpmconfig/CONTRIBUTING.md +256 -0
  745. package/node_modules/npm/node_modules/libnpmconfig/node_modules/find-up/package.json +48 -80
  746. package/node_modules/npm/node_modules/libnpmconfig/node_modules/locate-path/package.json +42 -74
  747. package/node_modules/npm/node_modules/libnpmconfig/node_modules/p-limit/package.json +49 -81
  748. package/node_modules/npm/node_modules/libnpmconfig/node_modules/p-locate/package.json +49 -81
  749. package/node_modules/npm/node_modules/libnpmconfig/node_modules/p-try/package.json +40 -72
  750. package/node_modules/npm/node_modules/libnpmconfig/package.json +25 -53
  751. package/node_modules/npm/node_modules/libnpmhook/package.json +25 -61
  752. package/node_modules/npm/node_modules/libnpmorg/CODE_OF_CONDUCT.md +151 -0
  753. package/node_modules/npm/node_modules/libnpmorg/CONTRIBUTING.md +256 -0
  754. package/node_modules/npm/node_modules/libnpmorg/package.json +27 -54
  755. package/node_modules/npm/node_modules/libnpmpublish/CODE_OF_CONDUCT.md +151 -0
  756. package/node_modules/npm/node_modules/libnpmpublish/CONTRIBUTING.md +256 -0
  757. package/node_modules/npm/node_modules/libnpmpublish/package.json +28 -54
  758. package/node_modules/npm/node_modules/libnpmsearch/CODE_OF_CONDUCT.md +151 -0
  759. package/node_modules/npm/node_modules/libnpmsearch/CONTRIBUTING.md +256 -0
  760. package/node_modules/npm/node_modules/libnpmsearch/package.json +26 -53
  761. package/node_modules/npm/node_modules/libnpmteam/CODE_OF_CONDUCT.md +151 -0
  762. package/node_modules/npm/node_modules/libnpmteam/CONTRIBUTING.md +256 -0
  763. package/node_modules/npm/node_modules/libnpmteam/package.json +22 -50
  764. package/node_modules/npm/node_modules/libnpx/package.json +39 -73
  765. package/node_modules/npm/node_modules/lock-verify/package.json +15 -47
  766. package/node_modules/npm/node_modules/lockfile/package.json +15 -51
  767. package/node_modules/npm/node_modules/lodash._baseindexof/package.json +12 -72
  768. package/node_modules/npm/node_modules/lodash._baseuniq/package.json +13 -65
  769. package/node_modules/npm/node_modules/lodash._bindcallback/package.json +12 -72
  770. package/node_modules/npm/node_modules/lodash._cacheindexof/package.json +12 -72
  771. package/node_modules/npm/node_modules/lodash._createcache/package.json +15 -75
  772. package/node_modules/npm/node_modules/lodash._createset/package.json +10 -59
  773. package/node_modules/npm/node_modules/lodash._getnative/package.json +12 -73
  774. package/node_modules/npm/node_modules/lodash._root/package.json +10 -59
  775. package/node_modules/npm/node_modules/lodash.clonedeep/package.json +11 -66
  776. package/node_modules/npm/node_modules/lodash.restparam/package.json +13 -78
  777. package/node_modules/npm/node_modules/lodash.union/package.json +11 -66
  778. package/node_modules/npm/node_modules/lodash.uniq/package.json +11 -66
  779. package/node_modules/npm/node_modules/lodash.without/package.json +11 -66
  780. package/node_modules/npm/node_modules/lowercase-keys/package.json +11 -43
  781. package/node_modules/npm/node_modules/lru-cache/package.json +20 -56
  782. package/node_modules/npm/node_modules/make-dir/package.json +52 -84
  783. package/node_modules/npm/node_modules/make-fetch-happen/package.json +29 -63
  784. package/node_modules/npm/node_modules/meant/package.json +15 -43
  785. package/node_modules/npm/node_modules/mime-db/package.json +20 -63
  786. package/node_modules/npm/node_modules/mime-types/package.json +15 -64
  787. package/node_modules/npm/node_modules/minimatch/package.json +17 -56
  788. package/node_modules/npm/node_modules/minimist/package.json +22 -50
  789. package/node_modules/npm/node_modules/minizlib/node_modules/minipass/package.json +19 -52
  790. package/node_modules/npm/node_modules/minizlib/package.json +20 -56
  791. package/node_modules/npm/node_modules/mississippi/package.json +14 -48
  792. package/node_modules/npm/node_modules/mkdirp/node_modules/minimist/package.json +22 -50
  793. package/node_modules/npm/node_modules/mkdirp/package.json +18 -67
  794. package/node_modules/npm/node_modules/mkdirp/{README.markdown → readme.markdown} +0 -0
  795. package/node_modules/npm/node_modules/move-concurrently/README.md~ +52 -0
  796. package/node_modules/npm/node_modules/move-concurrently/node_modules/aproba/package.json +17 -45
  797. package/node_modules/npm/node_modules/move-concurrently/package.json +17 -52
  798. package/node_modules/npm/node_modules/ms/package.json +19 -51
  799. package/node_modules/npm/node_modules/mute-stream/.nyc_output/33508.json +1 -0
  800. package/node_modules/npm/node_modules/mute-stream/.nyc_output/33510.json +1 -0
  801. package/node_modules/npm/node_modules/mute-stream/package.json +13 -47
  802. package/node_modules/npm/node_modules/node-fetch-npm/package.json +40 -67
  803. package/node_modules/npm/node_modules/node-gyp/CONTRIBUTING.md +34 -0
  804. package/node_modules/npm/node_modules/node-gyp/package.json +24 -61
  805. package/node_modules/npm/node_modules/nopt/package.json +16 -53
  806. package/node_modules/npm/node_modules/normalize-package-data/node_modules/resolve/.eslintrc +31 -0
  807. package/node_modules/npm/node_modules/normalize-package-data/node_modules/resolve/package.json +27 -56
  808. package/node_modules/{resolve → npm/node_modules/normalize-package-data/node_modules/resolve}/test/.eslintrc +0 -0
  809. package/node_modules/npm/node_modules/normalize-package-data/package.json +12 -65
  810. package/node_modules/npm/node_modules/npm-audit-report/package.json +25 -53
  811. package/node_modules/npm/node_modules/npm-bundled/package.json +18 -51
  812. package/node_modules/npm/node_modules/npm-cache-filename/package.json +13 -45
  813. package/node_modules/npm/node_modules/npm-install-checks/package.json +17 -46
  814. package/node_modules/npm/node_modules/npm-lifecycle/package.json +24 -54
  815. package/node_modules/npm/node_modules/npm-logical-tree/package.json +32 -62
  816. package/node_modules/npm/node_modules/npm-normalize-package-bin/package.json +11 -47
  817. package/node_modules/npm/node_modules/npm-package-arg/package.json +19 -59
  818. package/node_modules/npm/node_modules/npm-packlist/package.json +23 -54
  819. package/node_modules/npm/node_modules/npm-pick-manifest/package.json +31 -64
  820. package/node_modules/npm/node_modules/npm-profile/package.json +16 -47
  821. package/node_modules/npm/node_modules/npm-registry-fetch/node_modules/safe-buffer/package.json +18 -43
  822. package/node_modules/npm/node_modules/npm-registry-fetch/package.json +35 -76
  823. package/node_modules/npm/node_modules/npm-run-path/package.json +13 -45
  824. package/node_modules/npm/node_modules/npm-user-validate/package.json +15 -48
  825. package/node_modules/npm/node_modules/npmlog/package.json +13 -51
  826. package/node_modules/npm/node_modules/number-is-nan/package.json +11 -47
  827. package/node_modules/npm/node_modules/oauth-sign/package.json +12 -45
  828. package/node_modules/npm/node_modules/object-assign/package.json +15 -52
  829. package/node_modules/npm/node_modules/object-keys/.eslintrc +17 -0
  830. package/node_modules/npm/node_modules/object-keys/package.json +1 -5
  831. package/node_modules/npm/node_modules/object.getownpropertydescriptors/.eslintrc +10 -0
  832. package/node_modules/npm/node_modules/object.getownpropertydescriptors/package.json +75 -105
  833. package/node_modules/npm/node_modules/object.getownpropertydescriptors/test/.eslintrc +8 -0
  834. package/node_modules/npm/node_modules/once/package.json +14 -61
  835. package/node_modules/npm/node_modules/opener/package.json +17 -57
  836. package/node_modules/npm/node_modules/os-homedir/package.json +13 -46
  837. package/node_modules/npm/node_modules/os-tmpdir/package.json +12 -45
  838. package/node_modules/npm/node_modules/osenv/package.json +16 -59
  839. package/node_modules/npm/node_modules/p-finally/package.json +11 -43
  840. package/node_modules/npm/node_modules/package-json/package.json +18 -50
  841. package/node_modules/npm/node_modules/pacote/node_modules/minipass/package.json +19 -52
  842. package/node_modules/npm/node_modules/pacote/package.json +30 -66
  843. package/node_modules/npm/node_modules/parallel-transform/node_modules/readable-stream/CONTRIBUTING.md +38 -0
  844. package/node_modules/npm/node_modules/parallel-transform/node_modules/readable-stream/package.json +22 -51
  845. package/node_modules/npm/node_modules/parallel-transform/node_modules/string_decoder/package.json +13 -41
  846. package/node_modules/npm/node_modules/parallel-transform/package.json +10 -48
  847. package/node_modules/npm/node_modules/path-exists/package.json +11 -43
  848. package/node_modules/npm/node_modules/path-is-absolute/package.json +11 -43
  849. package/node_modules/npm/node_modules/path-is-inside/package.json +18 -67
  850. package/node_modules/npm/node_modules/path-key/package.json +11 -43
  851. package/node_modules/npm/node_modules/path-parse/package.json +13 -42
  852. package/node_modules/npm/node_modules/performance-now/package.json +16 -46
  853. package/node_modules/npm/node_modules/pify/package.json +15 -48
  854. package/node_modules/npm/node_modules/prepend-http/package.json +12 -44
  855. package/node_modules/npm/node_modules/process-nextick-args/package.json +15 -40
  856. package/node_modules/npm/node_modules/promise-inflight/package.json +12 -48
  857. package/node_modules/npm/node_modules/promise-retry/.jshintrc +64 -0
  858. package/node_modules/npm/node_modules/promise-retry/node_modules/retry/package.json +14 -46
  859. package/node_modules/npm/node_modules/promise-retry/package.json +20 -53
  860. package/node_modules/npm/node_modules/promzard/package.json +7 -40
  861. package/node_modules/npm/node_modules/proto-list/package.json +11 -44
  862. package/node_modules/npm/node_modules/protoduck/package.json +31 -59
  863. package/node_modules/npm/node_modules/prr/.jshintrc +61 -0
  864. package/node_modules/npm/node_modules/prr/package.json +9 -41
  865. package/node_modules/npm/node_modules/pseudomap/package.json +13 -42
  866. package/node_modules/npm/node_modules/psl/.eslintrc +11 -0
  867. package/node_modules/npm/node_modules/psl/package.json +21 -52
  868. package/node_modules/npm/node_modules/pump/package.json +10 -45
  869. package/node_modules/npm/node_modules/pumpify/node_modules/pump/package.json +10 -45
  870. package/node_modules/npm/node_modules/pumpify/package.json +15 -48
  871. package/node_modules/npm/node_modules/punycode/package.json +58 -86
  872. package/node_modules/npm/node_modules/qrcode-terminal/package.json +27 -68
  873. package/node_modules/npm/node_modules/qs/.eslintrc +19 -0
  874. package/node_modules/npm/node_modules/qs/package.json +49 -77
  875. package/node_modules/{request → npm}/node_modules/qs/test/.eslintrc +0 -0
  876. package/node_modules/npm/node_modules/query-string/package.json +47 -80
  877. package/node_modules/npm/node_modules/qw/README.md~ +27 -0
  878. package/node_modules/npm/node_modules/qw/package.json +13 -45
  879. package/node_modules/npm/node_modules/rc/package.json +18 -54
  880. package/node_modules/npm/node_modules/read/package.json +9 -47
  881. package/node_modules/npm/node_modules/read-cmd-shim/package.json +16 -47
  882. package/node_modules/npm/node_modules/read-installed/package.json +15 -52
  883. package/node_modules/npm/node_modules/read-package-json/package.json +18 -58
  884. package/node_modules/npm/node_modules/read-package-tree/package.json +23 -54
  885. package/node_modules/npm/node_modules/readable-stream/CONTRIBUTING.md +38 -0
  886. package/node_modules/npm/node_modules/readable-stream/package.json +27 -59
  887. package/node_modules/npm/node_modules/readdir-scoped-modules/package.json +17 -50
  888. package/node_modules/npm/node_modules/registry-auth-token/package.json +25 -53
  889. package/node_modules/npm/node_modules/registry-url/package.json +16 -48
  890. package/node_modules/npm/node_modules/request/package.json +30 -66
  891. package/node_modules/npm/node_modules/require-directory/.jshintrc +67 -0
  892. package/node_modules/npm/node_modules/require-directory/package.json +24 -53
  893. package/node_modules/npm/node_modules/require-main-filename/package.json +23 -51
  894. package/node_modules/npm/node_modules/resolve-from/package.json +32 -64
  895. package/node_modules/npm/node_modules/retry/{Readme.md → README.md} +0 -0
  896. package/node_modules/npm/node_modules/retry/package.json +17 -52
  897. package/node_modules/npm/node_modules/rimraf/package.json +17 -68
  898. package/node_modules/npm/node_modules/run-queue/node_modules/aproba/package.json +17 -45
  899. package/node_modules/npm/node_modules/run-queue/package.json +18 -48
  900. package/node_modules/npm/node_modules/safe-buffer/package.json +5 -49
  901. package/node_modules/npm/node_modules/safer-buffer/package.json +13 -39
  902. package/node_modules/npm/node_modules/semver/package.json +15 -68
  903. package/node_modules/npm/node_modules/semver-diff/package.json +13 -45
  904. package/node_modules/npm/node_modules/set-blocking/package.json +25 -54
  905. package/node_modules/npm/node_modules/sha/package.json +12 -42
  906. package/node_modules/npm/node_modules/shebang-command/package.json +13 -45
  907. package/node_modules/npm/node_modules/shebang-regex/package.json +11 -43
  908. package/node_modules/npm/node_modules/signal-exit/package.json +23 -57
  909. package/node_modules/npm/node_modules/slide/package.json +7 -51
  910. package/node_modules/npm/node_modules/smart-buffer/package.json +34 -60
  911. package/node_modules/npm/node_modules/socks/package.json +39 -67
  912. package/node_modules/npm/node_modules/socks-proxy-agent/node_modules/agent-base/package.json +20 -50
  913. package/node_modules/npm/node_modules/socks-proxy-agent/package.json +20 -52
  914. package/node_modules/npm/node_modules/sorted-object/package.json +13 -52
  915. package/node_modules/npm/node_modules/sorted-union-stream/node_modules/from2/package.json +19 -51
  916. package/node_modules/npm/node_modules/sorted-union-stream/node_modules/isarray/package.json +17 -49
  917. package/node_modules/npm/node_modules/sorted-union-stream/node_modules/readable-stream/package.json +17 -50
  918. package/node_modules/npm/node_modules/sorted-union-stream/node_modules/string_decoder/package.json +12 -40
  919. package/node_modules/npm/node_modules/sorted-union-stream/package.json +18 -52
  920. package/node_modules/npm/node_modules/spdx-correct/package.json +8 -51
  921. package/node_modules/npm/node_modules/spdx-exceptions/package.json +6 -44
  922. package/node_modules/npm/node_modules/spdx-expression-parse/package.json +13 -70
  923. package/node_modules/npm/node_modules/spdx-license-ids/package.json +37 -75
  924. package/node_modules/npm/node_modules/split-on-first/package.json +34 -66
  925. package/node_modules/npm/node_modules/sshpk/package.json +31 -72
  926. package/node_modules/npm/node_modules/ssri/package.json +35 -71
  927. package/node_modules/npm/node_modules/stream-each/package.json +13 -44
  928. package/node_modules/npm/node_modules/stream-iterate/node_modules/readable-stream/CONTRIBUTING.md +38 -0
  929. package/node_modules/npm/node_modules/stream-iterate/node_modules/readable-stream/package.json +22 -51
  930. package/node_modules/npm/node_modules/stream-iterate/node_modules/string_decoder/package.json +13 -41
  931. package/node_modules/npm/node_modules/stream-iterate/package.json +11 -39
  932. package/node_modules/npm/node_modules/stream-shift/package.json +13 -43
  933. package/node_modules/npm/node_modules/strict-uri-encode/package.json +12 -44
  934. package/node_modules/npm/node_modules/string-width/node_modules/ansi-regex/package.json +13 -45
  935. package/node_modules/npm/node_modules/string-width/node_modules/is-fullwidth-code-point/package.json +11 -43
  936. package/node_modules/npm/node_modules/string-width/node_modules/strip-ansi/package.json +14 -46
  937. package/node_modules/npm/node_modules/string-width/package.json +53 -92
  938. package/node_modules/npm/node_modules/string_decoder/node_modules/safe-buffer/package.json +5 -30
  939. package/node_modules/npm/node_modules/string_decoder/package.json +15 -43
  940. package/node_modules/npm/node_modules/stringify-package/package.json +19 -49
  941. package/node_modules/npm/node_modules/strip-ansi/package.json +19 -74
  942. package/node_modules/npm/node_modules/strip-eof/package.json +12 -44
  943. package/node_modules/npm/node_modules/strip-json-comments/package.json +12 -45
  944. package/node_modules/npm/node_modules/supports-color/package.json +15 -47
  945. package/node_modules/npm/node_modules/tar/node_modules/minipass/package.json +19 -52
  946. package/node_modules/npm/node_modules/tar/node_modules/safe-buffer/package.json +18 -44
  947. package/node_modules/npm/node_modules/tar/node_modules/yallist/package.json +15 -49
  948. package/node_modules/npm/node_modules/tar/package.json +20 -56
  949. package/node_modules/npm/node_modules/term-size/package.json +14 -46
  950. package/node_modules/npm/node_modules/term-size/vendor/macos/term-size +0 -0
  951. package/node_modules/npm/node_modules/text-table/package.json +41 -74
  952. package/node_modules/npm/node_modules/through/package.json +12 -45
  953. package/node_modules/npm/node_modules/through2/node_modules/readable-stream/CONTRIBUTING.md +38 -0
  954. package/node_modules/npm/node_modules/through2/node_modules/readable-stream/package.json +22 -51
  955. package/node_modules/npm/node_modules/through2/node_modules/string_decoder/package.json +13 -41
  956. package/node_modules/npm/node_modules/through2/package.json +19 -55
  957. package/node_modules/npm/node_modules/timed-out/package.json +12 -44
  958. package/node_modules/npm/node_modules/tiny-relative-date/package.json +21 -57
  959. package/node_modules/npm/node_modules/tough-cookie/package.json +40 -58
  960. package/node_modules/npm/node_modules/tunnel-agent/package.json +12 -45
  961. package/node_modules/npm/node_modules/tweetnacl/package.json +35 -63
  962. package/node_modules/npm/node_modules/typedarray/package.json +16 -44
  963. package/node_modules/npm/node_modules/uid-number/package.json +10 -47
  964. package/node_modules/npm/node_modules/umask/index.js~ +68 -0
  965. package/node_modules/npm/node_modules/umask/package.json +17 -49
  966. package/node_modules/npm/node_modules/umask/test/ChangeLog~ +5 -0
  967. package/node_modules/npm/node_modules/umask/test/simple.js~ +14 -0
  968. package/node_modules/npm/node_modules/unique-filename/.nyc_output/54942.json +1 -0
  969. package/node_modules/npm/node_modules/unique-filename/.nyc_output/54944.json +1 -0
  970. package/node_modules/npm/node_modules/unique-filename/package.json +16 -46
  971. package/node_modules/npm/node_modules/unique-slug/package.json +12 -45
  972. package/node_modules/npm/node_modules/unique-string/package.json +13 -45
  973. package/node_modules/npm/node_modules/unpipe/package.json +8 -47
  974. package/node_modules/npm/node_modules/unzip-response/package.json +25 -57
  975. package/node_modules/npm/node_modules/update-notifier/package.json +27 -61
  976. package/node_modules/npm/node_modules/uri-js/node_modules/punycode/package.json +32 -59
  977. package/node_modules/npm/node_modules/uri-js/package.json +36 -64
  978. package/node_modules/npm/node_modules/url-parse-lax/package.json +13 -45
  979. package/node_modules/npm/node_modules/util-deprecate/package.json +14 -43
  980. package/node_modules/npm/node_modules/util-extend/package.json +9 -38
  981. package/node_modules/npm/node_modules/util-promisify/package.json +7 -39
  982. package/node_modules/npm/node_modules/uuid/package.json +22 -76
  983. package/node_modules/npm/node_modules/validate-npm-package-license/package.json +7 -49
  984. package/node_modules/npm/node_modules/validate-npm-package-name/.nyc_output/aa4ee25ac41a9c3c7ee37ce965e6d1ac.json +1 -0
  985. package/node_modules/npm/node_modules/validate-npm-package-name/.nyc_output/bb918173e62b9517f55b630902d07ef4.json +1 -0
  986. package/node_modules/npm/node_modules/validate-npm-package-name/package.json +19 -51
  987. package/node_modules/npm/node_modules/verror/CONTRIBUTING.md +19 -0
  988. package/node_modules/npm/node_modules/verror/package.json +20 -49
  989. package/node_modules/npm/node_modules/wcwidth/package.json +17 -48
  990. package/node_modules/npm/node_modules/which/package.json +16 -58
  991. package/node_modules/npm/node_modules/which-module/package.json +23 -50
  992. package/node_modules/npm/node_modules/wide-align/node_modules/string-width/package.json +16 -48
  993. package/node_modules/npm/node_modules/wide-align/package.json +16 -52
  994. package/node_modules/npm/node_modules/widest-line/package.json +14 -46
  995. package/node_modules/npm/node_modules/worker-farm/package.json +12 -42
  996. package/node_modules/npm/node_modules/wrap-ansi/node_modules/ansi-regex/package.json +51 -83
  997. package/node_modules/npm/node_modules/wrap-ansi/node_modules/is-fullwidth-code-point/package.json +11 -43
  998. package/node_modules/npm/node_modules/wrap-ansi/node_modules/string-width/package.json +54 -86
  999. package/node_modules/npm/node_modules/wrap-ansi/node_modules/strip-ansi/package.json +52 -85
  1000. package/node_modules/npm/node_modules/wrap-ansi/package.json +59 -93
  1001. package/node_modules/npm/node_modules/wrappy/package.json +16 -51
  1002. package/node_modules/npm/node_modules/write-file-atomic/package.json +20 -54
  1003. package/node_modules/npm/node_modules/xdg-basedir/package.json +13 -46
  1004. package/node_modules/npm/node_modules/xtend/.jshintrc +30 -0
  1005. package/node_modules/npm/node_modules/xtend/package.json +25 -57
  1006. package/node_modules/npm/node_modules/y18n/package.json +24 -57
  1007. package/node_modules/npm/node_modules/yallist/package.json +15 -48
  1008. package/node_modules/npm/node_modules/yargs/node_modules/ansi-regex/package.json +51 -83
  1009. package/node_modules/npm/node_modules/yargs/node_modules/find-up/package.json +48 -80
  1010. package/node_modules/npm/node_modules/yargs/node_modules/is-fullwidth-code-point/package.json +11 -43
  1011. package/node_modules/npm/node_modules/yargs/node_modules/locate-path/package.json +42 -74
  1012. package/node_modules/npm/node_modules/yargs/node_modules/p-limit/package.json +50 -82
  1013. package/node_modules/npm/node_modules/yargs/node_modules/p-locate/package.json +49 -81
  1014. package/node_modules/npm/node_modules/yargs/node_modules/p-try/package.json +40 -72
  1015. package/node_modules/npm/node_modules/yargs/node_modules/string-width/package.json +54 -86
  1016. package/node_modules/npm/node_modules/yargs/node_modules/strip-ansi/package.json +52 -84
  1017. package/node_modules/npm/node_modules/yargs/package.json +30 -61
  1018. package/node_modules/npm/node_modules/yargs-parser/node_modules/camelcase/package.json +41 -73
  1019. package/node_modules/npm/node_modules/yargs-parser/package.json +28 -60
  1020. package/node_modules/npm/package.json +3 -6
  1021. package/node_modules/oauth-sign/package.json +1 -5
  1022. package/node_modules/object-inspect/.eslintignore +1 -0
  1023. package/node_modules/object-inspect/.eslintrc +53 -0
  1024. package/node_modules/object-inspect/.github/FUNDING.yml +12 -0
  1025. package/node_modules/object-inspect/.nycrc +13 -0
  1026. package/node_modules/object-inspect/CHANGELOG.md +342 -0
  1027. package/node_modules/object-inspect/LICENSE +21 -0
  1028. package/node_modules/object-inspect/example/all.js +23 -0
  1029. package/node_modules/object-inspect/example/circular.js +6 -0
  1030. package/node_modules/object-inspect/example/fn.js +5 -0
  1031. package/node_modules/object-inspect/example/inspect.js +10 -0
  1032. package/node_modules/object-inspect/index.js +511 -0
  1033. package/node_modules/object-inspect/package.json +84 -0
  1034. package/node_modules/object-inspect/readme.markdown +86 -0
  1035. package/node_modules/object-inspect/test/bigint.js +58 -0
  1036. package/node_modules/object-inspect/test/browser/dom.js +15 -0
  1037. package/node_modules/object-inspect/test/circular.js +16 -0
  1038. package/node_modules/object-inspect/test/deep.js +12 -0
  1039. package/node_modules/object-inspect/test/element.js +53 -0
  1040. package/node_modules/object-inspect/test/err.js +48 -0
  1041. package/node_modules/object-inspect/test/fakes.js +29 -0
  1042. package/node_modules/object-inspect/test/fn.js +76 -0
  1043. package/node_modules/object-inspect/test/has.js +34 -0
  1044. package/node_modules/object-inspect/test/holes.js +15 -0
  1045. package/node_modules/object-inspect/test/indent-option.js +271 -0
  1046. package/node_modules/object-inspect/test/inspect.js +102 -0
  1047. package/node_modules/object-inspect/test/lowbyte.js +12 -0
  1048. package/node_modules/object-inspect/test/number.js +58 -0
  1049. package/node_modules/object-inspect/test/quoteStyle.js +17 -0
  1050. package/node_modules/object-inspect/test/toStringTag.js +40 -0
  1051. package/node_modules/object-inspect/test/undef.js +12 -0
  1052. package/node_modules/object-inspect/test/values.js +211 -0
  1053. package/node_modules/object-inspect/test-core-js.js +26 -0
  1054. package/node_modules/object-inspect/util.inspect.js +1 -0
  1055. package/node_modules/on-finished/HISTORY.md +10 -0
  1056. package/node_modules/on-finished/README.md +28 -20
  1057. package/node_modules/on-finished/index.js +51 -13
  1058. package/node_modules/on-finished/package.json +14 -10
  1059. package/node_modules/once/package.json +1 -5
  1060. package/node_modules/parseurl/package.json +1 -5
  1061. package/node_modules/path-is-absolute/package.json +1 -5
  1062. package/node_modules/path-parse/package.json +1 -5
  1063. package/node_modules/path-to-regexp/package.json +1 -5
  1064. package/node_modules/performance-now/package.json +1 -5
  1065. package/node_modules/proxy-addr/package.json +1 -5
  1066. package/node_modules/psl/package.json +1 -5
  1067. package/node_modules/punycode/package.json +1 -5
  1068. package/node_modules/qs/.editorconfig +10 -0
  1069. package/node_modules/qs/.eslintrc +21 -4
  1070. package/node_modules/qs/.github/FUNDING.yml +12 -0
  1071. package/node_modules/qs/.nycrc +13 -0
  1072. package/node_modules/qs/CHANGELOG.md +132 -0
  1073. package/node_modules/qs/LICENSE.md +29 -0
  1074. package/node_modules/qs/README.md +71 -18
  1075. package/node_modules/qs/dist/qs.js +1336 -74
  1076. package/node_modules/qs/lib/formats.js +9 -4
  1077. package/node_modules/qs/lib/parse.js +36 -15
  1078. package/node_modules/qs/lib/stringify.js +99 -51
  1079. package/node_modules/qs/lib/utils.js +24 -2
  1080. package/node_modules/qs/package.json +36 -25
  1081. package/node_modules/qs/test/parse.js +166 -1
  1082. package/node_modules/qs/test/stringify.js +199 -13
  1083. package/node_modules/qs/test/utils.js +1 -1
  1084. package/node_modules/range-parser/package.json +1 -5
  1085. package/node_modules/raw-body/HISTORY.md +33 -0
  1086. package/node_modules/raw-body/LICENSE +1 -1
  1087. package/node_modules/raw-body/README.md +12 -8
  1088. package/node_modules/raw-body/SECURITY.md +24 -0
  1089. package/node_modules/raw-body/index.js +45 -2
  1090. package/node_modules/raw-body/package.json +20 -23
  1091. package/node_modules/rechoir/package.json +1 -5
  1092. package/node_modules/request/node_modules/qs/.editorconfig +14 -1
  1093. package/node_modules/request/node_modules/qs/.eslintrc +21 -3
  1094. package/node_modules/request/node_modules/qs/.github/FUNDING.yml +12 -0
  1095. package/node_modules/request/node_modules/qs/.nycrc +13 -0
  1096. package/node_modules/request/node_modules/qs/CHANGELOG.md +24 -0
  1097. package/node_modules/request/node_modules/qs/LICENSE.md +29 -0
  1098. package/node_modules/request/node_modules/qs/README.md +54 -19
  1099. package/node_modules/request/node_modules/qs/bower.json +21 -0
  1100. package/node_modules/request/node_modules/qs/component.json +15 -0
  1101. package/node_modules/request/node_modules/qs/dist/qs.js +35 -25
  1102. package/node_modules/request/node_modules/qs/lib/formats.js +1 -1
  1103. package/node_modules/request/node_modules/qs/lib/parse.js +6 -5
  1104. package/node_modules/request/node_modules/qs/lib/stringify.js +21 -14
  1105. package/node_modules/request/node_modules/qs/lib/utils.js +7 -5
  1106. package/node_modules/request/node_modules/qs/package.json +19 -21
  1107. package/node_modules/request/node_modules/qs/test/parse.js +79 -4
  1108. package/node_modules/request/node_modules/qs/test/stringify.js +45 -0
  1109. package/node_modules/request/node_modules/qs/test/utils.js +31 -0
  1110. package/node_modules/request/package.json +1 -5
  1111. package/node_modules/resolve/.eslintrc +34 -8
  1112. package/node_modules/resolve/.github/FUNDING.yml +12 -0
  1113. package/node_modules/resolve/appveyor.yml +4 -2
  1114. package/node_modules/resolve/async.js +3 -0
  1115. package/node_modules/resolve/bin/resolve +50 -0
  1116. package/node_modules/resolve/lib/async.js +10 -1
  1117. package/node_modules/resolve/lib/core.js +1 -2
  1118. package/node_modules/resolve/lib/core.json +85 -16
  1119. package/node_modules/resolve/lib/homedir.js +24 -0
  1120. package/node_modules/resolve/lib/node-modules-paths.js +1 -1
  1121. package/node_modules/resolve/lib/sync.js +14 -5
  1122. package/node_modules/resolve/package.json +24 -17
  1123. package/node_modules/resolve/readme.markdown +35 -13
  1124. package/node_modules/resolve/sync.js +3 -0
  1125. package/node_modules/resolve/test/home_paths.js +127 -0
  1126. package/node_modules/resolve/test/home_paths_sync.js +114 -0
  1127. package/node_modules/resolve/test/mock_sync.js +2 -4
  1128. package/node_modules/resolve/test/node_path.js +1 -1
  1129. package/node_modules/resolve/test/resolver/invalid_main/package.json +1 -1
  1130. package/node_modules/{nopt/.npmignore → resolve/test/resolver/malformed_package_json/index.js} +0 -0
  1131. package/node_modules/resolve/test/resolver/malformed_package_json/package.json +1 -0
  1132. package/node_modules/resolve/test/resolver.js +99 -3
  1133. package/node_modules/resolve/test/resolver_sync.js +310 -23
  1134. package/node_modules/safe-buffer/index.js +3 -0
  1135. package/node_modules/safe-buffer/package.json +19 -9
  1136. package/node_modules/safer-buffer/package.json +1 -5
  1137. package/node_modules/send/HISTORY.md +10 -0
  1138. package/node_modules/send/README.md +4 -6
  1139. package/node_modules/send/index.js +7 -3
  1140. package/node_modules/send/node_modules/depd/History.md +96 -0
  1141. package/node_modules/send/node_modules/depd/LICENSE +22 -0
  1142. package/node_modules/send/node_modules/depd/Readme.md +280 -0
  1143. package/node_modules/send/node_modules/depd/index.js +522 -0
  1144. package/node_modules/send/node_modules/depd/lib/browser/index.js +77 -0
  1145. package/node_modules/send/node_modules/depd/lib/compat/callsite-tostring.js +103 -0
  1146. package/node_modules/send/node_modules/depd/lib/compat/event-listener-count.js +22 -0
  1147. package/node_modules/send/node_modules/depd/lib/compat/index.js +79 -0
  1148. package/node_modules/send/node_modules/depd/package.json +41 -0
  1149. package/node_modules/send/node_modules/destroy/LICENSE +22 -0
  1150. package/node_modules/send/node_modules/destroy/README.md +60 -0
  1151. package/node_modules/send/node_modules/destroy/index.js +75 -0
  1152. package/node_modules/send/node_modules/destroy/package.json +37 -0
  1153. package/node_modules/send/node_modules/http-errors/HISTORY.md +165 -0
  1154. package/node_modules/send/node_modules/http-errors/LICENSE +23 -0
  1155. package/node_modules/send/node_modules/http-errors/README.md +169 -0
  1156. package/node_modules/send/node_modules/http-errors/index.js +299 -0
  1157. package/node_modules/send/node_modules/http-errors/package.json +49 -0
  1158. package/node_modules/send/node_modules/ms/index.js +3 -3
  1159. package/node_modules/send/node_modules/ms/license.md +1 -1
  1160. package/node_modules/send/node_modules/ms/package.json +6 -9
  1161. package/node_modules/send/node_modules/ms/readme.md +1 -2
  1162. package/node_modules/send/node_modules/on-finished/HISTORY.md +88 -0
  1163. package/node_modules/send/node_modules/on-finished/LICENSE +23 -0
  1164. package/node_modules/send/node_modules/on-finished/README.md +154 -0
  1165. package/node_modules/send/node_modules/on-finished/index.js +196 -0
  1166. package/node_modules/send/node_modules/on-finished/package.json +31 -0
  1167. package/node_modules/send/package.json +17 -21
  1168. package/node_modules/serve-static/HISTORY.md +8 -0
  1169. package/node_modules/serve-static/README.md +9 -11
  1170. package/node_modules/serve-static/package.json +17 -21
  1171. package/node_modules/setprototypeof/README.md +1 -1
  1172. package/node_modules/setprototypeof/index.js +1 -1
  1173. package/node_modules/setprototypeof/package.json +7 -9
  1174. package/node_modules/shelljs/package.json +2 -6
  1175. package/node_modules/shelljs/src/exec.js +19 -1
  1176. package/node_modules/side-channel/.eslintignore +1 -0
  1177. package/node_modules/side-channel/.eslintrc +11 -0
  1178. package/node_modules/side-channel/.github/FUNDING.yml +12 -0
  1179. package/node_modules/side-channel/.nycrc +13 -0
  1180. package/node_modules/side-channel/CHANGELOG.md +65 -0
  1181. package/node_modules/side-channel/LICENSE +21 -0
  1182. package/node_modules/side-channel/README.md +2 -0
  1183. package/node_modules/side-channel/index.js +124 -0
  1184. package/node_modules/side-channel/package.json +67 -0
  1185. package/node_modules/side-channel/test/index.js +78 -0
  1186. package/node_modules/sshpk/Jenkinsfile +86 -0
  1187. package/node_modules/sshpk/lib/formats/putty.js +99 -4
  1188. package/node_modules/sshpk/lib/private-key.js +1 -0
  1189. package/node_modules/sshpk/package.json +2 -6
  1190. package/node_modules/statuses/package.json +1 -5
  1191. package/node_modules/supports-preserve-symlinks-flag/.eslintrc +14 -0
  1192. package/node_modules/supports-preserve-symlinks-flag/.github/FUNDING.yml +12 -0
  1193. package/node_modules/supports-preserve-symlinks-flag/.nycrc +9 -0
  1194. package/node_modules/supports-preserve-symlinks-flag/CHANGELOG.md +22 -0
  1195. package/node_modules/supports-preserve-symlinks-flag/LICENSE +21 -0
  1196. package/node_modules/supports-preserve-symlinks-flag/README.md +42 -0
  1197. package/node_modules/supports-preserve-symlinks-flag/browser.js +3 -0
  1198. package/node_modules/supports-preserve-symlinks-flag/index.js +9 -0
  1199. package/node_modules/supports-preserve-symlinks-flag/package.json +70 -0
  1200. package/node_modules/supports-preserve-symlinks-flag/test/index.js +29 -0
  1201. package/node_modules/toidentifier/HISTORY.md +9 -0
  1202. package/node_modules/toidentifier/README.md +3 -3
  1203. package/node_modules/toidentifier/index.js +2 -0
  1204. package/node_modules/toidentifier/package.json +17 -17
  1205. package/node_modules/tough-cookie/package.json +1 -5
  1206. package/node_modules/traverse/package.json +1 -5
  1207. package/node_modules/tunnel-agent/package.json +1 -5
  1208. package/node_modules/tweetnacl/package.json +1 -5
  1209. package/node_modules/type-is/package.json +1 -5
  1210. package/node_modules/underscore/amd/_collectNonEnumProps.js +1 -1
  1211. package/node_modules/underscore/amd/_setup.js +1 -1
  1212. package/node_modules/underscore/amd/sample.js +2 -2
  1213. package/node_modules/underscore/cjs/_collectNonEnumProps.js +1 -1
  1214. package/node_modules/underscore/cjs/_setup.js +1 -1
  1215. package/node_modules/underscore/cjs/sample.js +2 -2
  1216. package/node_modules/underscore/modules/_collectNonEnumProps.js +1 -1
  1217. package/node_modules/underscore/modules/_setup.js +1 -1
  1218. package/node_modules/underscore/modules/index.js +1 -1
  1219. package/node_modules/underscore/modules/sample.js +2 -2
  1220. package/node_modules/underscore/package.json +2 -6
  1221. package/node_modules/underscore/underscore-esm-min.js +2 -2
  1222. package/node_modules/underscore/underscore-esm-min.js.map +1 -1
  1223. package/node_modules/underscore/underscore-esm.js +17 -17
  1224. package/node_modules/underscore/underscore-esm.js.map +1 -1
  1225. package/node_modules/underscore/underscore-min.js +2 -2
  1226. package/node_modules/underscore/underscore-min.js.map +1 -1
  1227. package/node_modules/underscore/underscore-node-f.cjs +17 -17
  1228. package/node_modules/underscore/underscore-node-f.cjs.map +1 -1
  1229. package/node_modules/underscore/underscore-node.cjs +1 -1
  1230. package/node_modules/underscore/underscore-node.mjs +1 -1
  1231. package/node_modules/underscore/underscore-umd-min.js +2 -2
  1232. package/node_modules/underscore/underscore-umd-min.js.map +1 -1
  1233. package/node_modules/underscore/underscore-umd.js +17 -17
  1234. package/node_modules/underscore/underscore-umd.js.map +1 -1
  1235. package/node_modules/underscore/underscore.js +17 -17
  1236. package/node_modules/unpipe/package.json +1 -5
  1237. package/node_modules/unzip-stream/package.json +1 -5
  1238. package/node_modules/uri-js/package.json +1 -5
  1239. package/node_modules/utils-merge/package.json +1 -5
  1240. package/node_modules/uuid/package.json +1 -5
  1241. package/node_modules/vary/package.json +1 -5
  1242. package/node_modules/{core-util-is → verror/node_modules/core-util-is}/LICENSE +0 -0
  1243. package/node_modules/{core-util-is → verror/node_modules/core-util-is}/README.md +0 -0
  1244. package/node_modules/{core-util-is → verror/node_modules/core-util-is}/float.patch +0 -0
  1245. package/node_modules/{core-util-is → verror/node_modules/core-util-is}/lib/util.js +0 -0
  1246. package/node_modules/verror/node_modules/core-util-is/package.json +32 -0
  1247. package/node_modules/{core-util-is → verror/node_modules/core-util-is}/test.js +0 -0
  1248. package/node_modules/verror/package.json +1 -5
  1249. package/node_modules/wrappy/package.json +1 -5
  1250. package/package.json +12 -10
  1251. package/node_modules/abbrev/LICENSE +0 -46
  1252. package/node_modules/abbrev/README.md +0 -23
  1253. package/node_modules/abbrev/abbrev.js +0 -61
  1254. package/node_modules/abbrev/package.json +0 -25
  1255. package/node_modules/ajv/package.json +0 -110
  1256. package/node_modules/ansi-align/CHANGELOG.md +0 -36
  1257. package/node_modules/ansi-align/LICENSE +0 -13
  1258. package/node_modules/ansi-align/README.md +0 -79
  1259. package/node_modules/ansi-align/index.js +0 -61
  1260. package/node_modules/ansi-align/package.json +0 -47
  1261. package/node_modules/ansi-styles/index.js +0 -65
  1262. package/node_modules/ansi-styles/license +0 -21
  1263. package/node_modules/ansi-styles/package.json +0 -54
  1264. package/node_modules/ansi-styles/readme.md +0 -86
  1265. package/node_modules/boxen/index.js +0 -138
  1266. package/node_modules/boxen/license +0 -9
  1267. package/node_modules/boxen/package.json +0 -51
  1268. package/node_modules/boxen/readme.md +0 -175
  1269. package/node_modules/camelcase/index.js +0 -64
  1270. package/node_modules/camelcase/license +0 -21
  1271. package/node_modules/camelcase/package.json +0 -46
  1272. package/node_modules/camelcase/readme.md +0 -57
  1273. package/node_modules/capture-stack-trace/index.js +0 -18
  1274. package/node_modules/capture-stack-trace/license +0 -21
  1275. package/node_modules/capture-stack-trace/package.json +0 -33
  1276. package/node_modules/capture-stack-trace/readme.md +0 -36
  1277. package/node_modules/chalk/index.js +0 -228
  1278. package/node_modules/chalk/index.js.flow +0 -93
  1279. package/node_modules/chalk/license +0 -9
  1280. package/node_modules/chalk/node_modules/ansi-styles/index.js +0 -165
  1281. package/node_modules/chalk/node_modules/ansi-styles/license +0 -9
  1282. package/node_modules/chalk/node_modules/ansi-styles/package.json +0 -60
  1283. package/node_modules/chalk/node_modules/ansi-styles/readme.md +0 -147
  1284. package/node_modules/chalk/node_modules/supports-color/browser.js +0 -5
  1285. package/node_modules/chalk/node_modules/supports-color/index.js +0 -131
  1286. package/node_modules/chalk/node_modules/supports-color/license +0 -9
  1287. package/node_modules/chalk/node_modules/supports-color/package.json +0 -57
  1288. package/node_modules/chalk/node_modules/supports-color/readme.md +0 -66
  1289. package/node_modules/chalk/package.json +0 -75
  1290. package/node_modules/chalk/readme.md +0 -314
  1291. package/node_modules/chalk/templates.js +0 -128
  1292. package/node_modules/chalk/types/index.d.ts +0 -97
  1293. package/node_modules/ci-info/CHANGELOG.md +0 -62
  1294. package/node_modules/ci-info/LICENSE +0 -21
  1295. package/node_modules/ci-info/README.md +0 -107
  1296. package/node_modules/ci-info/index.js +0 -66
  1297. package/node_modules/ci-info/package.json +0 -40
  1298. package/node_modules/ci-info/vendors.json +0 -152
  1299. package/node_modules/cli-boxes/boxes.json +0 -50
  1300. package/node_modules/cli-boxes/index.js +0 -2
  1301. package/node_modules/cli-boxes/license +0 -21
  1302. package/node_modules/cli-boxes/package.json +0 -43
  1303. package/node_modules/cli-boxes/readme.md +0 -94
  1304. package/node_modules/color-convert/CHANGELOG.md +0 -54
  1305. package/node_modules/color-convert/LICENSE +0 -21
  1306. package/node_modules/color-convert/README.md +0 -68
  1307. package/node_modules/color-convert/conversions.js +0 -868
  1308. package/node_modules/color-convert/index.js +0 -78
  1309. package/node_modules/color-convert/package.json +0 -50
  1310. package/node_modules/color-convert/route.js +0 -97
  1311. package/node_modules/color-name/.eslintrc.json +0 -43
  1312. package/node_modules/color-name/.npmignore +0 -107
  1313. package/node_modules/color-name/LICENSE +0 -8
  1314. package/node_modules/color-name/README.md +0 -11
  1315. package/node_modules/color-name/index.js +0 -152
  1316. package/node_modules/color-name/package.json +0 -29
  1317. package/node_modules/color-name/test.js +0 -7
  1318. package/node_modules/configstore/index.js +0 -106
  1319. package/node_modules/configstore/license +0 -9
  1320. package/node_modules/configstore/package.json +0 -51
  1321. package/node_modules/configstore/readme.md +0 -116
  1322. package/node_modules/core-util-is/package.json +0 -36
  1323. package/node_modules/create-error-class/index.js +0 -44
  1324. package/node_modules/create-error-class/license +0 -21
  1325. package/node_modules/create-error-class/package.json +0 -34
  1326. package/node_modules/create-error-class/readme.md +0 -54
  1327. package/node_modules/cross-spawn/CHANGELOG.md +0 -6
  1328. package/node_modules/cross-spawn/LICENSE +0 -19
  1329. package/node_modules/cross-spawn/README.md +0 -85
  1330. package/node_modules/cross-spawn/index.js +0 -59
  1331. package/node_modules/cross-spawn/lib/enoent.js +0 -73
  1332. package/node_modules/cross-spawn/lib/parse.js +0 -113
  1333. package/node_modules/cross-spawn/lib/util/escapeArgument.js +0 -30
  1334. package/node_modules/cross-spawn/lib/util/escapeCommand.js +0 -12
  1335. package/node_modules/cross-spawn/lib/util/hasEmptyArgumentBug.js +0 -18
  1336. package/node_modules/cross-spawn/lib/util/readShebang.js +0 -37
  1337. package/node_modules/cross-spawn/lib/util/resolveCommand.js +0 -31
  1338. package/node_modules/cross-spawn/package.json +0 -57
  1339. package/node_modules/crypto-random-string/index.js +0 -10
  1340. package/node_modules/crypto-random-string/license +0 -21
  1341. package/node_modules/crypto-random-string/package.json +0 -47
  1342. package/node_modules/crypto-random-string/readme.md +0 -49
  1343. package/node_modules/deep-extend/CHANGELOG.md +0 -46
  1344. package/node_modules/deep-extend/LICENSE +0 -20
  1345. package/node_modules/deep-extend/README.md +0 -91
  1346. package/node_modules/deep-extend/index.js +0 -1
  1347. package/node_modules/deep-extend/lib/deep-extend.js +0 -150
  1348. package/node_modules/deep-extend/package.json +0 -66
  1349. package/node_modules/dot-prop/index.js +0 -141
  1350. package/node_modules/dot-prop/license +0 -21
  1351. package/node_modules/dot-prop/package.json +0 -52
  1352. package/node_modules/dot-prop/readme.md +0 -105
  1353. package/node_modules/duplexer3/LICENSE.md +0 -26
  1354. package/node_modules/duplexer3/README.md +0 -115
  1355. package/node_modules/duplexer3/index.js +0 -76
  1356. package/node_modules/duplexer3/package.json +0 -32
  1357. package/node_modules/escape-string-regexp/index.js +0 -11
  1358. package/node_modules/escape-string-regexp/license +0 -21
  1359. package/node_modules/escape-string-regexp/package.json +0 -45
  1360. package/node_modules/escape-string-regexp/readme.md +0 -27
  1361. package/node_modules/execa/index.js +0 -309
  1362. package/node_modules/execa/lib/errname.js +0 -37
  1363. package/node_modules/execa/lib/stdio.js +0 -41
  1364. package/node_modules/execa/license +0 -9
  1365. package/node_modules/execa/package.json +0 -80
  1366. package/node_modules/execa/readme.md +0 -279
  1367. package/node_modules/fast-deep-equal/package.json +0 -65
  1368. package/node_modules/get-stream/buffer-stream.js +0 -51
  1369. package/node_modules/get-stream/index.js +0 -51
  1370. package/node_modules/get-stream/license +0 -21
  1371. package/node_modules/get-stream/package.json +0 -52
  1372. package/node_modules/get-stream/readme.md +0 -117
  1373. package/node_modules/global-dirs/index.js +0 -90
  1374. package/node_modules/global-dirs/license +0 -9
  1375. package/node_modules/global-dirs/package.json +0 -56
  1376. package/node_modules/global-dirs/readme.md +0 -69
  1377. package/node_modules/got/index.js +0 -364
  1378. package/node_modules/got/license +0 -21
  1379. package/node_modules/got/package.json +0 -82
  1380. package/node_modules/got/readme.md +0 -335
  1381. package/node_modules/graceful-fs/LICENSE +0 -15
  1382. package/node_modules/graceful-fs/README.md +0 -143
  1383. package/node_modules/graceful-fs/clone.js +0 -23
  1384. package/node_modules/graceful-fs/graceful-fs.js +0 -429
  1385. package/node_modules/graceful-fs/legacy-streams.js +0 -118
  1386. package/node_modules/graceful-fs/package.json +0 -54
  1387. package/node_modules/graceful-fs/polyfills.js +0 -346
  1388. package/node_modules/has-flag/index.js +0 -8
  1389. package/node_modules/has-flag/license +0 -9
  1390. package/node_modules/has-flag/package.json +0 -48
  1391. package/node_modules/has-flag/readme.md +0 -70
  1392. package/node_modules/hosted-git-info/CHANGELOG.md +0 -151
  1393. package/node_modules/hosted-git-info/LICENSE +0 -13
  1394. package/node_modules/hosted-git-info/README.md +0 -133
  1395. package/node_modules/hosted-git-info/git-host-info.js +0 -79
  1396. package/node_modules/hosted-git-info/git-host.js +0 -156
  1397. package/node_modules/hosted-git-info/index.js +0 -148
  1398. package/node_modules/hosted-git-info/package.json +0 -44
  1399. package/node_modules/import-lazy/index.js +0 -53
  1400. package/node_modules/import-lazy/license +0 -21
  1401. package/node_modules/import-lazy/package.json +0 -48
  1402. package/node_modules/import-lazy/readme.md +0 -64
  1403. package/node_modules/imurmurhash/README.md +0 -122
  1404. package/node_modules/imurmurhash/imurmurhash.js +0 -138
  1405. package/node_modules/imurmurhash/imurmurhash.min.js +0 -12
  1406. package/node_modules/imurmurhash/package.json +0 -44
  1407. package/node_modules/ini/LICENSE +0 -15
  1408. package/node_modules/ini/README.md +0 -102
  1409. package/node_modules/ini/ini.js +0 -206
  1410. package/node_modules/ini/package.json +0 -37
  1411. package/node_modules/is-callable/.editorconfig +0 -26
  1412. package/node_modules/is-callable/.eslintrc +0 -21
  1413. package/node_modules/is-callable/.github/FUNDING.yml +0 -12
  1414. package/node_modules/is-callable/.istanbul.yml +0 -47
  1415. package/node_modules/is-callable/CHANGELOG.md +0 -108
  1416. package/node_modules/is-callable/LICENSE +0 -22
  1417. package/node_modules/is-callable/README.md +0 -67
  1418. package/node_modules/is-callable/index.js +0 -74
  1419. package/node_modules/is-callable/package.json +0 -96
  1420. package/node_modules/is-callable/test/index.js +0 -170
  1421. package/node_modules/is-ci/LICENSE +0 -21
  1422. package/node_modules/is-ci/README.md +0 -50
  1423. package/node_modules/is-ci/bin.js +0 -4
  1424. package/node_modules/is-ci/index.js +0 -3
  1425. package/node_modules/is-ci/package.json +0 -42
  1426. package/node_modules/is-fullwidth-code-point/index.js +0 -46
  1427. package/node_modules/is-fullwidth-code-point/license +0 -21
  1428. package/node_modules/is-fullwidth-code-point/package.json +0 -49
  1429. package/node_modules/is-fullwidth-code-point/readme.md +0 -39
  1430. package/node_modules/is-installed-globally/index.js +0 -5
  1431. package/node_modules/is-installed-globally/license +0 -9
  1432. package/node_modules/is-installed-globally/package.json +0 -52
  1433. package/node_modules/is-installed-globally/readme.md +0 -39
  1434. package/node_modules/is-npm/index.js +0 -4
  1435. package/node_modules/is-npm/package.json +0 -36
  1436. package/node_modules/is-npm/readme.md +0 -30
  1437. package/node_modules/is-obj/index.js +0 -5
  1438. package/node_modules/is-obj/license +0 -21
  1439. package/node_modules/is-obj/package.json +0 -37
  1440. package/node_modules/is-obj/readme.md +0 -34
  1441. package/node_modules/is-path-inside/index.js +0 -14
  1442. package/node_modules/is-path-inside/license +0 -21
  1443. package/node_modules/is-path-inside/package.json +0 -41
  1444. package/node_modules/is-path-inside/readme.md +0 -34
  1445. package/node_modules/is-redirect/index.js +0 -14
  1446. package/node_modules/is-redirect/license +0 -21
  1447. package/node_modules/is-redirect/package.json +0 -39
  1448. package/node_modules/is-redirect/readme.md +0 -28
  1449. package/node_modules/is-retry-allowed/index.js +0 -62
  1450. package/node_modules/is-retry-allowed/license +0 -21
  1451. package/node_modules/is-retry-allowed/package.json +0 -33
  1452. package/node_modules/is-retry-allowed/readme.md +0 -42
  1453. package/node_modules/is-stream/index.js +0 -21
  1454. package/node_modules/is-stream/license +0 -21
  1455. package/node_modules/is-stream/package.json +0 -42
  1456. package/node_modules/is-stream/readme.md +0 -42
  1457. package/node_modules/isarray/.npmignore +0 -1
  1458. package/node_modules/isarray/.travis.yml +0 -4
  1459. package/node_modules/isarray/Makefile +0 -6
  1460. package/node_modules/isarray/README.md +0 -60
  1461. package/node_modules/isarray/component.json +0 -19
  1462. package/node_modules/isarray/index.js +0 -5
  1463. package/node_modules/isarray/package.json +0 -49
  1464. package/node_modules/isarray/test.js +0 -20
  1465. package/node_modules/isexe/.npmignore +0 -2
  1466. package/node_modules/isexe/LICENSE +0 -15
  1467. package/node_modules/isexe/README.md +0 -51
  1468. package/node_modules/isexe/index.js +0 -57
  1469. package/node_modules/isexe/mode.js +0 -41
  1470. package/node_modules/isexe/package.json +0 -35
  1471. package/node_modules/isexe/test/basic.js +0 -221
  1472. package/node_modules/isexe/windows.js +0 -42
  1473. package/node_modules/json-parse-better-errors/CHANGELOG.md +0 -46
  1474. package/node_modules/json-parse-better-errors/LICENSE.md +0 -7
  1475. package/node_modules/json-parse-better-errors/README.md +0 -46
  1476. package/node_modules/json-parse-better-errors/index.js +0 -38
  1477. package/node_modules/json-parse-better-errors/package.json +0 -49
  1478. package/node_modules/json-schema/draft-00/hyper-schema +0 -68
  1479. package/node_modules/json-schema/draft-00/json-ref +0 -26
  1480. package/node_modules/json-schema/draft-00/links +0 -33
  1481. package/node_modules/json-schema/draft-00/schema +0 -155
  1482. package/node_modules/json-schema/draft-01/hyper-schema +0 -68
  1483. package/node_modules/json-schema/draft-01/json-ref +0 -26
  1484. package/node_modules/json-schema/draft-01/links +0 -33
  1485. package/node_modules/json-schema/draft-01/schema +0 -155
  1486. package/node_modules/json-schema/draft-02/hyper-schema +0 -68
  1487. package/node_modules/json-schema/draft-02/json-ref +0 -26
  1488. package/node_modules/json-schema/draft-02/links +0 -35
  1489. package/node_modules/json-schema/draft-02/schema +0 -166
  1490. package/node_modules/json-schema/draft-03/examples/address +0 -20
  1491. package/node_modules/json-schema/draft-03/examples/calendar +0 -53
  1492. package/node_modules/json-schema/draft-03/examples/card +0 -105
  1493. package/node_modules/json-schema/draft-03/examples/geo +0 -8
  1494. package/node_modules/json-schema/draft-03/examples/interfaces +0 -23
  1495. package/node_modules/json-schema/draft-03/hyper-schema +0 -60
  1496. package/node_modules/json-schema/draft-03/json-ref +0 -26
  1497. package/node_modules/json-schema/draft-03/links +0 -35
  1498. package/node_modules/json-schema/draft-03/schema +0 -174
  1499. package/node_modules/json-schema/draft-04/hyper-schema +0 -60
  1500. package/node_modules/json-schema/draft-04/links +0 -41
  1501. package/node_modules/json-schema/draft-04/schema +0 -189
  1502. package/node_modules/json-schema/draft-zyp-json-schema-03.xml +0 -1120
  1503. package/node_modules/json-schema/draft-zyp-json-schema-04.xml +0 -1072
  1504. package/node_modules/json-schema/test/tests.js +0 -95
  1505. package/node_modules/json-schema-traverse/package.json +0 -47
  1506. package/node_modules/latest-version/index.js +0 -4
  1507. package/node_modules/latest-version/license +0 -21
  1508. package/node_modules/latest-version/package.json +0 -43
  1509. package/node_modules/latest-version/readme.md +0 -40
  1510. package/node_modules/lowercase-keys/index.js +0 -11
  1511. package/node_modules/lowercase-keys/license +0 -21
  1512. package/node_modules/lowercase-keys/package.json +0 -39
  1513. package/node_modules/lowercase-keys/readme.md +0 -33
  1514. package/node_modules/lru-cache/LICENSE +0 -15
  1515. package/node_modules/lru-cache/README.md +0 -158
  1516. package/node_modules/lru-cache/index.js +0 -468
  1517. package/node_modules/lru-cache/package.json +0 -40
  1518. package/node_modules/make-dir/index.js +0 -85
  1519. package/node_modules/make-dir/license +0 -9
  1520. package/node_modules/make-dir/package.json +0 -58
  1521. package/node_modules/make-dir/readme.md +0 -116
  1522. package/node_modules/nopt/LICENSE +0 -23
  1523. package/node_modules/nopt/README.md +0 -208
  1524. package/node_modules/nopt/bin/nopt.js +0 -44
  1525. package/node_modules/nopt/examples/my-program.js +0 -30
  1526. package/node_modules/nopt/lib/nopt.js +0 -552
  1527. package/node_modules/nopt/package.json +0 -16
  1528. package/node_modules/normalize-package-data/AUTHORS +0 -4
  1529. package/node_modules/normalize-package-data/LICENSE +0 -30
  1530. package/node_modules/normalize-package-data/README.md +0 -106
  1531. package/node_modules/normalize-package-data/lib/extract_description.js +0 -14
  1532. package/node_modules/normalize-package-data/lib/fixer.js +0 -418
  1533. package/node_modules/normalize-package-data/lib/make_warning.js +0 -23
  1534. package/node_modules/normalize-package-data/lib/normalize.js +0 -39
  1535. package/node_modules/normalize-package-data/lib/safe_format.js +0 -9
  1536. package/node_modules/normalize-package-data/lib/typos.json +0 -25
  1537. package/node_modules/normalize-package-data/lib/warning_messages.json +0 -30
  1538. package/node_modules/normalize-package-data/package.json +0 -35
  1539. package/node_modules/npm/node_modules/json-schema/draft-00/hyper-schema +0 -68
  1540. package/node_modules/npm/node_modules/json-schema/draft-00/json-ref +0 -26
  1541. package/node_modules/npm/node_modules/json-schema/draft-00/links +0 -33
  1542. package/node_modules/npm/node_modules/json-schema/draft-00/schema +0 -155
  1543. package/node_modules/npm/node_modules/json-schema/draft-01/hyper-schema +0 -68
  1544. package/node_modules/npm/node_modules/json-schema/draft-01/json-ref +0 -26
  1545. package/node_modules/npm/node_modules/json-schema/draft-01/links +0 -33
  1546. package/node_modules/npm/node_modules/json-schema/draft-01/schema +0 -155
  1547. package/node_modules/npm/node_modules/json-schema/draft-02/hyper-schema +0 -68
  1548. package/node_modules/npm/node_modules/json-schema/draft-02/json-ref +0 -26
  1549. package/node_modules/npm/node_modules/json-schema/draft-02/links +0 -35
  1550. package/node_modules/npm/node_modules/json-schema/draft-02/schema +0 -166
  1551. package/node_modules/npm/node_modules/json-schema/draft-03/examples/address +0 -20
  1552. package/node_modules/npm/node_modules/json-schema/draft-03/examples/calendar +0 -53
  1553. package/node_modules/npm/node_modules/json-schema/draft-03/examples/card +0 -105
  1554. package/node_modules/npm/node_modules/json-schema/draft-03/examples/geo +0 -8
  1555. package/node_modules/npm/node_modules/json-schema/draft-03/examples/interfaces +0 -23
  1556. package/node_modules/npm/node_modules/json-schema/draft-03/hyper-schema +0 -60
  1557. package/node_modules/npm/node_modules/json-schema/draft-03/json-ref +0 -26
  1558. package/node_modules/npm/node_modules/json-schema/draft-03/links +0 -35
  1559. package/node_modules/npm/node_modules/json-schema/draft-03/schema +0 -174
  1560. package/node_modules/npm/node_modules/json-schema/draft-04/hyper-schema +0 -60
  1561. package/node_modules/npm/node_modules/json-schema/draft-04/links +0 -41
  1562. package/node_modules/npm/node_modules/json-schema/draft-04/schema +0 -189
  1563. package/node_modules/npm/node_modules/json-schema/draft-zyp-json-schema-03.xml +0 -1120
  1564. package/node_modules/npm/node_modules/json-schema/draft-zyp-json-schema-04.xml +0 -1072
  1565. package/node_modules/npm/node_modules/json-schema/test/tests.js +0 -95
  1566. package/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/MSVSUtil.pyc +0 -0
  1567. package/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/MSVSVersion.pyc +0 -0
  1568. package/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/__init__.pyc +0 -0
  1569. package/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/common.pyc +0 -0
  1570. package/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/generator/__init__.pyc +0 -0
  1571. package/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/generator/make.pyc +0 -0
  1572. package/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/generator/ninja.pyc +0 -0
  1573. package/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/generator/xcode.pyc +0 -0
  1574. package/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/input.pyc +0 -0
  1575. package/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/msvs_emulation.pyc +0 -0
  1576. package/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/ninja_syntax.pyc +0 -0
  1577. package/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/simple_copy.pyc +0 -0
  1578. package/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/xcode_emulation.pyc +0 -0
  1579. package/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/xcode_ninja.pyc +0 -0
  1580. package/node_modules/npm/node_modules/node-gyp/gyp/pylib/gyp/xcodeproj_file.pyc +0 -0
  1581. package/node_modules/npm-run-path/index.js +0 -39
  1582. package/node_modules/npm-run-path/license +0 -21
  1583. package/node_modules/npm-run-path/package.json +0 -49
  1584. package/node_modules/npm-run-path/readme.md +0 -81
  1585. package/node_modules/object-assign/index.js +0 -90
  1586. package/node_modules/object-assign/license +0 -21
  1587. package/node_modules/object-assign/package.json +0 -46
  1588. package/node_modules/object-assign/readme.md +0 -61
  1589. package/node_modules/p-finally/index.js +0 -15
  1590. package/node_modules/p-finally/license +0 -21
  1591. package/node_modules/p-finally/package.json +0 -46
  1592. package/node_modules/p-finally/readme.md +0 -47
  1593. package/node_modules/package-json/index.js +0 -67
  1594. package/node_modules/package-json/license +0 -21
  1595. package/node_modules/package-json/package.json +0 -47
  1596. package/node_modules/package-json/readme.md +0 -91
  1597. package/node_modules/path-exists/index.js +0 -17
  1598. package/node_modules/path-exists/license +0 -21
  1599. package/node_modules/path-exists/package.json +0 -44
  1600. package/node_modules/path-exists/readme.md +0 -50
  1601. package/node_modules/path-is-inside/LICENSE.txt +0 -47
  1602. package/node_modules/path-is-inside/lib/path-is-inside.js +0 -28
  1603. package/node_modules/path-is-inside/package.json +0 -25
  1604. package/node_modules/path-key/index.js +0 -13
  1605. package/node_modules/path-key/license +0 -21
  1606. package/node_modules/path-key/package.json +0 -43
  1607. package/node_modules/path-key/readme.md +0 -51
  1608. package/node_modules/pify/index.js +0 -84
  1609. package/node_modules/pify/license +0 -9
  1610. package/node_modules/pify/package.json +0 -55
  1611. package/node_modules/pify/readme.md +0 -131
  1612. package/node_modules/prepend-http/index.js +0 -14
  1613. package/node_modules/prepend-http/license +0 -21
  1614. package/node_modules/prepend-http/package.json +0 -39
  1615. package/node_modules/prepend-http/readme.md +0 -31
  1616. package/node_modules/process-nextick-args/index.js +0 -45
  1617. package/node_modules/process-nextick-args/license.md +0 -19
  1618. package/node_modules/process-nextick-args/package.json +0 -29
  1619. package/node_modules/process-nextick-args/readme.md +0 -18
  1620. package/node_modules/pseudomap/LICENSE +0 -15
  1621. package/node_modules/pseudomap/README.md +0 -60
  1622. package/node_modules/pseudomap/map.js +0 -9
  1623. package/node_modules/pseudomap/package.json +0 -29
  1624. package/node_modules/pseudomap/pseudomap.js +0 -113
  1625. package/node_modules/pseudomap/test/basic.js +0 -86
  1626. package/node_modules/qs/.eslintignore +0 -1
  1627. package/node_modules/qs/LICENSE +0 -28
  1628. package/node_modules/qs/test/.eslintrc +0 -17
  1629. package/node_modules/qs/test/index.js +0 -7
  1630. package/node_modules/rc/LICENSE.APACHE2 +0 -15
  1631. package/node_modules/rc/LICENSE.BSD +0 -26
  1632. package/node_modules/rc/LICENSE.MIT +0 -24
  1633. package/node_modules/rc/README.md +0 -227
  1634. package/node_modules/rc/browser.js +0 -7
  1635. package/node_modules/rc/cli.js +0 -4
  1636. package/node_modules/rc/index.js +0 -53
  1637. package/node_modules/rc/lib/utils.js +0 -104
  1638. package/node_modules/rc/package.json +0 -33
  1639. package/node_modules/rc/test/ini.js +0 -16
  1640. package/node_modules/rc/test/nested-env-vars.js +0 -50
  1641. package/node_modules/rc/test/test.js +0 -59
  1642. package/node_modules/registry-auth-token/.npmignore +0 -6
  1643. package/node_modules/registry-auth-token/CHANGELOG.md +0 -112
  1644. package/node_modules/registry-auth-token/LICENSE +0 -21
  1645. package/node_modules/registry-auth-token/README.md +0 -65
  1646. package/node_modules/registry-auth-token/base64.js +0 -14
  1647. package/node_modules/registry-auth-token/index.js +0 -123
  1648. package/node_modules/registry-auth-token/package.json +0 -50
  1649. package/node_modules/registry-auth-token/registry-url.js +0 -5
  1650. package/node_modules/registry-auth-token/test/auth-token.test.js +0 -455
  1651. package/node_modules/registry-auth-token/test/registry-url.test.js +0 -64
  1652. package/node_modules/registry-auth-token/yarn.lock +0 -1516
  1653. package/node_modules/registry-url/index.js +0 -6
  1654. package/node_modules/registry-url/license +0 -21
  1655. package/node_modules/registry-url/package.json +0 -44
  1656. package/node_modules/registry-url/readme.md +0 -50
  1657. package/node_modules/request/node_modules/qs/.eslintignore +0 -1
  1658. package/node_modules/request/node_modules/qs/LICENSE +0 -28
  1659. package/node_modules/resolve/.eslintignore +0 -1
  1660. package/node_modules/rimraf/LICENSE +0 -15
  1661. package/node_modules/rimraf/README.md +0 -101
  1662. package/node_modules/rimraf/bin.js +0 -50
  1663. package/node_modules/rimraf/package.json +0 -33
  1664. package/node_modules/rimraf/rimraf.js +0 -364
  1665. package/node_modules/semver/CHANGELOG.md +0 -39
  1666. package/node_modules/semver/LICENSE +0 -15
  1667. package/node_modules/semver/README.md +0 -412
  1668. package/node_modules/semver/bin/semver +0 -160
  1669. package/node_modules/semver/package.json +0 -32
  1670. package/node_modules/semver/range.bnf +0 -16
  1671. package/node_modules/semver/semver.js +0 -1483
  1672. package/node_modules/semver-diff/index.js +0 -27
  1673. package/node_modules/semver-diff/license +0 -21
  1674. package/node_modules/semver-diff/package.json +0 -38
  1675. package/node_modules/semver-diff/readme.md +0 -52
  1676. package/node_modules/shebang-command/index.js +0 -19
  1677. package/node_modules/shebang-command/license +0 -21
  1678. package/node_modules/shebang-command/package.json +0 -43
  1679. package/node_modules/shebang-command/readme.md +0 -39
  1680. package/node_modules/shebang-regex/index.js +0 -2
  1681. package/node_modules/shebang-regex/license +0 -21
  1682. package/node_modules/shebang-regex/package.json +0 -36
  1683. package/node_modules/shebang-regex/readme.md +0 -29
  1684. package/node_modules/signal-exit/LICENSE.txt +0 -16
  1685. package/node_modules/signal-exit/README.md +0 -39
  1686. package/node_modules/signal-exit/index.js +0 -178
  1687. package/node_modules/signal-exit/package.json +0 -40
  1688. package/node_modules/signal-exit/signals.js +0 -53
  1689. package/node_modules/spdx-correct/LICENSE +0 -202
  1690. package/node_modules/spdx-correct/README.md +0 -14
  1691. package/node_modules/spdx-correct/index.js +0 -364
  1692. package/node_modules/spdx-correct/package.json +0 -43
  1693. package/node_modules/spdx-exceptions/README.md +0 -36
  1694. package/node_modules/spdx-exceptions/index.json +0 -40
  1695. package/node_modules/spdx-exceptions/package.json +0 -21
  1696. package/node_modules/spdx-expression-parse/AUTHORS +0 -4
  1697. package/node_modules/spdx-expression-parse/LICENSE +0 -22
  1698. package/node_modules/spdx-expression-parse/README.md +0 -91
  1699. package/node_modules/spdx-expression-parse/index.js +0 -8
  1700. package/node_modules/spdx-expression-parse/package.json +0 -43
  1701. package/node_modules/spdx-expression-parse/parse.js +0 -138
  1702. package/node_modules/spdx-expression-parse/scan.js +0 -131
  1703. package/node_modules/spdx-license-ids/README.md +0 -52
  1704. package/node_modules/spdx-license-ids/deprecated.json +0 -26
  1705. package/node_modules/spdx-license-ids/index.json +0 -446
  1706. package/node_modules/spdx-license-ids/package.json +0 -44
  1707. package/node_modules/sshpk/.npmignore +0 -9
  1708. package/node_modules/string-width/index.js +0 -36
  1709. package/node_modules/string-width/license +0 -9
  1710. package/node_modules/string-width/package.json +0 -59
  1711. package/node_modules/string-width/readme.md +0 -42
  1712. package/node_modules/strip-ansi/index.js +0 -4
  1713. package/node_modules/strip-ansi/license +0 -9
  1714. package/node_modules/strip-ansi/node_modules/ansi-regex/index.js +0 -10
  1715. package/node_modules/strip-ansi/node_modules/ansi-regex/license +0 -9
  1716. package/node_modules/strip-ansi/node_modules/ansi-regex/package.json +0 -57
  1717. package/node_modules/strip-ansi/node_modules/ansi-regex/readme.md +0 -46
  1718. package/node_modules/strip-ansi/package.json +0 -56
  1719. package/node_modules/strip-ansi/readme.md +0 -39
  1720. package/node_modules/strip-eof/index.js +0 -15
  1721. package/node_modules/strip-eof/license +0 -21
  1722. package/node_modules/strip-eof/package.json +0 -43
  1723. package/node_modules/strip-eof/readme.md +0 -28
  1724. package/node_modules/strip-json-comments/index.js +0 -70
  1725. package/node_modules/strip-json-comments/license +0 -21
  1726. package/node_modules/strip-json-comments/package.json +0 -46
  1727. package/node_modules/strip-json-comments/readme.md +0 -64
  1728. package/node_modules/term-size/index.js +0 -70
  1729. package/node_modules/term-size/license +0 -21
  1730. package/node_modules/term-size/package.json +0 -47
  1731. package/node_modules/term-size/readme.md +0 -41
  1732. package/node_modules/term-size/vendor/macos/term-size +0 -0
  1733. package/node_modules/term-size/vendor/windows/term-size.exe +0 -0
  1734. package/node_modules/timed-out/index.js +0 -55
  1735. package/node_modules/timed-out/license +0 -21
  1736. package/node_modules/timed-out/package.json +0 -40
  1737. package/node_modules/timed-out/readme.md +0 -42
  1738. package/node_modules/unique-string/index.js +0 -4
  1739. package/node_modules/unique-string/license +0 -21
  1740. package/node_modules/unique-string/package.json +0 -48
  1741. package/node_modules/unique-string/readme.md +0 -32
  1742. package/node_modules/unzip-response/index.js +0 -36
  1743. package/node_modules/unzip-response/license +0 -21
  1744. package/node_modules/unzip-response/package.json +0 -53
  1745. package/node_modules/unzip-response/readme.md +0 -29
  1746. package/node_modules/update-notifier/check.js +0 -22
  1747. package/node_modules/update-notifier/index.js +0 -155
  1748. package/node_modules/update-notifier/license +0 -9
  1749. package/node_modules/update-notifier/package.json +0 -59
  1750. package/node_modules/update-notifier/readme.md +0 -193
  1751. package/node_modules/url-parse-lax/index.js +0 -14
  1752. package/node_modules/url-parse-lax/license +0 -21
  1753. package/node_modules/url-parse-lax/package.json +0 -45
  1754. package/node_modules/url-parse-lax/readme.md +0 -100
  1755. package/node_modules/util-deprecate/History.md +0 -16
  1756. package/node_modules/util-deprecate/LICENSE +0 -24
  1757. package/node_modules/util-deprecate/README.md +0 -53
  1758. package/node_modules/util-deprecate/browser.js +0 -67
  1759. package/node_modules/util-deprecate/node.js +0 -6
  1760. package/node_modules/util-deprecate/package.json +0 -31
  1761. package/node_modules/validate-npm-package-license/LICENSE +0 -202
  1762. package/node_modules/validate-npm-package-license/README.md +0 -113
  1763. package/node_modules/validate-npm-package-license/index.js +0 -86
  1764. package/node_modules/validate-npm-package-license/package.json +0 -32
  1765. package/node_modules/which/CHANGELOG.md +0 -152
  1766. package/node_modules/which/LICENSE +0 -15
  1767. package/node_modules/which/README.md +0 -51
  1768. package/node_modules/which/bin/which +0 -52
  1769. package/node_modules/which/package.json +0 -34
  1770. package/node_modules/which/which.js +0 -135
  1771. package/node_modules/widest-line/index.js +0 -8
  1772. package/node_modules/widest-line/license +0 -9
  1773. package/node_modules/widest-line/package.json +0 -58
  1774. package/node_modules/widest-line/readme.md +0 -34
  1775. package/node_modules/write-file-atomic/CHANGELOG.md +0 -25
  1776. package/node_modules/write-file-atomic/LICENSE +0 -6
  1777. package/node_modules/write-file-atomic/README.md +0 -56
  1778. package/node_modules/write-file-atomic/index.js +0 -238
  1779. package/node_modules/write-file-atomic/package.json +0 -45
  1780. package/node_modules/xdg-basedir/index.js +0 -28
  1781. package/node_modules/xdg-basedir/license +0 -21
  1782. package/node_modules/xdg-basedir/package.json +0 -44
  1783. package/node_modules/xdg-basedir/readme.md +0 -60
  1784. package/node_modules/yallist/LICENSE +0 -15
  1785. package/node_modules/yallist/README.md +0 -204
  1786. package/node_modules/yallist/iterator.js +0 -7
  1787. package/node_modules/yallist/package.json +0 -33
  1788. package/node_modules/yallist/yallist.js +0 -370
@@ -1,1483 +0,0 @@
1
- exports = module.exports = SemVer
2
-
3
- var debug
4
- /* istanbul ignore next */
5
- if (typeof process === 'object' &&
6
- process.env &&
7
- process.env.NODE_DEBUG &&
8
- /\bsemver\b/i.test(process.env.NODE_DEBUG)) {
9
- debug = function () {
10
- var args = Array.prototype.slice.call(arguments, 0)
11
- args.unshift('SEMVER')
12
- console.log.apply(console, args)
13
- }
14
- } else {
15
- debug = function () {}
16
- }
17
-
18
- // Note: this is the semver.org version of the spec that it implements
19
- // Not necessarily the package version of this code.
20
- exports.SEMVER_SPEC_VERSION = '2.0.0'
21
-
22
- var MAX_LENGTH = 256
23
- var MAX_SAFE_INTEGER = Number.MAX_SAFE_INTEGER ||
24
- /* istanbul ignore next */ 9007199254740991
25
-
26
- // Max safe segment length for coercion.
27
- var MAX_SAFE_COMPONENT_LENGTH = 16
28
-
29
- // The actual regexps go on exports.re
30
- var re = exports.re = []
31
- var src = exports.src = []
32
- var R = 0
33
-
34
- // The following Regular Expressions can be used for tokenizing,
35
- // validating, and parsing SemVer version strings.
36
-
37
- // ## Numeric Identifier
38
- // A single `0`, or a non-zero digit followed by zero or more digits.
39
-
40
- var NUMERICIDENTIFIER = R++
41
- src[NUMERICIDENTIFIER] = '0|[1-9]\\d*'
42
- var NUMERICIDENTIFIERLOOSE = R++
43
- src[NUMERICIDENTIFIERLOOSE] = '[0-9]+'
44
-
45
- // ## Non-numeric Identifier
46
- // Zero or more digits, followed by a letter or hyphen, and then zero or
47
- // more letters, digits, or hyphens.
48
-
49
- var NONNUMERICIDENTIFIER = R++
50
- src[NONNUMERICIDENTIFIER] = '\\d*[a-zA-Z-][a-zA-Z0-9-]*'
51
-
52
- // ## Main Version
53
- // Three dot-separated numeric identifiers.
54
-
55
- var MAINVERSION = R++
56
- src[MAINVERSION] = '(' + src[NUMERICIDENTIFIER] + ')\\.' +
57
- '(' + src[NUMERICIDENTIFIER] + ')\\.' +
58
- '(' + src[NUMERICIDENTIFIER] + ')'
59
-
60
- var MAINVERSIONLOOSE = R++
61
- src[MAINVERSIONLOOSE] = '(' + src[NUMERICIDENTIFIERLOOSE] + ')\\.' +
62
- '(' + src[NUMERICIDENTIFIERLOOSE] + ')\\.' +
63
- '(' + src[NUMERICIDENTIFIERLOOSE] + ')'
64
-
65
- // ## Pre-release Version Identifier
66
- // A numeric identifier, or a non-numeric identifier.
67
-
68
- var PRERELEASEIDENTIFIER = R++
69
- src[PRERELEASEIDENTIFIER] = '(?:' + src[NUMERICIDENTIFIER] +
70
- '|' + src[NONNUMERICIDENTIFIER] + ')'
71
-
72
- var PRERELEASEIDENTIFIERLOOSE = R++
73
- src[PRERELEASEIDENTIFIERLOOSE] = '(?:' + src[NUMERICIDENTIFIERLOOSE] +
74
- '|' + src[NONNUMERICIDENTIFIER] + ')'
75
-
76
- // ## Pre-release Version
77
- // Hyphen, followed by one or more dot-separated pre-release version
78
- // identifiers.
79
-
80
- var PRERELEASE = R++
81
- src[PRERELEASE] = '(?:-(' + src[PRERELEASEIDENTIFIER] +
82
- '(?:\\.' + src[PRERELEASEIDENTIFIER] + ')*))'
83
-
84
- var PRERELEASELOOSE = R++
85
- src[PRERELEASELOOSE] = '(?:-?(' + src[PRERELEASEIDENTIFIERLOOSE] +
86
- '(?:\\.' + src[PRERELEASEIDENTIFIERLOOSE] + ')*))'
87
-
88
- // ## Build Metadata Identifier
89
- // Any combination of digits, letters, or hyphens.
90
-
91
- var BUILDIDENTIFIER = R++
92
- src[BUILDIDENTIFIER] = '[0-9A-Za-z-]+'
93
-
94
- // ## Build Metadata
95
- // Plus sign, followed by one or more period-separated build metadata
96
- // identifiers.
97
-
98
- var BUILD = R++
99
- src[BUILD] = '(?:\\+(' + src[BUILDIDENTIFIER] +
100
- '(?:\\.' + src[BUILDIDENTIFIER] + ')*))'
101
-
102
- // ## Full Version String
103
- // A main version, followed optionally by a pre-release version and
104
- // build metadata.
105
-
106
- // Note that the only major, minor, patch, and pre-release sections of
107
- // the version string are capturing groups. The build metadata is not a
108
- // capturing group, because it should not ever be used in version
109
- // comparison.
110
-
111
- var FULL = R++
112
- var FULLPLAIN = 'v?' + src[MAINVERSION] +
113
- src[PRERELEASE] + '?' +
114
- src[BUILD] + '?'
115
-
116
- src[FULL] = '^' + FULLPLAIN + '$'
117
-
118
- // like full, but allows v1.2.3 and =1.2.3, which people do sometimes.
119
- // also, 1.0.0alpha1 (prerelease without the hyphen) which is pretty
120
- // common in the npm registry.
121
- var LOOSEPLAIN = '[v=\\s]*' + src[MAINVERSIONLOOSE] +
122
- src[PRERELEASELOOSE] + '?' +
123
- src[BUILD] + '?'
124
-
125
- var LOOSE = R++
126
- src[LOOSE] = '^' + LOOSEPLAIN + '$'
127
-
128
- var GTLT = R++
129
- src[GTLT] = '((?:<|>)?=?)'
130
-
131
- // Something like "2.*" or "1.2.x".
132
- // Note that "x.x" is a valid xRange identifer, meaning "any version"
133
- // Only the first item is strictly required.
134
- var XRANGEIDENTIFIERLOOSE = R++
135
- src[XRANGEIDENTIFIERLOOSE] = src[NUMERICIDENTIFIERLOOSE] + '|x|X|\\*'
136
- var XRANGEIDENTIFIER = R++
137
- src[XRANGEIDENTIFIER] = src[NUMERICIDENTIFIER] + '|x|X|\\*'
138
-
139
- var XRANGEPLAIN = R++
140
- src[XRANGEPLAIN] = '[v=\\s]*(' + src[XRANGEIDENTIFIER] + ')' +
141
- '(?:\\.(' + src[XRANGEIDENTIFIER] + ')' +
142
- '(?:\\.(' + src[XRANGEIDENTIFIER] + ')' +
143
- '(?:' + src[PRERELEASE] + ')?' +
144
- src[BUILD] + '?' +
145
- ')?)?'
146
-
147
- var XRANGEPLAINLOOSE = R++
148
- src[XRANGEPLAINLOOSE] = '[v=\\s]*(' + src[XRANGEIDENTIFIERLOOSE] + ')' +
149
- '(?:\\.(' + src[XRANGEIDENTIFIERLOOSE] + ')' +
150
- '(?:\\.(' + src[XRANGEIDENTIFIERLOOSE] + ')' +
151
- '(?:' + src[PRERELEASELOOSE] + ')?' +
152
- src[BUILD] + '?' +
153
- ')?)?'
154
-
155
- var XRANGE = R++
156
- src[XRANGE] = '^' + src[GTLT] + '\\s*' + src[XRANGEPLAIN] + '$'
157
- var XRANGELOOSE = R++
158
- src[XRANGELOOSE] = '^' + src[GTLT] + '\\s*' + src[XRANGEPLAINLOOSE] + '$'
159
-
160
- // Coercion.
161
- // Extract anything that could conceivably be a part of a valid semver
162
- var COERCE = R++
163
- src[COERCE] = '(?:^|[^\\d])' +
164
- '(\\d{1,' + MAX_SAFE_COMPONENT_LENGTH + '})' +
165
- '(?:\\.(\\d{1,' + MAX_SAFE_COMPONENT_LENGTH + '}))?' +
166
- '(?:\\.(\\d{1,' + MAX_SAFE_COMPONENT_LENGTH + '}))?' +
167
- '(?:$|[^\\d])'
168
-
169
- // Tilde ranges.
170
- // Meaning is "reasonably at or greater than"
171
- var LONETILDE = R++
172
- src[LONETILDE] = '(?:~>?)'
173
-
174
- var TILDETRIM = R++
175
- src[TILDETRIM] = '(\\s*)' + src[LONETILDE] + '\\s+'
176
- re[TILDETRIM] = new RegExp(src[TILDETRIM], 'g')
177
- var tildeTrimReplace = '$1~'
178
-
179
- var TILDE = R++
180
- src[TILDE] = '^' + src[LONETILDE] + src[XRANGEPLAIN] + '$'
181
- var TILDELOOSE = R++
182
- src[TILDELOOSE] = '^' + src[LONETILDE] + src[XRANGEPLAINLOOSE] + '$'
183
-
184
- // Caret ranges.
185
- // Meaning is "at least and backwards compatible with"
186
- var LONECARET = R++
187
- src[LONECARET] = '(?:\\^)'
188
-
189
- var CARETTRIM = R++
190
- src[CARETTRIM] = '(\\s*)' + src[LONECARET] + '\\s+'
191
- re[CARETTRIM] = new RegExp(src[CARETTRIM], 'g')
192
- var caretTrimReplace = '$1^'
193
-
194
- var CARET = R++
195
- src[CARET] = '^' + src[LONECARET] + src[XRANGEPLAIN] + '$'
196
- var CARETLOOSE = R++
197
- src[CARETLOOSE] = '^' + src[LONECARET] + src[XRANGEPLAINLOOSE] + '$'
198
-
199
- // A simple gt/lt/eq thing, or just "" to indicate "any version"
200
- var COMPARATORLOOSE = R++
201
- src[COMPARATORLOOSE] = '^' + src[GTLT] + '\\s*(' + LOOSEPLAIN + ')$|^$'
202
- var COMPARATOR = R++
203
- src[COMPARATOR] = '^' + src[GTLT] + '\\s*(' + FULLPLAIN + ')$|^$'
204
-
205
- // An expression to strip any whitespace between the gtlt and the thing
206
- // it modifies, so that `> 1.2.3` ==> `>1.2.3`
207
- var COMPARATORTRIM = R++
208
- src[COMPARATORTRIM] = '(\\s*)' + src[GTLT] +
209
- '\\s*(' + LOOSEPLAIN + '|' + src[XRANGEPLAIN] + ')'
210
-
211
- // this one has to use the /g flag
212
- re[COMPARATORTRIM] = new RegExp(src[COMPARATORTRIM], 'g')
213
- var comparatorTrimReplace = '$1$2$3'
214
-
215
- // Something like `1.2.3 - 1.2.4`
216
- // Note that these all use the loose form, because they'll be
217
- // checked against either the strict or loose comparator form
218
- // later.
219
- var HYPHENRANGE = R++
220
- src[HYPHENRANGE] = '^\\s*(' + src[XRANGEPLAIN] + ')' +
221
- '\\s+-\\s+' +
222
- '(' + src[XRANGEPLAIN] + ')' +
223
- '\\s*$'
224
-
225
- var HYPHENRANGELOOSE = R++
226
- src[HYPHENRANGELOOSE] = '^\\s*(' + src[XRANGEPLAINLOOSE] + ')' +
227
- '\\s+-\\s+' +
228
- '(' + src[XRANGEPLAINLOOSE] + ')' +
229
- '\\s*$'
230
-
231
- // Star ranges basically just allow anything at all.
232
- var STAR = R++
233
- src[STAR] = '(<|>)?=?\\s*\\*'
234
-
235
- // Compile to actual regexp objects.
236
- // All are flag-free, unless they were created above with a flag.
237
- for (var i = 0; i < R; i++) {
238
- debug(i, src[i])
239
- if (!re[i]) {
240
- re[i] = new RegExp(src[i])
241
- }
242
- }
243
-
244
- exports.parse = parse
245
- function parse (version, options) {
246
- if (!options || typeof options !== 'object') {
247
- options = {
248
- loose: !!options,
249
- includePrerelease: false
250
- }
251
- }
252
-
253
- if (version instanceof SemVer) {
254
- return version
255
- }
256
-
257
- if (typeof version !== 'string') {
258
- return null
259
- }
260
-
261
- if (version.length > MAX_LENGTH) {
262
- return null
263
- }
264
-
265
- var r = options.loose ? re[LOOSE] : re[FULL]
266
- if (!r.test(version)) {
267
- return null
268
- }
269
-
270
- try {
271
- return new SemVer(version, options)
272
- } catch (er) {
273
- return null
274
- }
275
- }
276
-
277
- exports.valid = valid
278
- function valid (version, options) {
279
- var v = parse(version, options)
280
- return v ? v.version : null
281
- }
282
-
283
- exports.clean = clean
284
- function clean (version, options) {
285
- var s = parse(version.trim().replace(/^[=v]+/, ''), options)
286
- return s ? s.version : null
287
- }
288
-
289
- exports.SemVer = SemVer
290
-
291
- function SemVer (version, options) {
292
- if (!options || typeof options !== 'object') {
293
- options = {
294
- loose: !!options,
295
- includePrerelease: false
296
- }
297
- }
298
- if (version instanceof SemVer) {
299
- if (version.loose === options.loose) {
300
- return version
301
- } else {
302
- version = version.version
303
- }
304
- } else if (typeof version !== 'string') {
305
- throw new TypeError('Invalid Version: ' + version)
306
- }
307
-
308
- if (version.length > MAX_LENGTH) {
309
- throw new TypeError('version is longer than ' + MAX_LENGTH + ' characters')
310
- }
311
-
312
- if (!(this instanceof SemVer)) {
313
- return new SemVer(version, options)
314
- }
315
-
316
- debug('SemVer', version, options)
317
- this.options = options
318
- this.loose = !!options.loose
319
-
320
- var m = version.trim().match(options.loose ? re[LOOSE] : re[FULL])
321
-
322
- if (!m) {
323
- throw new TypeError('Invalid Version: ' + version)
324
- }
325
-
326
- this.raw = version
327
-
328
- // these are actually numbers
329
- this.major = +m[1]
330
- this.minor = +m[2]
331
- this.patch = +m[3]
332
-
333
- if (this.major > MAX_SAFE_INTEGER || this.major < 0) {
334
- throw new TypeError('Invalid major version')
335
- }
336
-
337
- if (this.minor > MAX_SAFE_INTEGER || this.minor < 0) {
338
- throw new TypeError('Invalid minor version')
339
- }
340
-
341
- if (this.patch > MAX_SAFE_INTEGER || this.patch < 0) {
342
- throw new TypeError('Invalid patch version')
343
- }
344
-
345
- // numberify any prerelease numeric ids
346
- if (!m[4]) {
347
- this.prerelease = []
348
- } else {
349
- this.prerelease = m[4].split('.').map(function (id) {
350
- if (/^[0-9]+$/.test(id)) {
351
- var num = +id
352
- if (num >= 0 && num < MAX_SAFE_INTEGER) {
353
- return num
354
- }
355
- }
356
- return id
357
- })
358
- }
359
-
360
- this.build = m[5] ? m[5].split('.') : []
361
- this.format()
362
- }
363
-
364
- SemVer.prototype.format = function () {
365
- this.version = this.major + '.' + this.minor + '.' + this.patch
366
- if (this.prerelease.length) {
367
- this.version += '-' + this.prerelease.join('.')
368
- }
369
- return this.version
370
- }
371
-
372
- SemVer.prototype.toString = function () {
373
- return this.version
374
- }
375
-
376
- SemVer.prototype.compare = function (other) {
377
- debug('SemVer.compare', this.version, this.options, other)
378
- if (!(other instanceof SemVer)) {
379
- other = new SemVer(other, this.options)
380
- }
381
-
382
- return this.compareMain(other) || this.comparePre(other)
383
- }
384
-
385
- SemVer.prototype.compareMain = function (other) {
386
- if (!(other instanceof SemVer)) {
387
- other = new SemVer(other, this.options)
388
- }
389
-
390
- return compareIdentifiers(this.major, other.major) ||
391
- compareIdentifiers(this.minor, other.minor) ||
392
- compareIdentifiers(this.patch, other.patch)
393
- }
394
-
395
- SemVer.prototype.comparePre = function (other) {
396
- if (!(other instanceof SemVer)) {
397
- other = new SemVer(other, this.options)
398
- }
399
-
400
- // NOT having a prerelease is > having one
401
- if (this.prerelease.length && !other.prerelease.length) {
402
- return -1
403
- } else if (!this.prerelease.length && other.prerelease.length) {
404
- return 1
405
- } else if (!this.prerelease.length && !other.prerelease.length) {
406
- return 0
407
- }
408
-
409
- var i = 0
410
- do {
411
- var a = this.prerelease[i]
412
- var b = other.prerelease[i]
413
- debug('prerelease compare', i, a, b)
414
- if (a === undefined && b === undefined) {
415
- return 0
416
- } else if (b === undefined) {
417
- return 1
418
- } else if (a === undefined) {
419
- return -1
420
- } else if (a === b) {
421
- continue
422
- } else {
423
- return compareIdentifiers(a, b)
424
- }
425
- } while (++i)
426
- }
427
-
428
- // preminor will bump the version up to the next minor release, and immediately
429
- // down to pre-release. premajor and prepatch work the same way.
430
- SemVer.prototype.inc = function (release, identifier) {
431
- switch (release) {
432
- case 'premajor':
433
- this.prerelease.length = 0
434
- this.patch = 0
435
- this.minor = 0
436
- this.major++
437
- this.inc('pre', identifier)
438
- break
439
- case 'preminor':
440
- this.prerelease.length = 0
441
- this.patch = 0
442
- this.minor++
443
- this.inc('pre', identifier)
444
- break
445
- case 'prepatch':
446
- // If this is already a prerelease, it will bump to the next version
447
- // drop any prereleases that might already exist, since they are not
448
- // relevant at this point.
449
- this.prerelease.length = 0
450
- this.inc('patch', identifier)
451
- this.inc('pre', identifier)
452
- break
453
- // If the input is a non-prerelease version, this acts the same as
454
- // prepatch.
455
- case 'prerelease':
456
- if (this.prerelease.length === 0) {
457
- this.inc('patch', identifier)
458
- }
459
- this.inc('pre', identifier)
460
- break
461
-
462
- case 'major':
463
- // If this is a pre-major version, bump up to the same major version.
464
- // Otherwise increment major.
465
- // 1.0.0-5 bumps to 1.0.0
466
- // 1.1.0 bumps to 2.0.0
467
- if (this.minor !== 0 ||
468
- this.patch !== 0 ||
469
- this.prerelease.length === 0) {
470
- this.major++
471
- }
472
- this.minor = 0
473
- this.patch = 0
474
- this.prerelease = []
475
- break
476
- case 'minor':
477
- // If this is a pre-minor version, bump up to the same minor version.
478
- // Otherwise increment minor.
479
- // 1.2.0-5 bumps to 1.2.0
480
- // 1.2.1 bumps to 1.3.0
481
- if (this.patch !== 0 || this.prerelease.length === 0) {
482
- this.minor++
483
- }
484
- this.patch = 0
485
- this.prerelease = []
486
- break
487
- case 'patch':
488
- // If this is not a pre-release version, it will increment the patch.
489
- // If it is a pre-release it will bump up to the same patch version.
490
- // 1.2.0-5 patches to 1.2.0
491
- // 1.2.0 patches to 1.2.1
492
- if (this.prerelease.length === 0) {
493
- this.patch++
494
- }
495
- this.prerelease = []
496
- break
497
- // This probably shouldn't be used publicly.
498
- // 1.0.0 "pre" would become 1.0.0-0 which is the wrong direction.
499
- case 'pre':
500
- if (this.prerelease.length === 0) {
501
- this.prerelease = [0]
502
- } else {
503
- var i = this.prerelease.length
504
- while (--i >= 0) {
505
- if (typeof this.prerelease[i] === 'number') {
506
- this.prerelease[i]++
507
- i = -2
508
- }
509
- }
510
- if (i === -1) {
511
- // didn't increment anything
512
- this.prerelease.push(0)
513
- }
514
- }
515
- if (identifier) {
516
- // 1.2.0-beta.1 bumps to 1.2.0-beta.2,
517
- // 1.2.0-beta.fooblz or 1.2.0-beta bumps to 1.2.0-beta.0
518
- if (this.prerelease[0] === identifier) {
519
- if (isNaN(this.prerelease[1])) {
520
- this.prerelease = [identifier, 0]
521
- }
522
- } else {
523
- this.prerelease = [identifier, 0]
524
- }
525
- }
526
- break
527
-
528
- default:
529
- throw new Error('invalid increment argument: ' + release)
530
- }
531
- this.format()
532
- this.raw = this.version
533
- return this
534
- }
535
-
536
- exports.inc = inc
537
- function inc (version, release, loose, identifier) {
538
- if (typeof (loose) === 'string') {
539
- identifier = loose
540
- loose = undefined
541
- }
542
-
543
- try {
544
- return new SemVer(version, loose).inc(release, identifier).version
545
- } catch (er) {
546
- return null
547
- }
548
- }
549
-
550
- exports.diff = diff
551
- function diff (version1, version2) {
552
- if (eq(version1, version2)) {
553
- return null
554
- } else {
555
- var v1 = parse(version1)
556
- var v2 = parse(version2)
557
- var prefix = ''
558
- if (v1.prerelease.length || v2.prerelease.length) {
559
- prefix = 'pre'
560
- var defaultResult = 'prerelease'
561
- }
562
- for (var key in v1) {
563
- if (key === 'major' || key === 'minor' || key === 'patch') {
564
- if (v1[key] !== v2[key]) {
565
- return prefix + key
566
- }
567
- }
568
- }
569
- return defaultResult // may be undefined
570
- }
571
- }
572
-
573
- exports.compareIdentifiers = compareIdentifiers
574
-
575
- var numeric = /^[0-9]+$/
576
- function compareIdentifiers (a, b) {
577
- var anum = numeric.test(a)
578
- var bnum = numeric.test(b)
579
-
580
- if (anum && bnum) {
581
- a = +a
582
- b = +b
583
- }
584
-
585
- return a === b ? 0
586
- : (anum && !bnum) ? -1
587
- : (bnum && !anum) ? 1
588
- : a < b ? -1
589
- : 1
590
- }
591
-
592
- exports.rcompareIdentifiers = rcompareIdentifiers
593
- function rcompareIdentifiers (a, b) {
594
- return compareIdentifiers(b, a)
595
- }
596
-
597
- exports.major = major
598
- function major (a, loose) {
599
- return new SemVer(a, loose).major
600
- }
601
-
602
- exports.minor = minor
603
- function minor (a, loose) {
604
- return new SemVer(a, loose).minor
605
- }
606
-
607
- exports.patch = patch
608
- function patch (a, loose) {
609
- return new SemVer(a, loose).patch
610
- }
611
-
612
- exports.compare = compare
613
- function compare (a, b, loose) {
614
- return new SemVer(a, loose).compare(new SemVer(b, loose))
615
- }
616
-
617
- exports.compareLoose = compareLoose
618
- function compareLoose (a, b) {
619
- return compare(a, b, true)
620
- }
621
-
622
- exports.rcompare = rcompare
623
- function rcompare (a, b, loose) {
624
- return compare(b, a, loose)
625
- }
626
-
627
- exports.sort = sort
628
- function sort (list, loose) {
629
- return list.sort(function (a, b) {
630
- return exports.compare(a, b, loose)
631
- })
632
- }
633
-
634
- exports.rsort = rsort
635
- function rsort (list, loose) {
636
- return list.sort(function (a, b) {
637
- return exports.rcompare(a, b, loose)
638
- })
639
- }
640
-
641
- exports.gt = gt
642
- function gt (a, b, loose) {
643
- return compare(a, b, loose) > 0
644
- }
645
-
646
- exports.lt = lt
647
- function lt (a, b, loose) {
648
- return compare(a, b, loose) < 0
649
- }
650
-
651
- exports.eq = eq
652
- function eq (a, b, loose) {
653
- return compare(a, b, loose) === 0
654
- }
655
-
656
- exports.neq = neq
657
- function neq (a, b, loose) {
658
- return compare(a, b, loose) !== 0
659
- }
660
-
661
- exports.gte = gte
662
- function gte (a, b, loose) {
663
- return compare(a, b, loose) >= 0
664
- }
665
-
666
- exports.lte = lte
667
- function lte (a, b, loose) {
668
- return compare(a, b, loose) <= 0
669
- }
670
-
671
- exports.cmp = cmp
672
- function cmp (a, op, b, loose) {
673
- switch (op) {
674
- case '===':
675
- if (typeof a === 'object')
676
- a = a.version
677
- if (typeof b === 'object')
678
- b = b.version
679
- return a === b
680
-
681
- case '!==':
682
- if (typeof a === 'object')
683
- a = a.version
684
- if (typeof b === 'object')
685
- b = b.version
686
- return a !== b
687
-
688
- case '':
689
- case '=':
690
- case '==':
691
- return eq(a, b, loose)
692
-
693
- case '!=':
694
- return neq(a, b, loose)
695
-
696
- case '>':
697
- return gt(a, b, loose)
698
-
699
- case '>=':
700
- return gte(a, b, loose)
701
-
702
- case '<':
703
- return lt(a, b, loose)
704
-
705
- case '<=':
706
- return lte(a, b, loose)
707
-
708
- default:
709
- throw new TypeError('Invalid operator: ' + op)
710
- }
711
- }
712
-
713
- exports.Comparator = Comparator
714
- function Comparator (comp, options) {
715
- if (!options || typeof options !== 'object') {
716
- options = {
717
- loose: !!options,
718
- includePrerelease: false
719
- }
720
- }
721
-
722
- if (comp instanceof Comparator) {
723
- if (comp.loose === !!options.loose) {
724
- return comp
725
- } else {
726
- comp = comp.value
727
- }
728
- }
729
-
730
- if (!(this instanceof Comparator)) {
731
- return new Comparator(comp, options)
732
- }
733
-
734
- debug('comparator', comp, options)
735
- this.options = options
736
- this.loose = !!options.loose
737
- this.parse(comp)
738
-
739
- if (this.semver === ANY) {
740
- this.value = ''
741
- } else {
742
- this.value = this.operator + this.semver.version
743
- }
744
-
745
- debug('comp', this)
746
- }
747
-
748
- var ANY = {}
749
- Comparator.prototype.parse = function (comp) {
750
- var r = this.options.loose ? re[COMPARATORLOOSE] : re[COMPARATOR]
751
- var m = comp.match(r)
752
-
753
- if (!m) {
754
- throw new TypeError('Invalid comparator: ' + comp)
755
- }
756
-
757
- this.operator = m[1]
758
- if (this.operator === '=') {
759
- this.operator = ''
760
- }
761
-
762
- // if it literally is just '>' or '' then allow anything.
763
- if (!m[2]) {
764
- this.semver = ANY
765
- } else {
766
- this.semver = new SemVer(m[2], this.options.loose)
767
- }
768
- }
769
-
770
- Comparator.prototype.toString = function () {
771
- return this.value
772
- }
773
-
774
- Comparator.prototype.test = function (version) {
775
- debug('Comparator.test', version, this.options.loose)
776
-
777
- if (this.semver === ANY) {
778
- return true
779
- }
780
-
781
- if (typeof version === 'string') {
782
- version = new SemVer(version, this.options)
783
- }
784
-
785
- return cmp(version, this.operator, this.semver, this.options)
786
- }
787
-
788
- Comparator.prototype.intersects = function (comp, options) {
789
- if (!(comp instanceof Comparator)) {
790
- throw new TypeError('a Comparator is required')
791
- }
792
-
793
- if (!options || typeof options !== 'object') {
794
- options = {
795
- loose: !!options,
796
- includePrerelease: false
797
- }
798
- }
799
-
800
- var rangeTmp
801
-
802
- if (this.operator === '') {
803
- rangeTmp = new Range(comp.value, options)
804
- return satisfies(this.value, rangeTmp, options)
805
- } else if (comp.operator === '') {
806
- rangeTmp = new Range(this.value, options)
807
- return satisfies(comp.semver, rangeTmp, options)
808
- }
809
-
810
- var sameDirectionIncreasing =
811
- (this.operator === '>=' || this.operator === '>') &&
812
- (comp.operator === '>=' || comp.operator === '>')
813
- var sameDirectionDecreasing =
814
- (this.operator === '<=' || this.operator === '<') &&
815
- (comp.operator === '<=' || comp.operator === '<')
816
- var sameSemVer = this.semver.version === comp.semver.version
817
- var differentDirectionsInclusive =
818
- (this.operator === '>=' || this.operator === '<=') &&
819
- (comp.operator === '>=' || comp.operator === '<=')
820
- var oppositeDirectionsLessThan =
821
- cmp(this.semver, '<', comp.semver, options) &&
822
- ((this.operator === '>=' || this.operator === '>') &&
823
- (comp.operator === '<=' || comp.operator === '<'))
824
- var oppositeDirectionsGreaterThan =
825
- cmp(this.semver, '>', comp.semver, options) &&
826
- ((this.operator === '<=' || this.operator === '<') &&
827
- (comp.operator === '>=' || comp.operator === '>'))
828
-
829
- return sameDirectionIncreasing || sameDirectionDecreasing ||
830
- (sameSemVer && differentDirectionsInclusive) ||
831
- oppositeDirectionsLessThan || oppositeDirectionsGreaterThan
832
- }
833
-
834
- exports.Range = Range
835
- function Range (range, options) {
836
- if (!options || typeof options !== 'object') {
837
- options = {
838
- loose: !!options,
839
- includePrerelease: false
840
- }
841
- }
842
-
843
- if (range instanceof Range) {
844
- if (range.loose === !!options.loose &&
845
- range.includePrerelease === !!options.includePrerelease) {
846
- return range
847
- } else {
848
- return new Range(range.raw, options)
849
- }
850
- }
851
-
852
- if (range instanceof Comparator) {
853
- return new Range(range.value, options)
854
- }
855
-
856
- if (!(this instanceof Range)) {
857
- return new Range(range, options)
858
- }
859
-
860
- this.options = options
861
- this.loose = !!options.loose
862
- this.includePrerelease = !!options.includePrerelease
863
-
864
- // First, split based on boolean or ||
865
- this.raw = range
866
- this.set = range.split(/\s*\|\|\s*/).map(function (range) {
867
- return this.parseRange(range.trim())
868
- }, this).filter(function (c) {
869
- // throw out any that are not relevant for whatever reason
870
- return c.length
871
- })
872
-
873
- if (!this.set.length) {
874
- throw new TypeError('Invalid SemVer Range: ' + range)
875
- }
876
-
877
- this.format()
878
- }
879
-
880
- Range.prototype.format = function () {
881
- this.range = this.set.map(function (comps) {
882
- return comps.join(' ').trim()
883
- }).join('||').trim()
884
- return this.range
885
- }
886
-
887
- Range.prototype.toString = function () {
888
- return this.range
889
- }
890
-
891
- Range.prototype.parseRange = function (range) {
892
- var loose = this.options.loose
893
- range = range.trim()
894
- // `1.2.3 - 1.2.4` => `>=1.2.3 <=1.2.4`
895
- var hr = loose ? re[HYPHENRANGELOOSE] : re[HYPHENRANGE]
896
- range = range.replace(hr, hyphenReplace)
897
- debug('hyphen replace', range)
898
- // `> 1.2.3 < 1.2.5` => `>1.2.3 <1.2.5`
899
- range = range.replace(re[COMPARATORTRIM], comparatorTrimReplace)
900
- debug('comparator trim', range, re[COMPARATORTRIM])
901
-
902
- // `~ 1.2.3` => `~1.2.3`
903
- range = range.replace(re[TILDETRIM], tildeTrimReplace)
904
-
905
- // `^ 1.2.3` => `^1.2.3`
906
- range = range.replace(re[CARETTRIM], caretTrimReplace)
907
-
908
- // normalize spaces
909
- range = range.split(/\s+/).join(' ')
910
-
911
- // At this point, the range is completely trimmed and
912
- // ready to be split into comparators.
913
-
914
- var compRe = loose ? re[COMPARATORLOOSE] : re[COMPARATOR]
915
- var set = range.split(' ').map(function (comp) {
916
- return parseComparator(comp, this.options)
917
- }, this).join(' ').split(/\s+/)
918
- if (this.options.loose) {
919
- // in loose mode, throw out any that are not valid comparators
920
- set = set.filter(function (comp) {
921
- return !!comp.match(compRe)
922
- })
923
- }
924
- set = set.map(function (comp) {
925
- return new Comparator(comp, this.options)
926
- }, this)
927
-
928
- return set
929
- }
930
-
931
- Range.prototype.intersects = function (range, options) {
932
- if (!(range instanceof Range)) {
933
- throw new TypeError('a Range is required')
934
- }
935
-
936
- return this.set.some(function (thisComparators) {
937
- return thisComparators.every(function (thisComparator) {
938
- return range.set.some(function (rangeComparators) {
939
- return rangeComparators.every(function (rangeComparator) {
940
- return thisComparator.intersects(rangeComparator, options)
941
- })
942
- })
943
- })
944
- })
945
- }
946
-
947
- // Mostly just for testing and legacy API reasons
948
- exports.toComparators = toComparators
949
- function toComparators (range, options) {
950
- return new Range(range, options).set.map(function (comp) {
951
- return comp.map(function (c) {
952
- return c.value
953
- }).join(' ').trim().split(' ')
954
- })
955
- }
956
-
957
- // comprised of xranges, tildes, stars, and gtlt's at this point.
958
- // already replaced the hyphen ranges
959
- // turn into a set of JUST comparators.
960
- function parseComparator (comp, options) {
961
- debug('comp', comp, options)
962
- comp = replaceCarets(comp, options)
963
- debug('caret', comp)
964
- comp = replaceTildes(comp, options)
965
- debug('tildes', comp)
966
- comp = replaceXRanges(comp, options)
967
- debug('xrange', comp)
968
- comp = replaceStars(comp, options)
969
- debug('stars', comp)
970
- return comp
971
- }
972
-
973
- function isX (id) {
974
- return !id || id.toLowerCase() === 'x' || id === '*'
975
- }
976
-
977
- // ~, ~> --> * (any, kinda silly)
978
- // ~2, ~2.x, ~2.x.x, ~>2, ~>2.x ~>2.x.x --> >=2.0.0 <3.0.0
979
- // ~2.0, ~2.0.x, ~>2.0, ~>2.0.x --> >=2.0.0 <2.1.0
980
- // ~1.2, ~1.2.x, ~>1.2, ~>1.2.x --> >=1.2.0 <1.3.0
981
- // ~1.2.3, ~>1.2.3 --> >=1.2.3 <1.3.0
982
- // ~1.2.0, ~>1.2.0 --> >=1.2.0 <1.3.0
983
- function replaceTildes (comp, options) {
984
- return comp.trim().split(/\s+/).map(function (comp) {
985
- return replaceTilde(comp, options)
986
- }).join(' ')
987
- }
988
-
989
- function replaceTilde (comp, options) {
990
- var r = options.loose ? re[TILDELOOSE] : re[TILDE]
991
- return comp.replace(r, function (_, M, m, p, pr) {
992
- debug('tilde', comp, _, M, m, p, pr)
993
- var ret
994
-
995
- if (isX(M)) {
996
- ret = ''
997
- } else if (isX(m)) {
998
- ret = '>=' + M + '.0.0 <' + (+M + 1) + '.0.0'
999
- } else if (isX(p)) {
1000
- // ~1.2 == >=1.2.0 <1.3.0
1001
- ret = '>=' + M + '.' + m + '.0 <' + M + '.' + (+m + 1) + '.0'
1002
- } else if (pr) {
1003
- debug('replaceTilde pr', pr)
1004
- ret = '>=' + M + '.' + m + '.' + p + '-' + pr +
1005
- ' <' + M + '.' + (+m + 1) + '.0'
1006
- } else {
1007
- // ~1.2.3 == >=1.2.3 <1.3.0
1008
- ret = '>=' + M + '.' + m + '.' + p +
1009
- ' <' + M + '.' + (+m + 1) + '.0'
1010
- }
1011
-
1012
- debug('tilde return', ret)
1013
- return ret
1014
- })
1015
- }
1016
-
1017
- // ^ --> * (any, kinda silly)
1018
- // ^2, ^2.x, ^2.x.x --> >=2.0.0 <3.0.0
1019
- // ^2.0, ^2.0.x --> >=2.0.0 <3.0.0
1020
- // ^1.2, ^1.2.x --> >=1.2.0 <2.0.0
1021
- // ^1.2.3 --> >=1.2.3 <2.0.0
1022
- // ^1.2.0 --> >=1.2.0 <2.0.0
1023
- function replaceCarets (comp, options) {
1024
- return comp.trim().split(/\s+/).map(function (comp) {
1025
- return replaceCaret(comp, options)
1026
- }).join(' ')
1027
- }
1028
-
1029
- function replaceCaret (comp, options) {
1030
- debug('caret', comp, options)
1031
- var r = options.loose ? re[CARETLOOSE] : re[CARET]
1032
- return comp.replace(r, function (_, M, m, p, pr) {
1033
- debug('caret', comp, _, M, m, p, pr)
1034
- var ret
1035
-
1036
- if (isX(M)) {
1037
- ret = ''
1038
- } else if (isX(m)) {
1039
- ret = '>=' + M + '.0.0 <' + (+M + 1) + '.0.0'
1040
- } else if (isX(p)) {
1041
- if (M === '0') {
1042
- ret = '>=' + M + '.' + m + '.0 <' + M + '.' + (+m + 1) + '.0'
1043
- } else {
1044
- ret = '>=' + M + '.' + m + '.0 <' + (+M + 1) + '.0.0'
1045
- }
1046
- } else if (pr) {
1047
- debug('replaceCaret pr', pr)
1048
- if (M === '0') {
1049
- if (m === '0') {
1050
- ret = '>=' + M + '.' + m + '.' + p + '-' + pr +
1051
- ' <' + M + '.' + m + '.' + (+p + 1)
1052
- } else {
1053
- ret = '>=' + M + '.' + m + '.' + p + '-' + pr +
1054
- ' <' + M + '.' + (+m + 1) + '.0'
1055
- }
1056
- } else {
1057
- ret = '>=' + M + '.' + m + '.' + p + '-' + pr +
1058
- ' <' + (+M + 1) + '.0.0'
1059
- }
1060
- } else {
1061
- debug('no pr')
1062
- if (M === '0') {
1063
- if (m === '0') {
1064
- ret = '>=' + M + '.' + m + '.' + p +
1065
- ' <' + M + '.' + m + '.' + (+p + 1)
1066
- } else {
1067
- ret = '>=' + M + '.' + m + '.' + p +
1068
- ' <' + M + '.' + (+m + 1) + '.0'
1069
- }
1070
- } else {
1071
- ret = '>=' + M + '.' + m + '.' + p +
1072
- ' <' + (+M + 1) + '.0.0'
1073
- }
1074
- }
1075
-
1076
- debug('caret return', ret)
1077
- return ret
1078
- })
1079
- }
1080
-
1081
- function replaceXRanges (comp, options) {
1082
- debug('replaceXRanges', comp, options)
1083
- return comp.split(/\s+/).map(function (comp) {
1084
- return replaceXRange(comp, options)
1085
- }).join(' ')
1086
- }
1087
-
1088
- function replaceXRange (comp, options) {
1089
- comp = comp.trim()
1090
- var r = options.loose ? re[XRANGELOOSE] : re[XRANGE]
1091
- return comp.replace(r, function (ret, gtlt, M, m, p, pr) {
1092
- debug('xRange', comp, ret, gtlt, M, m, p, pr)
1093
- var xM = isX(M)
1094
- var xm = xM || isX(m)
1095
- var xp = xm || isX(p)
1096
- var anyX = xp
1097
-
1098
- if (gtlt === '=' && anyX) {
1099
- gtlt = ''
1100
- }
1101
-
1102
- if (xM) {
1103
- if (gtlt === '>' || gtlt === '<') {
1104
- // nothing is allowed
1105
- ret = '<0.0.0'
1106
- } else {
1107
- // nothing is forbidden
1108
- ret = '*'
1109
- }
1110
- } else if (gtlt && anyX) {
1111
- // we know patch is an x, because we have any x at all.
1112
- // replace X with 0
1113
- if (xm) {
1114
- m = 0
1115
- }
1116
- p = 0
1117
-
1118
- if (gtlt === '>') {
1119
- // >1 => >=2.0.0
1120
- // >1.2 => >=1.3.0
1121
- // >1.2.3 => >= 1.2.4
1122
- gtlt = '>='
1123
- if (xm) {
1124
- M = +M + 1
1125
- m = 0
1126
- p = 0
1127
- } else {
1128
- m = +m + 1
1129
- p = 0
1130
- }
1131
- } else if (gtlt === '<=') {
1132
- // <=0.7.x is actually <0.8.0, since any 0.7.x should
1133
- // pass. Similarly, <=7.x is actually <8.0.0, etc.
1134
- gtlt = '<'
1135
- if (xm) {
1136
- M = +M + 1
1137
- } else {
1138
- m = +m + 1
1139
- }
1140
- }
1141
-
1142
- ret = gtlt + M + '.' + m + '.' + p
1143
- } else if (xm) {
1144
- ret = '>=' + M + '.0.0 <' + (+M + 1) + '.0.0'
1145
- } else if (xp) {
1146
- ret = '>=' + M + '.' + m + '.0 <' + M + '.' + (+m + 1) + '.0'
1147
- }
1148
-
1149
- debug('xRange return', ret)
1150
-
1151
- return ret
1152
- })
1153
- }
1154
-
1155
- // Because * is AND-ed with everything else in the comparator,
1156
- // and '' means "any version", just remove the *s entirely.
1157
- function replaceStars (comp, options) {
1158
- debug('replaceStars', comp, options)
1159
- // Looseness is ignored here. star is always as loose as it gets!
1160
- return comp.trim().replace(re[STAR], '')
1161
- }
1162
-
1163
- // This function is passed to string.replace(re[HYPHENRANGE])
1164
- // M, m, patch, prerelease, build
1165
- // 1.2 - 3.4.5 => >=1.2.0 <=3.4.5
1166
- // 1.2.3 - 3.4 => >=1.2.0 <3.5.0 Any 3.4.x will do
1167
- // 1.2 - 3.4 => >=1.2.0 <3.5.0
1168
- function hyphenReplace ($0,
1169
- from, fM, fm, fp, fpr, fb,
1170
- to, tM, tm, tp, tpr, tb) {
1171
- if (isX(fM)) {
1172
- from = ''
1173
- } else if (isX(fm)) {
1174
- from = '>=' + fM + '.0.0'
1175
- } else if (isX(fp)) {
1176
- from = '>=' + fM + '.' + fm + '.0'
1177
- } else {
1178
- from = '>=' + from
1179
- }
1180
-
1181
- if (isX(tM)) {
1182
- to = ''
1183
- } else if (isX(tm)) {
1184
- to = '<' + (+tM + 1) + '.0.0'
1185
- } else if (isX(tp)) {
1186
- to = '<' + tM + '.' + (+tm + 1) + '.0'
1187
- } else if (tpr) {
1188
- to = '<=' + tM + '.' + tm + '.' + tp + '-' + tpr
1189
- } else {
1190
- to = '<=' + to
1191
- }
1192
-
1193
- return (from + ' ' + to).trim()
1194
- }
1195
-
1196
- // if ANY of the sets match ALL of its comparators, then pass
1197
- Range.prototype.test = function (version) {
1198
- if (!version) {
1199
- return false
1200
- }
1201
-
1202
- if (typeof version === 'string') {
1203
- version = new SemVer(version, this.options)
1204
- }
1205
-
1206
- for (var i = 0; i < this.set.length; i++) {
1207
- if (testSet(this.set[i], version, this.options)) {
1208
- return true
1209
- }
1210
- }
1211
- return false
1212
- }
1213
-
1214
- function testSet (set, version, options) {
1215
- for (var i = 0; i < set.length; i++) {
1216
- if (!set[i].test(version)) {
1217
- return false
1218
- }
1219
- }
1220
-
1221
- if (version.prerelease.length && !options.includePrerelease) {
1222
- // Find the set of versions that are allowed to have prereleases
1223
- // For example, ^1.2.3-pr.1 desugars to >=1.2.3-pr.1 <2.0.0
1224
- // That should allow `1.2.3-pr.2` to pass.
1225
- // However, `1.2.4-alpha.notready` should NOT be allowed,
1226
- // even though it's within the range set by the comparators.
1227
- for (i = 0; i < set.length; i++) {
1228
- debug(set[i].semver)
1229
- if (set[i].semver === ANY) {
1230
- continue
1231
- }
1232
-
1233
- if (set[i].semver.prerelease.length > 0) {
1234
- var allowed = set[i].semver
1235
- if (allowed.major === version.major &&
1236
- allowed.minor === version.minor &&
1237
- allowed.patch === version.patch) {
1238
- return true
1239
- }
1240
- }
1241
- }
1242
-
1243
- // Version has a -pre, but it's not one of the ones we like.
1244
- return false
1245
- }
1246
-
1247
- return true
1248
- }
1249
-
1250
- exports.satisfies = satisfies
1251
- function satisfies (version, range, options) {
1252
- try {
1253
- range = new Range(range, options)
1254
- } catch (er) {
1255
- return false
1256
- }
1257
- return range.test(version)
1258
- }
1259
-
1260
- exports.maxSatisfying = maxSatisfying
1261
- function maxSatisfying (versions, range, options) {
1262
- var max = null
1263
- var maxSV = null
1264
- try {
1265
- var rangeObj = new Range(range, options)
1266
- } catch (er) {
1267
- return null
1268
- }
1269
- versions.forEach(function (v) {
1270
- if (rangeObj.test(v)) {
1271
- // satisfies(v, range, options)
1272
- if (!max || maxSV.compare(v) === -1) {
1273
- // compare(max, v, true)
1274
- max = v
1275
- maxSV = new SemVer(max, options)
1276
- }
1277
- }
1278
- })
1279
- return max
1280
- }
1281
-
1282
- exports.minSatisfying = minSatisfying
1283
- function minSatisfying (versions, range, options) {
1284
- var min = null
1285
- var minSV = null
1286
- try {
1287
- var rangeObj = new Range(range, options)
1288
- } catch (er) {
1289
- return null
1290
- }
1291
- versions.forEach(function (v) {
1292
- if (rangeObj.test(v)) {
1293
- // satisfies(v, range, options)
1294
- if (!min || minSV.compare(v) === 1) {
1295
- // compare(min, v, true)
1296
- min = v
1297
- minSV = new SemVer(min, options)
1298
- }
1299
- }
1300
- })
1301
- return min
1302
- }
1303
-
1304
- exports.minVersion = minVersion
1305
- function minVersion (range, loose) {
1306
- range = new Range(range, loose)
1307
-
1308
- var minver = new SemVer('0.0.0')
1309
- if (range.test(minver)) {
1310
- return minver
1311
- }
1312
-
1313
- minver = new SemVer('0.0.0-0')
1314
- if (range.test(minver)) {
1315
- return minver
1316
- }
1317
-
1318
- minver = null
1319
- for (var i = 0; i < range.set.length; ++i) {
1320
- var comparators = range.set[i]
1321
-
1322
- comparators.forEach(function (comparator) {
1323
- // Clone to avoid manipulating the comparator's semver object.
1324
- var compver = new SemVer(comparator.semver.version)
1325
- switch (comparator.operator) {
1326
- case '>':
1327
- if (compver.prerelease.length === 0) {
1328
- compver.patch++
1329
- } else {
1330
- compver.prerelease.push(0)
1331
- }
1332
- compver.raw = compver.format()
1333
- /* fallthrough */
1334
- case '':
1335
- case '>=':
1336
- if (!minver || gt(minver, compver)) {
1337
- minver = compver
1338
- }
1339
- break
1340
- case '<':
1341
- case '<=':
1342
- /* Ignore maximum versions */
1343
- break
1344
- /* istanbul ignore next */
1345
- default:
1346
- throw new Error('Unexpected operation: ' + comparator.operator)
1347
- }
1348
- })
1349
- }
1350
-
1351
- if (minver && range.test(minver)) {
1352
- return minver
1353
- }
1354
-
1355
- return null
1356
- }
1357
-
1358
- exports.validRange = validRange
1359
- function validRange (range, options) {
1360
- try {
1361
- // Return '*' instead of '' so that truthiness works.
1362
- // This will throw if it's invalid anyway
1363
- return new Range(range, options).range || '*'
1364
- } catch (er) {
1365
- return null
1366
- }
1367
- }
1368
-
1369
- // Determine if version is less than all the versions possible in the range
1370
- exports.ltr = ltr
1371
- function ltr (version, range, options) {
1372
- return outside(version, range, '<', options)
1373
- }
1374
-
1375
- // Determine if version is greater than all the versions possible in the range.
1376
- exports.gtr = gtr
1377
- function gtr (version, range, options) {
1378
- return outside(version, range, '>', options)
1379
- }
1380
-
1381
- exports.outside = outside
1382
- function outside (version, range, hilo, options) {
1383
- version = new SemVer(version, options)
1384
- range = new Range(range, options)
1385
-
1386
- var gtfn, ltefn, ltfn, comp, ecomp
1387
- switch (hilo) {
1388
- case '>':
1389
- gtfn = gt
1390
- ltefn = lte
1391
- ltfn = lt
1392
- comp = '>'
1393
- ecomp = '>='
1394
- break
1395
- case '<':
1396
- gtfn = lt
1397
- ltefn = gte
1398
- ltfn = gt
1399
- comp = '<'
1400
- ecomp = '<='
1401
- break
1402
- default:
1403
- throw new TypeError('Must provide a hilo val of "<" or ">"')
1404
- }
1405
-
1406
- // If it satisifes the range it is not outside
1407
- if (satisfies(version, range, options)) {
1408
- return false
1409
- }
1410
-
1411
- // From now on, variable terms are as if we're in "gtr" mode.
1412
- // but note that everything is flipped for the "ltr" function.
1413
-
1414
- for (var i = 0; i < range.set.length; ++i) {
1415
- var comparators = range.set[i]
1416
-
1417
- var high = null
1418
- var low = null
1419
-
1420
- comparators.forEach(function (comparator) {
1421
- if (comparator.semver === ANY) {
1422
- comparator = new Comparator('>=0.0.0')
1423
- }
1424
- high = high || comparator
1425
- low = low || comparator
1426
- if (gtfn(comparator.semver, high.semver, options)) {
1427
- high = comparator
1428
- } else if (ltfn(comparator.semver, low.semver, options)) {
1429
- low = comparator
1430
- }
1431
- })
1432
-
1433
- // If the edge version comparator has a operator then our version
1434
- // isn't outside it
1435
- if (high.operator === comp || high.operator === ecomp) {
1436
- return false
1437
- }
1438
-
1439
- // If the lowest version comparator has an operator and our version
1440
- // is less than it then it isn't higher than the range
1441
- if ((!low.operator || low.operator === comp) &&
1442
- ltefn(version, low.semver)) {
1443
- return false
1444
- } else if (low.operator === ecomp && ltfn(version, low.semver)) {
1445
- return false
1446
- }
1447
- }
1448
- return true
1449
- }
1450
-
1451
- exports.prerelease = prerelease
1452
- function prerelease (version, options) {
1453
- var parsed = parse(version, options)
1454
- return (parsed && parsed.prerelease.length) ? parsed.prerelease : null
1455
- }
1456
-
1457
- exports.intersects = intersects
1458
- function intersects (r1, r2, options) {
1459
- r1 = new Range(r1, options)
1460
- r2 = new Range(r2, options)
1461
- return r1.intersects(r2)
1462
- }
1463
-
1464
- exports.coerce = coerce
1465
- function coerce (version) {
1466
- if (version instanceof SemVer) {
1467
- return version
1468
- }
1469
-
1470
- if (typeof version !== 'string') {
1471
- return null
1472
- }
1473
-
1474
- var match = version.match(re[COERCE])
1475
-
1476
- if (match == null) {
1477
- return null
1478
- }
1479
-
1480
- return parse(match[1] +
1481
- '.' + (match[2] || '0') +
1482
- '.' + (match[3] || '0'))
1483
- }