-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.21 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
{
"name": "textlint-rule-period-in-header",
"version": "0.1.2",
"description": "textlint rule that check with or without period in header.",
"keywords": [
"textlintrule"
],
"homepage": "https://github.com/ohakutsu/textlint-rule-period-in-header",
"bugs": {
"url": "https://github.com/ohakutsu/textlint-rule-period-in-header/issues"
},
"license": "MIT",
"author": {
"name": "ohakutsu",
"url": "https://twitter.com/ohakutsu"
},
"files": [
"lib/"
],
"main": "lib/index.js",
"repository": {
"type": "git",
"url": "https://github.com/ohakutsu/textlint-rule-period-in-header.git"
},
"scripts": {
"build": "textlint-scripts build",
"lint": "prettier --check .",
"lint:fix": "prettier --list-different --write .",
"prepublish": "pnpm run build",
"test": "textlint-scripts test"
},
"dependencies": {
"check-ends-with-period": "^3.0.2"
},
"devDependencies": {
"@textlint/types": "^13.4.1",
"prettier": "^3.1.1",
"textlint-scripts": "^13.4.1",
"textlint-tester": "^13.4.1",
"typescript": "^5.7.3"
},
"peerDependencies": {
"textlint": ">=13.4.1"
},
"engines": {
"node": ">=16.20.2"
},
"packageManager": "[email protected]"
}