-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
47 lines (47 loc) · 1.25 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
{
"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"
}
}