-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
67 lines (67 loc) · 1.77 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
{
"name": "textlint-rule-eslint",
"repository": {
"type": "git",
"url": "https://github.com/textlint-rule/textlint-rule-eslint.git"
},
"author": "azu",
"email": "[email protected]",
"homepage": "https://github.com/textlint-rule/textlint-rule-eslint",
"license": "MIT",
"bugs": {
"url": "https://github.com/textlint-rule/textlint-rule-eslint/issues"
},
"files": [
"src/",
"lib/"
],
"version": "5.0.1",
"description": "textlint rule integrate with ESLint.",
"main": "lib/textlint-rule-eslint.js",
"directories": {
"test": "test"
},
"scripts": {
"test": "textlint-scripts test",
"build": "textlint-scripts build",
"watch": "textlint-scripts build --watch",
"prepublish": "npm run --if-present build",
"format": "prettier --write \"**/*.{js,jsx,ts,tsx,css}\"",
"prepare": "git config --local core.hooksPath .githooks"
},
"keywords": [
"eslint",
"textlint"
],
"devDependencies": {
"@types/eslint": "^9.6.1",
"@types/node": "^22.10.5",
"eslint": "^9.17.0",
"lint-staged": "^15.3.0",
"prettier": "^3.4.2",
"textlint-plugin-asciidoctor": "^1.1.0",
"textlint-scripts": "^14.4.2",
"textlint-tester": "^14.4.2",
"ts-node": "^10.9.2",
"typescript": "^5.7.2"
},
"peerDependencies": {
"eslint": "^9.0.0"
},
"dependencies": {
"@textlint/types": "^14.4.2",
"structured-source": "^4.0.0"
},
"packageManager": "[email protected]+sha512.11dff29565d2297c74e7c594a9762581bde969f0aa5cbe6f5b3644bf008a16c065ece61094d9ffbb81125be38df8e1ba43eb8244b3d30c61eb797e9a2440e3ec",
"prettier": {
"singleQuote": false,
"printWidth": 120,
"tabWidth": 4,
"trailingComma": "none"
},
"lint-staged": {
"*.{js,jsx,ts,tsx,css}": [
"prettier --write"
]
}
}