this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Updated Version & Added DEMO Link

+9 -6
+5 -2
README.md
··· 2 2 3 3 [![DeepScan grade](https://deepscan.io/api/teams/23370/projects/26631/branches/850159/badge/grade.svg)](https://deepscan.io/dashboard#view=project&tid=23370&pid=26631&bid=850159) 4 4 ![workflow](https://github.com/IntegerAlex/disposable-email-detector/actions/workflows/main.yml/badge.svg) 5 - [![OpenSSF Best Practices](https://www.bestpractices.dev/projects/8638/badge)](https://www.bestpractices.dev/projects/8638) 6 5 [![DeepSource](https://app.deepsource.com/gh/IntegerAlex/disposable-email-detector.svg/?label=resolved+issues&show_trend=true&token=49_pbJHQLpxvaUFKZ5pbct86)](https://app.deepsource.com/gh/IntegerAlex/disposable-email-detector/) 7 6 8 7 ![NPM Downloads](https://img.shields.io/npm/dt/disposable-email-detector?style=plastic&logo=npm) ··· 11 10 ## Overview 12 11 13 12 The `disposable-email-detector` is a TypeScript utility designed to identify disposable email addresses, providing developers with a tool to enhance email verification processes. 13 + 14 + ## Demo 15 + 16 + DEMO : [LIVE](https://disposable-email-detector-demo.vercel.app/) 17 + DEMO REPO : [REPO](https://github.com/IntegerAlex/disposable-email-detector-demo) 14 18 15 19 ## Features 16 20 ··· 56 60 57 61 This project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details. 58 62 ``` 59 -
+4 -4
package.json
··· 1 1 { 2 2 "name": "disposable-email-detector", 3 - "version": "2.0.0", 3 + "version": "3.0.0", 4 4 "description": "disposable email detector", 5 5 "main": "index.js", 6 6 "scripts": { ··· 18 18 "disposable-email" 19 19 ], 20 20 "author": "Akshat Kotpalliwar ( alias IntegerAlex on GitHub )", 21 - "repository": { 21 + "repository": { 22 22 "type": "git", 23 23 "url": "https://www.github.com/IntegerAlex/disposable-email-detector" 24 - }, 24 + }, 25 25 "license": "MIT", 26 26 "devDependencies": { 27 27 "@types/node": "^20.11.25", 28 28 "typescript": "^5.4.2" 29 29 }, 30 30 "dependencies": { 31 - "disposable-email-detector": "^1.0.1" 31 + "disposable-email-detector": "^3.0.0" 32 32 } 33 33 }