-
-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
69 lines (69 loc) · 1.59 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
{
"name": "textlint-rule-stop-words",
"version": "0.0.0-development",
"description": "Textlint rule to find filler words, buzzwords, and cliches",
"author": {
"name": "Artem Sapegin",
"url": "https://sapegin.me"
},
"homepage": "https://github.com/sapegin/textlint-rule-stop-words",
"repository": "sapegin/textlint-rule-stop-words",
"license": "MIT",
"engines": {
"node": ">=20"
},
"type": "module",
"exports": "./out/index.js",
"files": [
"out/*.js",
"dict.txt"
],
"scripts": {
"pretest": "npm run lint",
"test": "npm run test:vitest",
"posttest": "npm run format",
"lint": "eslint . --cache --fix",
"test:vitest": "vitest run",
"test:watch": "vitest",
"build": "tsc",
"format": "prettier --write \"**/*.{ts,js,mjs,cjs,json,jsonc,md}\"",
"prepublish": "npm run build",
"prepare": "husky"
},
"keywords": [
"textlintrule",
"textlint",
"rule",
"stop",
"words",
"stop-words",
"filler",
"buzzword",
"cliche"
],
"devDependencies": {
"@textlint/types": "^14.2.0",
"@types/lodash": "^4.17.7",
"eslint": "^9.9.1",
"eslint-config-tamia": "^9.1.10",
"husky": "^9.1.5",
"lint-staged": "^15.2.9",
"prettier": "^3.3.3",
"textlint-tester": "^14.2.0",
"typescript": "^5.5.4",
"vitest": "^2.0.5"
},
"dependencies": {
"lodash": "^4.17.21",
"split-lines": "^3.0.0",
"textlint-rule-helper": "^2.3.1"
},
"lint-staged": {
"*.{ts,js,mjs,cjs,json,jsonc,md}": [
"prettier --write"
],
"*.{ts,js,mjs,cjs}": [
"eslint --fix"
]
}
}