-
Notifications
You must be signed in to change notification settings - Fork 324
/
package.json
68 lines (68 loc) · 1.71 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
67
68
{
"name": "bad-words",
"version": "4.0.0",
"description": "A javascript filter for bad words",
"main": "dist/index.js",
"type": "module",
"types": "dist/index.d.ts",
"exports": {
".": {
"require": "./dist/index.js",
"import": "./dist/esm/index.js",
"types": "./dist/index.d.ts"
}
},
"directories": {
"test": "test",
"src": "src"
},
"scripts": {
"prettier": "prettier --write ./src",
"lint": "eslint ./src",
"lint:fix": "eslint --fix ./src",
"build": "tsc --project tsconfig.cjs.json && tsc --project tsconfig.esm.json",
"prepublishOnly": "tsc",
"prepare": "husky && tsc",
"rc": "standard-version --prerelease && git push --follow-tags && npm publish",
"release": "standard-version && git push --follow-tags && npm publish",
"test": "ava",
"typedoc": "typedoc --out docs ./src/badwords.ts"
},
"repository": {
"type": "git",
"url": "git://github.com/web-mech/badwords.git"
},
"keywords": [
"curse",
"words",
"profanity",
"filter"
],
"dependencies": {
"badwords-list": "^2.0.1-4"
},
"devDependencies": {
"@ava/typescript": "^5.0.0",
"@sindresorhus/tsconfig": "^6.0.0",
"ava": "^6.1.3",
"better-assert": "1.0.0",
"documentation": "^5.3.3",
"@eslint/js": "^9.8.0",
"@types/eslint__js": "^8.42.3",
"@types/node": "^22.0.0",
"eslint": "^9.8.0",
"eslint-config-prettier": "^9.1.0",
"husky": "^9.1.4",
"lint-staged": "^15.2.7",
"prettier": "^3.3.3",
"standard-version": "^9.5.0",
"typedoc": "^0.26.5",
"typescript": "^5.5.4",
"typescript-eslint": "^7.18.0"
},
"author": "Mike P.",
"license": "MIT",
"engines": {
"node": ">=8.0.0"
}
}