diff --git a/README.md b/README.md index 2a2926b..a26d030 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -# env-verify +# Simple Env Verify [![npm version](https://img.shields.io/npm/v/simple-env-verify.svg?style=flat-square)](https://www.npmjs.com/package/simple-env-verify) @@ -6,32 +6,18 @@ This script was created to read the .env.example file and verify that all keys a ## Instalation - -Clone the repo - -``` -git clone https://github.com/GustavoBonfimS/env-verify.git ``` - -Enter the directory -``` -cd env-verify +npm i -g simple-env-verify ``` -Install dependencies -``` -yarn -``` +Run the command -Install the package locally ``` -npm i -g . +simple-env-verify --help ``` - -Run the command - +Or ``` -env-verify --help +sev --help ``` diff --git a/package.json b/package.json index 3f1f89b..442c4b3 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "simple-env-verify", - "version": "1.0.0", + "version": "1.0.1", "main": "src/index.mjs", "author": "Gustavo Bonfim", "license": "MIT", @@ -10,7 +10,8 @@ "url": "https://github.com/GustavoBonfimS/simple-env-verify" }, "bin": { - "env-verify": "./src/index.mjs" + "simple-env-verify": "./src/index.mjs", + "sev": "./src/index.mjs" }, "dependencies": { "chalk": "^5.0.1",