-
-
Notifications
You must be signed in to change notification settings - Fork 17
/
package.json
68 lines (68 loc) · 1.62 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
{
"name": "textlint-rule-terminology",
"version": "0.0.0-development",
"description": "TextLint rule to check correct terms spelling",
"author": {
"name": "Artem Sapegin",
"url": "https://sapegin.me"
},
"homepage": "https://github.com/sapegin/textlint-rule-terminology",
"repository": "sapegin/textlint-rule-terminology",
"license": "MIT",
"engines": {
"node": ">=20"
},
"type": "module",
"exports": "./out/index.js",
"files": [
"out/*.js",
"terms.jsonc"
],
"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",
"misspelling",
"proofreading",
"terminology",
"terms"
],
"devDependencies": {
"@textlint/ast-node-types": "^14.0.4",
"@textlint/types": "^14.0.4",
"@types/lodash": "^4.17.7",
"eslint": "^9.7.0",
"eslint-config-tamia": "^9.1.8",
"husky": "^9.1.2",
"lint-staged": "^15.2.7",
"prettier": "^3.3.3",
"textlint-tester": "^14.0.4",
"typescript": "^5.5.4",
"vitest": "^2.0.4"
},
"dependencies": {
"lodash": "^4.17.21",
"strip-json-comments": "^5.0.1",
"textlint-rule-helper": "^2.3.1"
},
"lint-staged": {
"*.{ts,js,mjs,cjs,json,jsonc,md}": [
"prettier --write"
],
"*.{ts,js,mjs,cjs}": [
"eslint --fix"
]
}
}