Simple email application for Android. Original source code: https://framagit.org/dystopia-project/simple-email
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

354 lines
22 KiB

  1. <!doctype html>
  2. <html>
  3. <title>semver</title>
  4. <meta charset="utf-8">
  5. <link rel="stylesheet" type="text/css" href="../../static/style.css">
  6. <link rel="canonical" href="https://www.npmjs.org/doc/misc/semver.html">
  7. <script async=true src="../../static/toc.js"></script>
  8. <body>
  9. <div id="wrapper">
  10. <h1><a href="../misc/semver.html">semver</a></h1> <p>The semantic versioner for npm</p>
  11. <h2 id="install">Install</h2>
  12. <pre><code class="language-bash">npm install --save semver
  13. `</code></pre>
  14. <h2 id="usage">Usage</h2>
  15. <p>As a node module:</p>
  16. <pre><code class="language-js">const semver = require(&#39;semver&#39;)
  17. semver.valid(&#39;1.2.3&#39;) // &#39;1.2.3&#39;
  18. semver.valid(&#39;a.b.c&#39;) // null
  19. semver.clean(&#39; =v1.2.3 &#39;) // &#39;1.2.3&#39;
  20. semver.satisfies(&#39;1.2.3&#39;, &#39;1.x || &gt;=2.5.0 || 5.0.0 - 7.2.3&#39;) // true
  21. semver.gt(&#39;1.2.3&#39;, &#39;9.8.7&#39;) // false
  22. semver.lt(&#39;1.2.3&#39;, &#39;9.8.7&#39;) // true
  23. semver.valid(semver.coerce(&#39;v2&#39;)) // &#39;2.0.0&#39;
  24. semver.valid(semver.coerce(&#39;42.6.7.9.3-alpha&#39;)) // &#39;42.6.7&#39;</code></pre>
  25. <p>As a command-line utility:</p>
  26. <pre><code>$ semver -h
  27. SemVer 5.3.0
  28. A JavaScript implementation of the http://semver.org/ specification
  29. Copyright Isaac Z. Schlueter
  30. Usage: semver [options] &lt;version&gt; [&lt;version&gt; [...]]
  31. Prints valid versions sorted by SemVer precedence
  32. Options:
  33. -r --range &lt;range&gt;
  34. Print versions that match the specified range.
  35. -i --increment [&lt;level&gt;]
  36. Increment a version by the specified level. Level can
  37. be one of: major, minor, patch, premajor, preminor,
  38. prepatch, or prerelease. Default level is &#39;patch&#39;.
  39. Only one version may be specified.
  40. --preid &lt;identifier&gt;
  41. Identifier to be used to prefix premajor, preminor,
  42. prepatch or prerelease version increments.
  43. -l --loose
  44. Interpret versions and ranges loosely
  45. -c --coerce
  46. Coerce a string into SemVer if possible
  47. (does not imply --loose)
  48. Program exits successfully if any valid version satisfies
  49. all supplied ranges, and prints all satisfying versions.
  50. If no satisfying versions are found, then exits failure.
  51. Versions are printed in ascending order, so supplying
  52. multiple versions to the utility will just sort them.</code></pre><h2 id="versions">Versions</h2>
  53. <p>A &quot;version&quot; is described by the <code>v2.0.0</code> specification found at
  54. <a href="http://semver.org/">http://semver.org/</a>.</p>
  55. <p>A leading <code>&quot;=&quot;</code> or <code>&quot;v&quot;</code> character is stripped off and ignored.</p>
  56. <h2 id="ranges">Ranges</h2>
  57. <p>A <code>version range</code> is a set of <code>comparators</code> which specify versions
  58. that satisfy the range.</p>
  59. <p>A <code>comparator</code> is composed of an <code>operator</code> and a <code>version</code>. The set
  60. of primitive <code>operators</code> is:</p>
  61. <ul>
  62. <li><code>&lt;</code> Less than</li>
  63. <li><code>&lt;=</code> Less than or equal to</li>
  64. <li><code>&gt;</code> Greater than</li>
  65. <li><code>&gt;=</code> Greater than or equal to</li>
  66. <li><code>=</code> Equal. If no operator is specified, then equality is assumed,
  67. so this operator is optional, but MAY be included.</li>
  68. </ul>
  69. <p>For example, the comparator <code>&gt;=1.2.7</code> would match the versions
  70. <code>1.2.7</code>, <code>1.2.8</code>, <code>2.5.3</code>, and <code>1.3.9</code>, but not the versions <code>1.2.6</code>
  71. or <code>1.1.0</code>.</p>
  72. <p>Comparators can be joined by whitespace to form a <code>comparator set</code>,
  73. which is satisfied by the <strong>intersection</strong> of all of the comparators
  74. it includes.</p>
  75. <p>A range is composed of one or more comparator sets, joined by <code>||</code>. A
  76. version matches a range if and only if every comparator in at least
  77. one of the <code>||</code>-separated comparator sets is satisfied by the version.</p>
  78. <p>For example, the range <code>&gt;=1.2.7 &lt;1.3.0</code> would match the versions
  79. <code>1.2.7</code>, <code>1.2.8</code>, and <code>1.2.99</code>, but not the versions <code>1.2.6</code>, <code>1.3.0</code>,
  80. or <code>1.1.0</code>.</p>
  81. <p>The range <code>1.2.7 || &gt;=1.2.9 &lt;2.0.0</code> would match the versions <code>1.2.7</code>,
  82. <code>1.2.9</code>, and <code>1.4.6</code>, but not the versions <code>1.2.8</code> or <code>2.0.0</code>.</p>
  83. <h3 id="prerelease-tags">Prerelease Tags</h3>
  84. <p>If a version has a prerelease tag (for example, <code>1.2.3-alpha.3</code>) then
  85. it will only be allowed to satisfy comparator sets if at least one
  86. comparator with the same <code>[major, minor, patch]</code> tuple also has a
  87. prerelease tag.</p>
  88. <p>For example, the range <code>&gt;1.2.3-alpha.3</code> would be allowed to match the
  89. version <code>1.2.3-alpha.7</code>, but it would <em>not</em> be satisfied by
  90. <code>3.4.5-alpha.9</code>, even though <code>3.4.5-alpha.9</code> is technically &quot;greater
  91. than&quot; <code>1.2.3-alpha.3</code> according to the SemVer sort rules. The version
  92. range only accepts prerelease tags on the <code>1.2.3</code> version. The
  93. version <code>3.4.5</code> <em>would</em> satisfy the range, because it does not have a
  94. prerelease flag, and <code>3.4.5</code> is greater than <code>1.2.3-alpha.7</code>.</p>
  95. <p>The purpose for this behavior is twofold. First, prerelease versions
  96. frequently are updated very quickly, and contain many breaking changes
  97. that are (by the author&#39;s design) not yet fit for public consumption.
  98. Therefore, by default, they are excluded from range matching
  99. semantics.</p>
  100. <p>Second, a user who has opted into using a prerelease version has
  101. clearly indicated the intent to use <em>that specific</em> set of
  102. alpha/beta/rc versions. By including a prerelease tag in the range,
  103. the user is indicating that they are aware of the risk. However, it
  104. is still not appropriate to assume that they have opted into taking a
  105. similar risk on the <em>next</em> set of prerelease versions.</p>
  106. <h4 id="prerelease-identifiers">Prerelease Identifiers</h4>
  107. <p>The method <code>.inc</code> takes an additional <code>identifier</code> string argument that
  108. will append the value of the string as a prerelease identifier:</p>
  109. <pre><code class="language-javascript">semver.inc(&#39;1.2.3&#39;, &#39;prerelease&#39;, &#39;beta&#39;)
  110. // &#39;1.2.4-beta.0&#39;</code></pre>
  111. <p>command-line example:</p>
  112. <pre><code class="language-bash">$ semver 1.2.3 -i prerelease --preid beta
  113. 1.2.4-beta.0</code></pre>
  114. <p>Which then can be used to increment further:</p>
  115. <pre><code class="language-bash">$ semver 1.2.4-beta.0 -i prerelease
  116. 1.2.4-beta.1</code></pre>
  117. <h3 id="advanced-range-syntax">Advanced Range Syntax</h3>
  118. <p>Advanced range syntax desugars to primitive comparators in
  119. deterministic ways.</p>
  120. <p>Advanced ranges may be combined in the same way as primitive
  121. comparators using white space or <code>||</code>.</p>
  122. <h4 id="hyphen-ranges-x-y-z-a-b-c">Hyphen Ranges <code>X.Y.Z - A.B.C</code></h4>
  123. <p>Specifies an inclusive set.</p>
  124. <ul>
  125. <li><code>1.2.3 - 2.3.4</code> := <code>&gt;=1.2.3 &lt;=2.3.4</code></li>
  126. </ul>
  127. <p>If a partial version is provided as the first version in the inclusive
  128. range, then the missing pieces are replaced with zeroes.</p>
  129. <ul>
  130. <li><code>1.2 - 2.3.4</code> := <code>&gt;=1.2.0 &lt;=2.3.4</code></li>
  131. </ul>
  132. <p>If a partial version is provided as the second version in the
  133. inclusive range, then all versions that start with the supplied parts
  134. of the tuple are accepted, but nothing that would be greater than the
  135. provided tuple parts.</p>
  136. <ul>
  137. <li><code>1.2.3 - 2.3</code> := <code>&gt;=1.2.3 &lt;2.4.0</code></li>
  138. <li><code>1.2.3 - 2</code> := <code>&gt;=1.2.3 &lt;3.0.0</code></li>
  139. </ul>
  140. <h4 id="x-ranges-1-2-x-1-x-1-2-">X-Ranges <code>1.2.x</code> <code>1.X</code> <code>1.2.*</code> <code>*</code></h4>
  141. <p>Any of <code>X</code>, <code>x</code>, or <code>*</code> may be used to &quot;stand in&quot; for one of the
  142. numeric values in the <code>[major, minor, patch]</code> tuple.</p>
  143. <ul>
  144. <li><code>*</code> := <code>&gt;=0.0.0</code> (Any version satisfies)</li>
  145. <li><code>1.x</code> := <code>&gt;=1.0.0 &lt;2.0.0</code> (Matching major version)</li>
  146. <li><code>1.2.x</code> := <code>&gt;=1.2.0 &lt;1.3.0</code> (Matching major and minor versions)</li>
  147. </ul>
  148. <p>A partial version range is treated as an X-Range, so the special
  149. character is in fact optional.</p>
  150. <ul>
  151. <li><code>&quot;&quot;</code> (empty string) := <code>*</code> := <code>&gt;=0.0.0</code></li>
  152. <li><code>1</code> := <code>1.x.x</code> := <code>&gt;=1.0.0 &lt;2.0.0</code></li>
  153. <li><code>1.2</code> := <code>1.2.x</code> := <code>&gt;=1.2.0 &lt;1.3.0</code></li>
  154. </ul>
  155. <h4 id="tilde-ranges-1-2-3-1-2-1">Tilde Ranges <code>~1.2.3</code> <code>~1.2</code> <code>~1</code></h4>
  156. <p>Allows patch-level changes if a minor version is specified on the
  157. comparator. Allows minor-level changes if not.</p>
  158. <ul>
  159. <li><code>~1.2.3</code> := <code>&gt;=1.2.3 &lt;1.(2+1).0</code> := <code>&gt;=1.2.3 &lt;1.3.0</code></li>
  160. <li><code>~1.2</code> := <code>&gt;=1.2.0 &lt;1.(2+1).0</code> := <code>&gt;=1.2.0 &lt;1.3.0</code> (Same as <code>1.2.x</code>)</li>
  161. <li><code>~1</code> := <code>&gt;=1.0.0 &lt;(1+1).0.0</code> := <code>&gt;=1.0.0 &lt;2.0.0</code> (Same as <code>1.x</code>)</li>
  162. <li><code>~0.2.3</code> := <code>&gt;=0.2.3 &lt;0.(2+1).0</code> := <code>&gt;=0.2.3 &lt;0.3.0</code></li>
  163. <li><code>~0.2</code> := <code>&gt;=0.2.0 &lt;0.(2+1).0</code> := <code>&gt;=0.2.0 &lt;0.3.0</code> (Same as <code>0.2.x</code>)</li>
  164. <li><code>~0</code> := <code>&gt;=0.0.0 &lt;(0+1).0.0</code> := <code>&gt;=0.0.0 &lt;1.0.0</code> (Same as <code>0.x</code>)</li>
  165. <li><code>~1.2.3-beta.2</code> := <code>&gt;=1.2.3-beta.2 &lt;1.3.0</code> Note that prereleases in
  166. the <code>1.2.3</code> version will be allowed, if they are greater than or
  167. equal to <code>beta.2</code>. So, <code>1.2.3-beta.4</code> would be allowed, but
  168. <code>1.2.4-beta.2</code> would not, because it is a prerelease of a
  169. different <code>[major, minor, patch]</code> tuple.</li>
  170. </ul>
  171. <h4 id="caret-ranges-1-2-3-0-2-5-0-0-4">Caret Ranges <code>^1.2.3</code> <code>^0.2.5</code> <code>^0.0.4</code></h4>
  172. <p>Allows changes that do not modify the left-most non-zero digit in the
  173. <code>[major, minor, patch]</code> tuple. In other words, this allows patch and
  174. minor updates for versions <code>1.0.0</code> and above, patch updates for
  175. versions <code>0.X &gt;=0.1.0</code>, and <em>no</em> updates for versions <code>0.0.X</code>.</p>
  176. <p>Many authors treat a <code>0.x</code> version as if the <code>x</code> were the major
  177. &quot;breaking-change&quot; indicator.</p>
  178. <p>Caret ranges are ideal when an author may make breaking changes
  179. between <code>0.2.4</code> and <code>0.3.0</code> releases, which is a common practice.
  180. However, it presumes that there will <em>not</em> be breaking changes between
  181. <code>0.2.4</code> and <code>0.2.5</code>. It allows for changes that are presumed to be
  182. additive (but non-breaking), according to commonly observed practices.</p>
  183. <ul>
  184. <li><code>^1.2.3</code> := <code>&gt;=1.2.3 &lt;2.0.0</code></li>
  185. <li><code>^0.2.3</code> := <code>&gt;=0.2.3 &lt;0.3.0</code></li>
  186. <li><code>^0.0.3</code> := <code>&gt;=0.0.3 &lt;0.0.4</code></li>
  187. <li><code>^1.2.3-beta.2</code> := <code>&gt;=1.2.3-beta.2 &lt;2.0.0</code> Note that prereleases in
  188. the <code>1.2.3</code> version will be allowed, if they are greater than or
  189. equal to <code>beta.2</code>. So, <code>1.2.3-beta.4</code> would be allowed, but
  190. <code>1.2.4-beta.2</code> would not, because it is a prerelease of a
  191. different <code>[major, minor, patch]</code> tuple.</li>
  192. <li><code>^0.0.3-beta</code> := <code>&gt;=0.0.3-beta &lt;0.0.4</code> Note that prereleases in the
  193. <code>0.0.3</code> version <em>only</em> will be allowed, if they are greater than or
  194. equal to <code>beta</code>. So, <code>0.0.3-pr.2</code> would be allowed.</li>
  195. </ul>
  196. <p>When parsing caret ranges, a missing <code>patch</code> value desugars to the
  197. number <code>0</code>, but will allow flexibility within that value, even if the
  198. major and minor versions are both <code>0</code>.</p>
  199. <ul>
  200. <li><code>^1.2.x</code> := <code>&gt;=1.2.0 &lt;2.0.0</code></li>
  201. <li><code>^0.0.x</code> := <code>&gt;=0.0.0 &lt;0.1.0</code></li>
  202. <li><code>^0.0</code> := <code>&gt;=0.0.0 &lt;0.1.0</code></li>
  203. </ul>
  204. <p>A missing <code>minor</code> and <code>patch</code> values will desugar to zero, but also
  205. allow flexibility within those values, even if the major version is
  206. zero.</p>
  207. <ul>
  208. <li><code>^1.x</code> := <code>&gt;=1.0.0 &lt;2.0.0</code></li>
  209. <li><code>^0.x</code> := <code>&gt;=0.0.0 &lt;1.0.0</code></li>
  210. </ul>
  211. <h3 id="range-grammar">Range Grammar</h3>
  212. <p>Putting all this together, here is a Backus-Naur grammar for ranges,
  213. for the benefit of parser authors:</p>
  214. <pre><code class="language-bnf">range-set ::= range ( logical-or range ) *
  215. logical-or ::= ( &#39; &#39; ) * &#39;||&#39; ( &#39; &#39; ) *
  216. range ::= hyphen | simple ( &#39; &#39; simple ) * | &#39;&#39;
  217. hyphen ::= partial &#39; - &#39; partial
  218. simple ::= primitive | partial | tilde | caret
  219. primitive ::= ( &#39;&lt;&#39; | &#39;&gt;&#39; | &#39;&gt;=&#39; | &#39;&lt;=&#39; | &#39;=&#39; | ) partial
  220. partial ::= xr ( &#39;.&#39; xr ( &#39;.&#39; xr qualifier ? )? )?
  221. xr ::= &#39;x&#39; | &#39;X&#39; | &#39;*&#39; | nr
  222. nr ::= &#39;0&#39; | [&#39;1&#39;-&#39;9&#39;] ( [&#39;0&#39;-&#39;9&#39;] ) *
  223. tilde ::= &#39;~&#39; partial
  224. caret ::= &#39;^&#39; partial
  225. qualifier ::= ( &#39;-&#39; pre )? ( &#39;+&#39; build )?
  226. pre ::= parts
  227. build ::= parts
  228. parts ::= part ( &#39;.&#39; part ) *
  229. part ::= nr | [-0-9A-Za-z]+</code></pre>
  230. <h2 id="functions">Functions</h2>
  231. <p>All methods and classes take a final <code>loose</code> boolean argument that, if
  232. true, will be more forgiving about not-quite-valid semver strings.
  233. The resulting output will always be 100% strict, of course.</p>
  234. <p>Strict-mode Comparators and Ranges will be strict about the SemVer
  235. strings that they parse.</p>
  236. <ul>
  237. <li><code>valid(v)</code>: Return the parsed version, or null if it&#39;s not valid.</li>
  238. <li><code>inc(v, release)</code>: Return the version incremented by the release
  239. type (<code>major</code>, <code>premajor</code>, <code>minor</code>, <code>preminor</code>, <code>patch</code>,
  240. <code>prepatch</code>, or <code>prerelease</code>), or null if it&#39;s not valid<ul>
  241. <li><code>premajor</code> in one call will bump the version up to the next major
  242. version and down to a prerelease of that major version.
  243. <code>preminor</code>, and <code>prepatch</code> work the same way.</li>
  244. <li>If called from a non-prerelease version, the <code>prerelease</code> will work the
  245. same as <code>prepatch</code>. It increments the patch version, then makes a
  246. prerelease. If the input version is already a prerelease it simply
  247. increments it.</li>
  248. </ul>
  249. </li>
  250. <li><code>prerelease(v)</code>: Returns an array of prerelease components, or null
  251. if none exist. Example: <code>prerelease(&#39;1.2.3-alpha.1&#39;) -&gt; [&#39;alpha&#39;, 1]</code></li>
  252. <li><code>major(v)</code>: Return the major version number.</li>
  253. <li><code>minor(v)</code>: Return the minor version number.</li>
  254. <li><code>patch(v)</code>: Return the patch version number.</li>
  255. <li><code>intersects(r1, r2, loose)</code>: Return true if the two supplied ranges
  256. or comparators intersect.</li>
  257. </ul>
  258. <h3 id="comparison">Comparison</h3>
  259. <ul>
  260. <li><code>gt(v1, v2)</code>: <code>v1 &gt; v2</code></li>
  261. <li><code>gte(v1, v2)</code>: <code>v1 &gt;= v2</code></li>
  262. <li><code>lt(v1, v2)</code>: <code>v1 &lt; v2</code></li>
  263. <li><code>lte(v1, v2)</code>: <code>v1 &lt;= v2</code></li>
  264. <li><code>eq(v1, v2)</code>: <code>v1 == v2</code> This is true if they&#39;re logically equivalent,
  265. even if they&#39;re not the exact same string. You already know how to
  266. compare strings.</li>
  267. <li><code>neq(v1, v2)</code>: <code>v1 != v2</code> The opposite of <code>eq</code>.</li>
  268. <li><code>cmp(v1, comparator, v2)</code>: Pass in a comparison string, and it&#39;ll call
  269. the corresponding function above. <code>&quot;===&quot;</code> and <code>&quot;!==&quot;</code> do simple
  270. string comparison, but are included for completeness. Throws if an
  271. invalid comparison string is provided.</li>
  272. <li><code>compare(v1, v2)</code>: Return <code>0</code> if <code>v1 == v2</code>, or <code>1</code> if <code>v1</code> is greater, or <code>-1</code> if
  273. <code>v2</code> is greater. Sorts in ascending order if passed to <code>Array.sort()</code>.</li>
  274. <li><code>rcompare(v1, v2)</code>: The reverse of compare. Sorts an array of versions
  275. in descending order when passed to <code>Array.sort()</code>.</li>
  276. <li><code>diff(v1, v2)</code>: Returns difference between two versions by the release type
  277. (<code>major</code>, <code>premajor</code>, <code>minor</code>, <code>preminor</code>, <code>patch</code>, <code>prepatch</code>, or <code>prerelease</code>),
  278. or null if the versions are the same.</li>
  279. </ul>
  280. <h3 id="comparators">Comparators</h3>
  281. <ul>
  282. <li><code>intersects(comparator)</code>: Return true if the comparators intersect</li>
  283. </ul>
  284. <h3 id="ranges">Ranges</h3>
  285. <ul>
  286. <li><code>validRange(range)</code>: Return the valid range or null if it&#39;s not valid</li>
  287. <li><code>satisfies(version, range)</code>: Return true if the version satisfies the
  288. range.</li>
  289. <li><code>maxSatisfying(versions, range)</code>: Return the highest version in the list
  290. that satisfies the range, or <code>null</code> if none of them do.</li>
  291. <li><code>minSatisfying(versions, range)</code>: Return the lowest version in the list
  292. that satisfies the range, or <code>null</code> if none of them do.</li>
  293. <li><code>gtr(version, range)</code>: Return <code>true</code> if version is greater than all the
  294. versions possible in the range.</li>
  295. <li><code>ltr(version, range)</code>: Return <code>true</code> if version is less than all the
  296. versions possible in the range.</li>
  297. <li><code>outside(version, range, hilo)</code>: Return true if the version is outside
  298. the bounds of the range in either the high or low direction. The
  299. <code>hilo</code> argument must be either the string <code>&#39;&gt;&#39;</code> or <code>&#39;&lt;&#39;</code>. (This is
  300. the function called by <code>gtr</code> and <code>ltr</code>.)</li>
  301. <li><code>intersects(range)</code>: Return true if any of the ranges comparators intersect</li>
  302. </ul>
  303. <p>Note that, since ranges may be non-contiguous, a version might not be
  304. greater than a range, less than a range, <em>or</em> satisfy a range! For
  305. example, the range <code>1.2 &lt;1.2.9 || &gt;2.0.0</code> would have a hole from <code>1.2.9</code>
  306. until <code>2.0.0</code>, so the version <code>1.2.10</code> would not be greater than the
  307. range (because <code>2.0.1</code> satisfies, which is higher), nor less than the
  308. range (since <code>1.2.8</code> satisfies, which is lower), and it also does not
  309. satisfy the range.</p>
  310. <p>If you want to know if a version satisfies or does not satisfy a
  311. range, use the <code>satisfies(version, range)</code> function.</p>
  312. <h3 id="coercion">Coercion</h3>
  313. <ul>
  314. <li><code>coerce(version)</code>: Coerces a string to semver if possible</li>
  315. </ul>
  316. <p>This aims to provide a very forgiving translation of a non-semver
  317. string to semver. It looks for the first digit in a string, and
  318. consumes all remaining characters which satisfy at least a partial semver
  319. (e.g., <code>1</code>, <code>1.2</code>, <code>1.2.3</code>) up to the max permitted length (256 characters).
  320. Longer versions are simply truncated (<code>4.6.3.9.2-alpha2</code> becomes <code>4.6.3</code>).
  321. All surrounding text is simply ignored (<code>v3.4 replaces v3.3.1</code> becomes <code>3.4.0</code>).
  322. Only text which lacks digits will fail coercion (<code>version one</code> is not valid).
  323. The maximum length for any semver component considered for coercion is 16 characters;
  324. longer components will be ignored (<code>10000000000000000.4.7.4</code> becomes <code>4.7.4</code>).
  325. The maximum value for any semver component is <code>Integer.MAX_SAFE_INTEGER || (2**53 - 1)</code>;
  326. higher value components are invalid (<code>9999999999999999.4.7.4</code> is likely invalid).</p>
  327. </div>
  328. <table border=0 cellspacing=0 cellpadding=0 id=npmlogo>
  329. <tr><td style="width:180px;height:10px;background:rgb(237,127,127)" colspan=18>&nbsp;</td></tr>
  330. <tr><td rowspan=4 style="width:10px;height:10px;background:rgb(237,127,127)">&nbsp;</td><td style="width:40px;height:10px;background:#fff" colspan=4>&nbsp;</td><td style="width:10px;height:10px;background:rgb(237,127,127)" rowspan=4>&nbsp;</td><td style="width:40px;height:10px;background:#fff" colspan=4>&nbsp;</td><td rowspan=4 style="width:10px;height:10px;background:rgb(237,127,127)">&nbsp;</td><td colspan=6 style="width:60px;height:10px;background:#fff">&nbsp;</td><td style="width:10px;height:10px;background:rgb(237,127,127)" rowspan=4>&nbsp;</td></tr>
  331. <tr><td colspan=2 style="width:20px;height:30px;background:#fff" rowspan=3>&nbsp;</td><td style="width:10px;height:10px;background:rgb(237,127,127)" rowspan=3>&nbsp;</td><td style="width:10px;height:10px;background:#fff" rowspan=3>&nbsp;</td><td style="width:20px;height:10px;background:#fff" rowspan=4 colspan=2>&nbsp;</td><td style="width:10px;height:20px;background:rgb(237,127,127)" rowspan=2>&nbsp;</td><td style="width:10px;height:10px;background:#fff" rowspan=3>&nbsp;</td><td style="width:20px;height:10px;background:#fff" rowspan=3 colspan=2>&nbsp;</td><td style="width:10px;height:10px;background:rgb(237,127,127)" rowspan=3>&nbsp;</td><td style="width:10px;height:10px;background:#fff" rowspan=3>&nbsp;</td><td style="width:10px;height:10px;background:rgb(237,127,127)" rowspan=3>&nbsp;</td></tr>
  332. <tr><td style="width:10px;height:10px;background:#fff" rowspan=2>&nbsp;</td></tr>
  333. <tr><td style="width:10px;height:10px;background:#fff">&nbsp;</td></tr>
  334. <tr><td style="width:60px;height:10px;background:rgb(237,127,127)" colspan=6>&nbsp;</td><td colspan=10 style="width:10px;height:10px;background:rgb(237,127,127)">&nbsp;</td></tr>
  335. <tr><td colspan=5 style="width:50px;height:10px;background:#fff">&nbsp;</td><td style="width:40px;height:10px;background:rgb(237,127,127)" colspan=4>&nbsp;</td><td style="width:90px;height:10px;background:#fff" colspan=9>&nbsp;</td></tr>
  336. </table>
  337. <p id="footer">semver &mdash; npm@6.4.1</p>