{
  "name": "readability-component",
  "version": "1.0.10",
  "type": "module",
  "description": "This is a fairly simple web component that can be used to wrap around your content and determine its readability level, as well as the average time it would take to read.",
  "main": "dist/readability.cjs.min.js",
  "module": "dist/readability.es.min.js",
  "scripts": {
    "start": "npm-run-all clean --parallel start:server start:dev",
    "start:server": "http-server -p 8080 ./",
    "start:dev": "npm run build:dev -- --watch",
    "build": "npm-run-all clean --parallel build:*",
    "build:dev": "rollup --config rollup/rollup.config.dev.js",
    "build:prod": "rollup --config rollup/rollup.config.prod.js",
    "generate-syllable-map": "node --experimental-json-modules data/syllableCountMapGenerator.js",
    "clean": "rimraf dist",
    "test": "jest",
    "prepublishOnly": "npm-run-all test build"
  },
  "author": "Richie Casto (https://github.com/rcasto)",
  "homepage": "https://github.com/rcasto/readability-component#readme",
  "repository": {
    "type": "git",
    "url": "https://github.com/rcasto/readability-component.git"
  },
  "keywords": [
    "web component",
    "readability",
    "flesch–kincaid",
    "flesch",
    "kincaid",
    "time to read"
  ],
  "license": "MIT",
  "dependencies": {},
  "devDependencies": {
    "@babel/core": "7.10.5",
    "@babel/plugin-proposal-class-properties": "7.10.4",
    "@babel/preset-env": "7.10.4",
    "@rollup/plugin-babel": "5.1.0",
    "@rollup/plugin-json": "4.1.0",
    "babel-jest": "26.1.0",
    "http-server": "0.12.3",
    "jest": "26.1.0",
    "npm-run-all": "4.1.5",
    "rimraf": "3.0.2",
    "rollup": "2.22.1",
    "rollup-plugin-terser": "6.1.0"
  }
}
