forked from jwils0n/profanity-filter
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
32 lines (32 loc) · 807 Bytes
/
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
{
"name": "profanity-filter",
"description": "A node.js utility for masking words or phrases in strings that aren't allowed.",
"version": "0.2.1",
"homepage": "https://github.com/jwils0n/profanity-filter",
"author": {
"name": "James Wilson",
"email": "[email protected]",
"url": "https://github.com/jwils0n"
},
"repository": {
"type": "git",
"url": "git://github.com/jwils0n/profanity-filter.git"
},
"licenses": [
{
"type": "MIT",
"url": "https://github.com/jwils0n/profanity-filter/LICENSE"
}
],
"main": "lib/filter",
"engines": {
"node": ">= 0.8.0"
},
"devDependencies":{
"mocha":"1.16.2"
},
"scripts": {
"test": "mocha"
},
"keywords": ["curse", "words", "string", "bad", "unallowed", "profanity", "filter", "clean"]
}