forked from web-mech/badwords
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.14 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
48
49
{
"name": "bad-words-plus",
"version": "3.0.4",
"description": "A javascript filter for bad words with display options",
"main": "./lib/badwords",
"directories": {
"lib": "lib",
"test": "test"
},
"scripts": {
"ver": "npx node-env-run --exec \"semantic-release --ci false\"",
"test": "mocha -R spec",
"commit": "git-cz",
"docs": "documentation readme --section API ./lib/badwords.js"
},
"repository": {
"type": "git",
"url": "git://github.com/ryan-berdel/bad-words-plus.git"
},
"keywords": [
"curse",
"words",
"profanity",
"filter"
],
"dependencies": {
"badwords-list": "^1.0.0"
},
"devDependencies": {
"better-assert": "1.0.0",
"cz-conventional-changelog": "^3.2.0",
"documentation": "^13.0.2",
"mocha": "^8.0.1"
},
"author": "Mike P., Ryan Berdel",
"license": "MIT",
"engines": {
"node": ">=12.0.0"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"bugs": {
"url": "https://github.com/ryan-berdel/bad-words-plus/issues"
},
"homepage": "https://github.com/ryan-berdel/bad-words-plus#readme"
}