From d72b287799b312c6c62e1b9704122c16ac239b18 Mon Sep 17 00:00:00 2001 From: Jacob Hampton Date: Wed, 3 Jan 2024 19:12:15 +0000 Subject: [PATCH] added description --- README.md | 2 +- package.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 75ffd20..6428306 100644 --- a/README.md +++ b/README.md @@ -2,7 +2,7 @@ # SchemeIt -A lightweight express-js request validator, originally written for my personal projects and separated out into its own package for easier use. +A lightweight express-js request payload validator, originally written for my personal projects and separated out into its own package for easier use. Schemeit will check individual elements against their chosen validators, ensure all non-optional elements are present in a payload and can also optionally enforce `noExtraElements` to prevent bloated payloads. ## Install diff --git a/package.json b/package.json index ee2656c..e8c1c00 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,7 @@ { "name": "schemeit", "version": "1.0.0", - "description": "", + "description": "A simple & lightweight express-js request validator", "main": "dist/index.js", "module": "dist/index.mjs", "types": "dist/index.d.ts",