-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.26 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.26 KB
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
{
"name": "profanity-cleaner",
"version": "0.0.3",
"description": "A simple and lightweight JavaScript library that helps you clean profane or inappropriate words from a given text",
"main": "dist/profanity-cleaner.js",
"type": "commonjs",
"license": "MIT",
"author": {
"name": "Prateek Singh",
"email": "devXprite@gmail.com"
},
"repository": {
"type": "git",
"url": "https://github.com/devXprite/profanity-cleaner.git"
},
"homepage": "https://github.com/devXprite/profanity-cleaner",
"scripts": {
"test": "mocha",
"build": "webpack",
"dev": "webpack --progress --watch",
"lint": "eslint .",
"lint:fix": "eslint . --fix"
},
"keywords": [
"profanity",
"badwords",
"bad-words",
"badwords-filter",
"profanity-cleaner",
"profanity-filter",
"profanity-cleaner"
],
"devDependencies": {
"@babel/cli": "^7.19.3",
"@babel/core": "^7.20.5",
"@babel/preset-env": "^7.20.2",
"babel-loader": "^9.1.0",
"chai": "^4.3.7",
"eslint": "^7.32.0 || ^8.2.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-import": "^2.25.2",
"mocha": "^10.2.0",
"prettier": "^2.8.1",
"webpack": "^5.75.0",
"webpack-cli": "^5.0.1"
}
}