cityssm/unleet

View on GitHub
package.json

Summary

Maintainability
Test Coverage
{
  "name": "@cityssm/unleet",
  "version": "2.4.0",
  "description": "Removes symbols and character combinations from a text string, and replaces them with the letters they commonly represent.",
  "type": "module",
  "exports": "./index.js",
  "types": "./index.d.ts",
  "engines": {
    "node": "^12.20.0 || ^14.13.1 || >=16.0.0"
  },
  "scripts": {
    "build": "node ./mappings/build.js",
    "test": "mocha --timeout 30000",
    "coverage": "c8 mocha --timeout 30000"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/cityssm/unleet.git"
  },
  "keywords": [
    "bad-words",
    "decode",
    "deleet",
    "leet-speak",
    "leet",
    "sanitize"
  ],
  "author": "The Corporation of the City of Sault Ste. Marie",
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/cityssm/unleet/issues"
  },
  "homepage": "https://github.com/cityssm/unleet#readme",
  "devDependencies": {
    "@types/mocha": "^9.1.1",
    "@types/node": "^17.0.34",
    "@typescript-eslint/eslint-plugin": "^5.25.0",
    "@typescript-eslint/parser": "^5.25.0",
    "eslint": "^8.15.0",
    "eslint-plugin-import": "^2.26.0",
    "eslint-plugin-node": "^11.1.0",
    "eslint-plugin-unicorn": "^42.0.0"
  },
  "dependencies": {
    "remove-accents": "^0.4.2"
  }
}