-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.3 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
{
"name": "textlint-rule-quotes",
"version": "1.0.0",
"description": "Textlint rule to check correct usage of quotes",
"author": {
"name": "Artem Sapegin",
"url": "https://sapegin.me"
},
"homepage": "https://github.com/sapegin/textlint-rule-quotes",
"repository": "sapegin/textlint-rule-quotes",
"license": "MIT",
"engines": {
"node": ">=20"
},
"type": "module",
"exports": "./out/index.js",
"files": [
"out/*.js"
],
"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",
"quotes",
"typography",
"straight quotes",
"dumb quotes"
],
"dependencies": {},
"devDependencies": {
"eslint": "^9.17.0",
"eslint-config-tamia": "^9.2.2",
"husky": "^9.1.7",
"lint-staged": "^15.3.0",
"prettier": "^3.4.2",
"textlint-tester": "^14.4.2",
"typescript": "^5.7.2",
"vitest": "^2.1.8"
},
"lint-staged": {
"*.{js,mjs,cjs,ts,tsx,md}": "prettier --write",
"*.{js,mjs,cjs,ts,tsx}": "eslint --cache --fix"
}
}