-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 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
{
"directories": {
"test": "test"
},
"author": "azu",
"license": "MIT",
"files": [
"lib/",
"src/"
],
"name": "textlint-rule-first-sentence-length",
"version": "2.0.0",
"description": "textlint rule that limit maximum length of **First** sentence. ",
"main": "lib/textlint-rule-first-sentence-length.js",
"scripts": {
"test": "textlint-scripts test",
"prepublish": "npm run --if-present build",
"build": "textlint-scripts build",
"watch": "textlint-scripts build --watch"
},
"repository": {
"type": "git",
"url": "https://github.com/textlint-rule/textlint-rule-first-sentence-length.git"
},
"bugs": {
"url": "https://github.com/textlint-rule/textlint-rule-first-sentence-length/issues"
},
"homepage": "https://github.com/textlint-rule/textlint-rule-first-sentence-length",
"devDependencies": {
"@textlint/types": "^13.3.0",
"textlint-scripts": "^13.3.0",
"textlint-tester": "^13.3.0",
"ts-node": "^10.9.1",
"typescript": "^4.9.5"
},
"keywords": [
"textlintrule"
],
"dependencies": {
"sentence-splitter": "^4.1.0",
"textlint-rule-helper": "^2.0.0",
"textlint-util-to-string": "^3.3.2"
},
"packageManager": "[email protected]"
}