forked from MauriceButler/badwords
-
Notifications
You must be signed in to change notification settings - Fork 39
/
Copy pathpackage.json
68 lines (68 loc) · 1.66 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": "badwords-list",
"version": "2.0.1",
"author": "Michael Price <[email protected]>",
"license": "MIT",
"description": "A highly consumable list of bad (profanity) english words (forked from badwords)",
"main": "./dist/index.js",
"type": "module",
"types": "dist/index.d.ts",
"exports": {
".": "./dist/index.js"
},
"directories": {
"dist": "./dist",
"docs": "./docs",
"src": "./src",
"tests": "./tests"
},
"files": [
"dist",
"src"
],
"scripts": {
"test": "./node_modules/.bin/mocha -R nyan test/**.cjs",
"ct": "./node_modules/.bin/tsc --noEmit ./lib/**.ts",
"prettier": "prettier --write ./src",
"lint": "eslint ./src",
"lint:fix": "eslint --fix ./src",
"build": "tsc",
"prepublishOnly": "tsc",
"prepare": "husky",
"rc": "standard-version --prerelease && git push --follow-tags",
"release": "standard-version && git push --follow-tags && npm publish"
},
"repository": {
"type": "git",
"url": "[email protected]:web-mech/badwords-list.git"
},
"keywords": [
"bad",
"word",
"words",
"profanity",
"filter",
"blacklist",
"black",
"list",
"swear"
],
"devDependencies": {
"mocha": "^5.2.0",
"better-assert": "1.0.0",
"@eslint/js": "^9.8.0",
"@types/eslint__js": "^8.42.3",
"@types/node": "^22.0.0",
"eslint": "^9.9.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",
"typescript": "^5.5.4",
"typescript-eslint": "^7.18.0"
},
"bugs": {
"url": "https://github.com/web-mech/badwords-list/issues"
}
}