-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #4 from elsowiny/dev
Dev
- Loading branch information
Showing
5 changed files
with
13 additions
and
646 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
node_modules | ||
lib | ||
/lib | ||
coverage |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,9 @@ | ||
{ | ||
"name": "badwordsfilter", | ||
"name": "@elsowiny/badwordsfilter", | ||
"version": "1.0.0", | ||
"description": "badwordsfilter", | ||
"main": "index.js", | ||
"description": "A filter for bad words which also checks if a word is profane", | ||
"main": "lib/index.js", | ||
"types": "lib/index.d.ts", | ||
"directories": { | ||
"lib": "lib", | ||
"test": "test" | ||
|
@@ -13,18 +14,22 @@ | |
"start": "node lib/index.js", | ||
"format": "prettier --write \"src/**/*.ts\" ", | ||
"lint": "tslint -p tsconfig.json" | ||
|
||
}, | ||
"repository": { | ||
"type": "git", | ||
"url": "git+https://github.com/elsowiny/badwordslist.git" | ||
}, | ||
"keywords": [], | ||
"keywords": ["profanity", "badwordsfilter", "badwords", "isprofane", "isbadword", "badword", "profanityfilter", "profanitychecker", "profanitycheck", "badwordchecker"], | ||
"author": "Sherief Elsowiny <[email protected]>", | ||
"license": "ISC", | ||
"license": "MIT", | ||
"bugs": { | ||
"url": "https://github.com/elsowiny/badwordslist/issues" | ||
}, | ||
"files" :["lib/**/*"], | ||
|
||
|
||
|
||
"homepage": "https://github.com/elsowiny/badwordslist#readme", | ||
"devDependencies": { | ||
"@babel/core": "^7.17.0", | ||
|
Oops, something went wrong.