@menesesevandro/bad-word-filter-api
Version:
A simple API service for filtering and removing content of profanity, obscenity and other unwanted text
53 lines (52 loc) • 1.3 kB
JSON
{
"name": "@menesesevandro/bad-word-filter-api",
"description": "A simple API service for filtering and removing content of profanity, obscenity and other unwanted text",
"version": "1.0.4",
"main": "app.js",
"scripts": {
"start": "node src/app.js",
"test": "jest",
"test:performance": "node --expose-gc node_modules/.bin/jest tests/performance.test.js",
"test:load": "node --max-old-space-size=512 node_modules/.bin/jest tests/load.test.js",
"test:all": "npm run test:performance && npm run test:load"
},
"keywords": [
"filter",
"bad words",
"words",
"badwords",
"bad-words",
"bad",
"profanity",
"profane",
"obscenity",
"text",
"curse",
"cursing",
"curses",
"curse words",
"curseword",
"curse-words",
"swear",
"swearing",
"swear words",
"swearword",
"swear-words"
],
"repository": {
"type": "git",
"url": "https://github.com/MenesesEvandro/bad-word-filter-api.git"
},
"author": "Evandro Meneses Carneiro <euvandro86@gmail.com>",
"license": "MIT",
"dependencies": {
"compression": "^1.8.0",
"express-rate-limit": "^7.5.0"
},
"devDependencies": {
"body-parser": "^2.2.0",
"express": "^5.1.0",
"jest": "^29.7.0",
"supertest": "^7.1.1"
}
}