From f04f374d82cd06c36eb14bf7dc5fb61b86448a92 Mon Sep 17 00:00:00 2001 From: Ilan Kushnir Date: Sun, 24 Nov 2024 14:39:15 +0200 Subject: [PATCH] fix: remove payu package scope --- README.md | 6 +++--- package-lock.json | 4 ++-- package.json | 2 +- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index e8e21e4..d8422e7 100644 --- a/README.md +++ b/README.md @@ -1,10 +1,10 @@ -# @payu/zxcvbn-custom-matchers +# @zxcvbn-custom-matchers The package is adding custom matchers to the zxcvbn-ts package. The matchers enforce specific character requirements in passwords and provide feedback and scoring. ## Installation ```sh -npm install @payu/zxcvbn-custom-matchers +npm install zxcvbn-custom-matchers ``` ### Usage @@ -15,7 +15,7 @@ import { numberMatcher, specialMatcher, uppercaseMatcher -} from '@payu/zxcvbn-custom-matchers'; +} from 'zxcvbn-custom-matchers'; // Add the matchers zxcvbnOptions.addMatcher('lowercaseMatcher', lowercaseMatcher); diff --git a/package-lock.json b/package-lock.json index 5e1181e..fb55021 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,11 +1,11 @@ { - "name": "@payu/zxcvbn-custom-matchers", + "name": "zxcvbn-custom-matchers", "version": "0.0.0", "lockfileVersion": 3, "requires": true, "packages": { "": { - "name": "@payu/zxcvbn-custom-matchers", + "name": "zxcvbn-custom-matchers", "version": "0.0.0", "license": "ISC", "devDependencies": { diff --git a/package.json b/package.json index af924ab..8a30121 100644 --- a/package.json +++ b/package.json @@ -1,5 +1,5 @@ { - "name": "@payu/zxcvbn-custom-matchers", + "name": "zxcvbn-custom-matchers", "version": "0.0.0", "description": "Extended matchers for zxcvbn package for passwords validation", "main": "dist/src/index.js",