@twilio-labs/languagetool-cli
Version:
Run LanguageTool for linting Markdown files during CI
53 lines • 1.39 kB
JSON
{
"name": "@twilio-labs/languagetool-cli",
"version": "1.5.0",
"description": "Run LanguageTool for linting Markdown files during CI",
"keywords": [
"languagetool",
"cli"
],
"repository": "https://github.com/twilio-labs/languagetool-cli",
"author": "Twilio Labs",
"license": "MIT",
"private": false,
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"type": "module",
"main": "dist/index.js",
"bin": {
"languagetool-cli": "./dist/run.js"
},
"files": [
"dist/",
"README.md"
],
"scripts": {
"build": "tsc && echo \"#!/usr/bin/env node\" >./dist/run.js && cat ./dist/index.js >>./dist/run.js && chmod +x ./dist/run.js",
"prepack": "yarn build",
"test": "c8 ts-node-esm node_modules/uvu/bin.js test"
},
"devDependencies": {
"@types/node": "^17.0.21",
"@types/sinon": "^10.0.13",
"@types/yargs": "^17.0.9",
"@typescript-eslint/eslint-plugin": "^5.14.0",
"@typescript-eslint/parser": "^5.14.0",
"c8": "^7.11.0",
"eslint": "^8.10.0",
"expect": "^27.5.1",
"nock": "^13.2.4",
"sinon": "^14.0.1",
"ts-node": "^10.7.0",
"typescript": "^4.6.2",
"uvu": "^0.5.3"
},
"dependencies": {
"annotatedtext-remark": "^1.0.2",
"node-fetch": "^3.2.2",
"octokit": "^1.7.1",
"vfile-location": "^4.0.1",
"yargs": "^17.3.1"
}
}