{
  "name": "readability-scores",
  "version": "1.0.8",
  "description": "Tests the readability of a string using multiple formulas",
  "license": "MIT",
  "keywords": [
    "automated",
    "readability",
    "coleman",
    "liau",
    "dale",
    "chall",
    "flesch",
    "kincaid",
    "gunning",
    "fog",
    "smog",
    "spache",
    "formula",
    "index"
  ],
  "repository": "MichaelChambers/readability-scores",
  "bugs": "https://github.com/MichaelChambers/readability-scores/issues",
  "funding": {
    "type": "github",
    "url": "https://github.com/sponsors/wooorm"
  },
  "author": "Michael Chambers <chamicr@gmail.com>",
  "contributors": [
    "Michael Chambers <chamicr@gmail.com>",
    "Titus Wormer <tituswormer@gmail.com> (https://wooorm.com)"
  ],
  "files": [
    "index.js",
    "index.d.ts"
  ],
  "types": "index.d.ts",
  "dependencies": {
    "automated-readability": "^1.0.5",
    "coleman-liau": "^1.0.5",
    "dale-chall": "^1.0.4",
    "dale-chall-formula": "^1.0.5",
    "flesch": "^1.0.5",
    "global": "^4.4.0",
    "gunning-fog": "^1.0.6",
    "nlcst-normalize": "^2.1.4",
    "nlcst-to-string": "^2.0.4",
    "retext-english": "^3.0.4",
    "smog-formula": "^1.0.5",
    "spache": "^1.1.5",
    "spache-formula": "^1.0.5",
    "stemmer": "^1.0.5",
    "syllable": "^4.1.0",
    "unified": "^9.0.0",
    "unist-util-visit": "^2.0.2"
  },
  "devDependencies": {
    "browserify": "^16.5.1",
    "nyc": "^15.0.1",
    "prettier": "^2.0.5",
    "remark-cli": "^8.0.0",
    "remark-preset-wooorm": "^7.0.0",
    "tape": "^5.0.0",
    "tinyify": "^2.5.2",
    "xo": "^0.30.0"
  },
  "scripts": {
    "format": "remark . -qfo && prettier --write \"**/*.js\" && xo --fix",
    "build-bundle": "browserify . -s readabilityScores -o readability-scores.js",
    "build-mangle": "browserify . -s readabilityScores -p tinyify -o readability-scores.min.js",
    "build": "npm run build-bundle && npm run build-mangle",
    "test-api": "node test",
    "test-coverage": "nyc --reporter lcov tape test.js",
    "test": "npm run format && npm run build && npm run test-coverage"
  },
  "nyc": {
    "check-coverage": true,
    "lines": 100,
    "functions": 100,
    "branches": 100
  },
  "prettier": {
    "tabWidth": 4,
    "useTabs": true,
    "singleQuote": true,
    "bracketSpacing": false,
    "semi": false,
    "trailingComma": "none"
  },
  "xo": {
    "prettier": true,
    "esnext": false,
    "ignores": [
      "readability-scores.js"
    ],
    "rules": {
		"unicorn/no-for-loop": "off",
      "unicorn/prefer-includes": "off"
    }},
  "remarkConfig": {
    "plugins": [
      "preset-wooorm"
    ]
  }
}
