-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
66 lines (66 loc) · 1.59 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
66
{
"name": "@elsowiny/badwordsfilter",
"version": "1.1.3",
"description": "A filter for bad words which also checks if a word is profane",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"directories": {
"lib": "lib",
"test": "test"
},
"scripts": {
"test": "jest",
"build": "tsc",
"start": "node lib/index.js",
"format": "prettier --write \"src/**/*.ts\" ",
"lint": "eslint --ext .ts src/**/*.ts"
},
"repository": {
"type": "git",
"url": "git+https://github.com/elsowiny/badwordslist.git"
},
"keywords": [
"profanity",
"badwordsfilter",
"badwords",
"isprofane",
"isbadword",
"badword",
"profanityfilter",
"profanitychecker",
"profanitycheck",
"badwordchecker"
],
"author": "Sherief Elsowiny <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/elsowiny/badwordslist/issues"
},
"files": [
"lib/**/*"
],
"homepage": "https://github.com/elsowiny/badwordslist#readme",
"devDependencies": {
"@babel/core": "^7.17.0",
"@babel/preset-env": "^7.16.11",
"@babel/preset-typescript": "^7.16.7",
"@types/jest": "^27.4.0",
"@types/node": "^17.0.15",
"@typescript-eslint/eslint-plugin": "^5.10.2",
"@typescript-eslint/parser": "^5.10.2",
"babel-jest": "^27.5.0",
"eslint": "^8.8.0",
"eslint-config-google": "^0.14.0",
"jest": "^27.5.0",
"prettier": "^2.5.1",
"tslint-config-prettier": "^1.18.0",
"typescript": "^4.5.5"
},
"jest": {
"collectCoverage": true,
"coverageReporters": [
"json",
"html"
]
}
}