UNPKG

profanity-check

Version:

This is a multi-language profanity check for validating text is clear and doesn't contain any profane words

89 lines (88 loc) 1.65 kB
{ "version": "0.0.3", "license": "MIT", "main": "dist/index.js", "typings": "dist/index.d.ts", "files": [ "dist", "src" ], "engines": { "node": ">=10" }, "scripts": { "start": "tsdx watch", "build": "tsdx build", "test": "tsdx test", "lint": "tsdx lint", "prepare": "tsdx build", "size": "size-limit", "analyze": "size-limit --why" }, "peerDependencies": {}, "husky": { "hooks": { "pre-commit": "tsdx lint" } }, "prettier": { "printWidth": 80, "semi": true, "singleQuote": true, "trailingComma": "es5" }, "name": "profanity-check", "author": "Amr Monier", "module": "dist/profanity-checker.esm.js", "size-limit": [ { "path": "dist/profanity-checker.cjs.production.min.js", "limit": "10 KB" }, { "path": "dist/profanity-checker.esm.js", "limit": "10 KB" } ], "devDependencies": { "@size-limit/preset-small-lib": "^7.0.8", "husky": "^6.0.0", "size-limit": "^7.0.8", "tsdx": "^0.14.1", "tslib": "^2.4.0", "typescript": "^4.7.4" }, "keywords": [ "profanity", "profane", "checker", "validation", "multi-language", "arabic", "chinese", "czech", "danish", "english", "esperanto", "finnish", "french", "german", "hindi", "hungarian", "italian", "japanese", "korean", "norwegian", "persian", "polish", "portuguese", "russian", "turkish", "swedish", "thai" ], "repository": { "type": "git", "url": "https://github.com/AmrMonier/profanity-checker.git" } }