check-content
Version:
A tool for evaluating content against content standards.
54 lines (53 loc) • 1.19 kB
JSON
{
"name": "check-content",
"version": "1.7.4",
"description": "A tool for evaluating content against content standards.",
"main": "dist/cli.cjs",
"bin": {
"check-content": "dist/cli.cjs"
},
"scripts": {
"build": "tsc",
"start": "node dist/cli.cjs",
"dev": "ts-node src/cli.ts",
"test": "echo \"Error: no test specified\" && exit 1",
"prepublishOnly": "npm run build",
"postinstall": "echo \"✅ Content standards checker installed! Use 'check-standards --help' to get started.\""
},
"files": [
"dist/**/*",
"README.md",
"package.json"
],
"keywords": [
"content",
"linting",
"accessibility",
"inclusive-language",
"plain-language",
"ai",
"standards"
],
"author": "Jason Fox <jfox@company.com>",
"license": "MIT",
"engines": {
"node": ">=16.0.0"
},
"dependencies": {
"chalk": "^5.0.0",
"glob": "^10.0.0",
"yargs": "^17.0.0"
},
"devDependencies": {
"@types/node": "^20.0.0",
"@types/yargs": "^17.0.22",
"ts-node": "^10.9.1",
"typescript": "^5.0.0"
},
"repository": {
"type": "git",
"url": ""
},
"homepage": "",
"types": "./dist/cli.d.ts"
}