textlint-rule-write-good
Version:
textlint rule to check your English style with write good
55 lines (54 loc) • 1.36 kB
JSON
{
"name": "textlint-rule-write-good",
"version": "2.0.0",
"description": "textlint rule to check your English style with write good",
"engines": {
"node": ">=6"
},
"main": "lib/write-good.js",
"scripts": {
"build": "textlint-scripts build",
"prepublish": "npm run --if-present build",
"test": "textlint-scripts test",
"precommit": "lint-staged",
"format": "prettier --write \"**/*.{js,jsx,ts,tsx,css}\"",
"prepare": "git config --local core.hooksPath .githooks"
},
"files": [
"lib",
"src"
],
"keywords": [
"textlint",
"rule",
"english",
"proofreading"
],
"author": "nodaguti",
"license": "MIT",
"bugs": "https://github.com/textlint-rule/textlint-rule-write-good/issues",
"homepage": "https://github.com/textlint-rule/textlint-rule-write-good",
"repository": "textlint-rule/textlint-rule-write-good",
"dependencies": {
"textlint-rule-helper": "^2.2.0",
"write-good": "^1.0.8"
},
"lint-staged": {
"*.{js,jsx,ts,tsx,css}": [
"prettier --write"
]
},
"devDependencies": {
"lint-staged": "^11.0.0",
"npm-run-all": "^4.1.5",
"prettier": "^2.3.1",
"textlint-scripts": "^12.0.1",
"textlint-tester": "^12.0.0"
},
"prettier": {
"singleQuote": false,
"printWidth": 120,
"tabWidth": 4,
"trailingComma": "none"
}
}