-
-
Notifications
You must be signed in to change notification settings - Fork 249
/
package.json
35 lines (35 loc) · 1.13 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
{
"name": "@coffeeandfun/google-profanity-words",
"version": "2.1.0",
"description": "Full list of bad words and top swear words banned by Google.",
"main": "index.js",
"type": "module",
"scripts": {
"format": "npx prettier . --write",
"test": "NODE_OPTIONS=--experimental-vm-modules NODE_NO_WARNINGS=1 jest",
"en": "NODE_OPTIONS=--experimental-vm-modules NODE_NO_WARNINGS=1 jest english.test.js",
"es": "NODE_OPTIONS=--experimental-vm-modules NODE_NO_WARNINGS=1 jest spanish.test.js",
"engine": "NODE_OPTIONS=--experimental-vm-modules NODE_NO_WARNINGS=1 jest engine.test.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/coffee-and-fun/google-profanity-words.git"
},
"keywords": [
"google",
"side-project",
"profanity",
"profanity-detection",
"profanityfilter"
],
"author": "Robert James Gabriel",
"license": "ISC",
"bugs": {
"url": "https://github.com/coffee-and-fun/google-profanity-words/issues"
},
"homepage": "https://github.com/coffee-and-fun/google-profanity-words#readme",
"devDependencies": {
"jest": "^27.4.5",
"prettier": "3.0.0"
}
}