semver 5.5.0 → 5.5.1

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 (2) hide show
  1. package/README.md +1 -1
  2. package/package.json +2 -2
package/README.md CHANGED
@@ -274,7 +274,7 @@ logical-or ::= ( ' ' ) * '||' ( ' ' ) *
274
274
  range ::= hyphen | simple ( ' ' simple ) * | ''
275
275
  hyphen ::= partial ' - ' partial
276
276
  simple ::= primitive | partial | tilde | caret
277
- primitive ::= ( '<' | '>' | '>=' | '<=' | '=' | ) partial
277
+ primitive ::= ( '<' | '>' | '>=' | '<=' | '=' ) partial
278
278
  partial ::= xr ( '.' xr ( '.' xr qualifier ? )? )?
279
279
  xr ::= 'x' | 'X' | '*' | nr
280
280
  nr ::= '0' | ['1'-'9'] ( ['0'-'9'] ) *
package/package.json CHANGED
@@ -1,13 +1,13 @@
1
1
  {
2
2
  "name": "semver",
3
- "version": "5.5.0",
3
+ "version": "5.5.1",
4
4
  "description": "The semantic version parser used by npm.",
5
5
  "main": "semver.js",
6
6
  "scripts": {
7
7
  "test": "tap test/*.js --cov -J"
8
8
  },
9
9
  "devDependencies": {
10
- "tap": "^10.7.0"
10
+ "tap": "^12.0.1"
11
11
  },
12
12
  "license": "ISC",
13
13
  "repository": "https://github.com/npm/node-semver",