From 8eaa2214d3b7dea6e3e082136bd182f9020b1c63 Mon Sep 17 00:00:00 2001 From: AJ ONeal Date: Sun, 2 Dec 2018 23:20:44 -0700 Subject: [PATCH] v1.0.2: update package and README --- README.md | 4 ++-- package.json | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 755d938..2aa24c9 100644 --- a/README.md +++ b/README.md @@ -23,7 +23,7 @@ Features You can install `ssh-fingerprint` and use it from command line: ```bash -npm install -g ssh-fingerprint +npm install -g greenlock-ssh-fingerprint ``` ```bash @@ -44,7 +44,7 @@ You can also use it from JavaScript: ```js var fs = require('fs'); -var SSH = require('ssh-fingerprint'); +var SSH = require('greenlock-ssh-fingerprint'); var pub = fs.readFileSync("./id_rsa.pub"); SSH.fingerprint({ pub: pub }).then(function (fing) { diff --git a/package.json b/package.json index e3af1d6..25ae1a9 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "greenlock-ssh-fingerprint", - "version": "1.0.1", + "version": "1.0.2", "description": "💯 SSH Fingerprint in < 125 lines of VanillaJS node, Zero Dependencies.", "homepage": "https://git.coolaj86.com/coolaj86/ssh-fingerprint.js", "main": "index.js",