-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 1.83 KB
/
package.json
File metadata and controls
64 lines (64 loc) · 1.83 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
{
"main": "lib/index.cjs.js",
"module": "lib/index.esm.js",
"types": "lib/index.d.ts",
"exports": {
"./package.json": "./package.json",
".": {
"types": "./lib/index.d.ts",
"import": "./lib/index.esm.js",
"default": "./lib/index.cjs.js"
}
},
"name": "sensitive-word-tool",
"displayName": "sensitive-word-tool",
"description": "基于 DFA 算法实现,非常轻巧完备的 JavaScript 敏感词处理库🚀🚀🚀",
"version": "1.1.10",
"publisher": "liuxueyong123",
"author": {
"name": "liuxueyong123",
"email": "liuxueyong123@126.com",
"url": "https://github.com/liuxueyong123"
},
"repository": {
"type": "git",
"url": "https://github.com/liuxueyong123/sensitive-word-tool.git"
},
"bugs": "https://github.com/liuxueyong123/sensitive-word-tool/issues/new",
"homepage": "https://github.com/liuxueyong123/sensitive-word-tool",
"keywords": [
"sensitive",
"sensitive word",
"filter",
"DFA",
"敏感词"
],
"license": "MIT",
"scripts": {
"clear": "rm -rf lib/",
"build": "pnpm clear && rollup -c",
"test": "jest",
"test:coverage": "jest --coverage"
},
"devDependencies": {
"@eslint/create-config": "0.4.2",
"@rollup/plugin-terser": "^0.4.0",
"@rollup/plugin-typescript": "^11.0.0",
"@types/jest": "^29.4.0",
"@types/node": "*",
"@typescript-eslint/eslint-plugin": "^5.0.0",
"@typescript-eslint/parser": ">=5.0.0 <6.0.0",
"eslint": "^8.35.0",
"eslint-config-standard-with-typescript": "^34.0.0",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-n": "^15.0.0",
"eslint-plugin-promise": "^6.0.0",
"jest": "^29.4.3",
"rollup": "^3.18.0",
"rollup-plugin-cleanup": "^3.2.1",
"rollup-plugin-dts": "^5.2.0",
"ts-jest": "^29.0.5",
"ts-node": "^10.9.1",
"typescript": "^4.9.5"
}
}