retire 3.1.2 → 3.1.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.
package/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Changelog
2
2
 
3
+ ## [3.1.3]
4
+
5
+ - Fixes a typo
6
+
3
7
  ## [3.1.2]
4
8
 
5
9
  - Remove some unused variables and tmp files
package/README.md CHANGED
@@ -30,7 +30,7 @@ Options:
30
30
  --jsrepo <path|url> Local or internal version of repo
31
31
  --noderepo <path|url> Local or internal version of repo
32
32
  --cachedir <path> Path to use for local cache instead of /tmp/.retire-cache
33
- --proxy <url> Proxy url (http://some.sever:8080)
33
+ --proxy <url> Proxy url (http://some.host:8080)
34
34
  --outputformat <format> Valid formats: text, json, jsonsimple, depcheck (experimental), cyclonedx and cyclonedxJSON
35
35
  --outputpath <path> File to which output should be written
36
36
  --ignore <paths> Comma delimited list of paths to ignore
package/bin/retire CHANGED
@@ -51,7 +51,7 @@ program
51
51
  .option('--jsrepo <path|url>', 'Local or internal version of repo')
52
52
  .option('--noderepo <path|url>', 'Local or internal version of repo')
53
53
  .option('--cachedir <path>', 'Path to use for local cache instead of /tmp/.retire-cache')
54
- .option('--proxy <url>', 'Proxy url (http://some.sever:8080)')
54
+ .option('--proxy <url>', 'Proxy url (http://some.host:8080)')
55
55
  .option('--outputformat <format>', 'Valid formats: text, json, jsonsimple, depcheck (experimental), cyclonedx and cyclonedxJSON')
56
56
  .option('--outputpath <path>', 'File to which output should be written')
57
57
  .option('--ignore <paths>', 'Comma delimited list of paths to ignore')
package/lib/retire.js CHANGED
@@ -4,7 +4,7 @@
4
4
  */
5
5
 
6
6
  var exports = exports || {};
7
- exports.version = '3.1.2';
7
+ exports.version = '3.1.3';
8
8
 
9
9
  function isDefined(o) {
10
10
  return typeof o !== 'undefined';
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "author": "Erlend Oftedal <erlend@oftedal.no>",
3
3
  "name": "retire",
4
4
  "description": "Retire is a tool for detecting use of vulnerable libraries",
5
- "version": "3.1.2",
5
+ "version": "3.1.3",
6
6
  "license": "Apache-2.0",
7
7
  "repository": {
8
8
  "type": "git",