-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
65 lines (65 loc) · 1.86 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
{
"name": "leo-profanity",
"version": "0.0.0-development",
"description": "Profanity filter, based on Shutterstock dictionary",
"main": "src/index.js",
"directories": {
"test": "test"
},
"devDependencies": {
"@stryker-mutator/core": "^8.5.0",
"@stryker-mutator/mocha-runner": "^8.5.0",
"chai": "4.2.0",
"codecov": "3.8.3",
"docdash": "^2.0.2",
"eslint": "^8.0.1",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.30.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.0.0",
"eslint-plugin-standard": "^5.0.0",
"jsdoc": "^4.0.3",
"mocha": "^10.7.3",
"nyc": "^17.0.0"
},
"scripts": {
"coverage": "nyc --reporter=lcov mocha test test/**/*.spec.js",
"coverage.check": "nyc check-coverage --statements 80 --branches 80 --functions 80 --lines 80",
"coverage.report": "cat ./coverage/lcov.info | codecov",
"doc.generate": "jsdoc -c jsdoc.json -d doc ./src/index.js -r",
"eslint": "eslint src test --env mocha",
"eslint.fix": "eslint src test --env mocha --fix",
"test": "mocha test test/**/*.spec.js",
"test.watch": "npm t -- --watch",
"validate": "npm run eslint && npm run coverage && npm run coverage.check",
"setup": "npm install && npm run validate"
},
"repository": {
"type": "git",
"url": "https://github.com/jojoee/leo-profanity.git"
},
"keywords": [
"curse",
"bad",
"profanity",
"swear",
"dirty",
"obscene",
"filter",
"clean",
"word",
"words",
"string",
"list"
],
"author": "Nathachai Thongniran <inid3a@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/jojoee/leo-profanity/issues"
},
"homepage": "https://github.com/jojoee/leo-profanity#readme",
"optionalDependencies": {
"french-badwords-list": "^1.0.6",
"russian-bad-words": "^0.5.0"
}
}