-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
40 lines (40 loc) · 956 Bytes
/
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
{
"name": "no-profanity",
"version": "1.5.1",
"description": "A JavaScript package to detect and filter profanity",
"main": "./lib/no-profanity.js",
"types": "./lib/no-profanity.d.ts",
"directories": {
"test": "test"
},
"scripts": {
"test": "jest"
},
"repository": {
"type": "git",
"url": "git://github.com/topener/no-profanity.git"
},
"keywords": [
"curse",
"words",
"profanity",
"filter",
"censor"
],
"devDependencies": {
"@babel/cli": "^7.22.9",
"@babel/core": "^7.22.9",
"@babel/preset-env": "^7.22.9",
"@types/node": "^20.4.5",
"babel-jest": "^29.6.1",
"better-assert": "1.0.2",
"documentation": "^14.0.2",
"jest": "^29.6.1",
"husky": "^8.0.3"
},
"author": "Rene Pot",
"license": "MIT",
"engines": {
"node": ">=14.0.0"
}
}