forked from alexzel/bad-words-next
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
81 lines (81 loc) · 2.35 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
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"name": "bad-words-next",
"version": "1.5.3",
"description": "JavaScript/TypeScript filter and checker for bad words aka profanity",
"keywords": [
"curse",
"swear",
"words",
"profanity",
"filter",
"checker",
"badwords",
"clean",
"detect",
"sanitize",
"utility",
"typescript"
],
"repository": "https://github.com/alexzel/bad-words-next",
"homepage": "https://github.com/alexzel/bad-words-next/wiki",
"author": "Alex Zelensky",
"license": "MIT",
"scripts": {
"build": "rollup -c",
"test": "jest",
"pretest": "yarn lint && tsc --noEmit",
"lint": "eslint ./src ./test",
"doc": "typedoc --options typedoc.json",
"release": "yarn version",
"preversion": "yarn install && yarn build && yarn test && yarn doc",
"postversion": "git push --tags && yarn publish . --new-version $npm_package_version && git push && echo Successfully released version $npm_package_version!",
"cleanup": "git tag -d $(git tag) && git fetch --all --tags && git clean --force -d -x && git reset --hard origin/main && git checkout main"
},
"main": "lib/index.js",
"module": "lib/index.mjs",
"types": "lib/index.d.ts",
"files": [
"lib",
"data",
"test"
],
"devDependencies": {
"@babel/core": "^7.20.12",
"@babel/plugin-transform-typescript": "^7.20.13",
"@babel/preset-env": "^7.20.2",
"@babel/preset-typescript": "^7.18.6",
"@rollup/plugin-babel": "^5.3.1",
"@types/jest": "^29.2.5",
"@typescript-eslint/eslint-plugin": "^5.49.0",
"@typescript-eslint/parser": "^5.49.0",
"eslint": "^8.32.0",
"eslint-config-standard-with-typescript": "^23.0.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-n": "^15.6.1",
"eslint-plugin-promise": "^6.1.1",
"jest": "^29.2.6",
"rollup": "^2.79.1",
"rollup-plugin-delete": "^2.0.0",
"rollup-plugin-dts": "^4.2.3",
"tinybench": "^2.3.1",
"typedoc": "^0.23.24",
"typedoc-github-wiki-theme": "^1.0.1",
"typedoc-plugin-markdown": "^3.14.0",
"typedoc-plugin-rename-defaults": "^0.6.4",
"typescript": "^4.9.4"
},
"dependencies": {
"confusables": "^1.1.1",
"moize": "^6.1.5"
},
"babel": {
"comments": false,
"presets": [
"@babel/preset-typescript",
"@babel/preset-env"
],
"plugins": [
"@babel/plugin-transform-typescript"
]
}
}