This repository was archived by the owner on Mar 1, 2023. It is now read-only.
generated from narrowspark/php-library-template
-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 1.32 KB
/
package.json
File metadata and controls
34 lines (34 loc) · 1.32 KB
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
{
"name": "php-library-template",
"private": true,
"engines": {
"node": "^10.16.0 || ^11.3.0"
},
"dependencies": {
"@textlint-rule/textlint-rule-no-invalid-control-character": "^1.2.0",
"@textlint-rule/textlint-rule-no-unmatched-pair": "^1.0.8",
"@textlint-rule/textlint-rule-preset-google": "^0.1.2",
"textlint": "^11.6.3",
"textlint-rule-abbr-within-parentheses": "^1.0.2",
"textlint-rule-alex": "^1.3.1",
"textlint-rule-apostrophe": "^2.0.0",
"textlint-rule-common-misspellings": "^1.0.1",
"textlint-rule-diacritics": "1.0.0",
"textlint-rule-en-capitalization": "^2.0.2",
"textlint-rule-footnote-order": "^1.0.3",
"textlint-rule-helper": "^2.1.1",
"textlint-rule-no-dead-link": "^4.6.2",
"textlint-rule-no-empty-section": "^1.1.0",
"textlint-rule-no-todo": "^2.0.1",
"textlint-rule-terminology": "^2.1.4",
"textlint-rule-write-good": "^1.6.2",
"write-good": "^1.0.2"
},
"devDependencies": {
"minimist": ">=1.2.5"
},
"scripts": {
"lint": "textlint ./.build/ISSUE_TEMPLATE/** ./src/** ./docs/** ./README.md ./UPGRADE.md --dry-run",
"lint:fix": "textlint ./.build/ISSUE_TEMPLATE/** ./src/** ./docs/** ./README.md ./UPGRADE.md --fix"
}
}