{
  "name": "@readme/ui",
  "version": "1.17.8",
  "description": "A modular component library and design system for the ReadMe front end.",
  "main": ".bundles/umd/index.js",
  "browser": ".bundles/umd/index.js",
  "module": ".bundles/es/index.js",
  "directories": {
    "lib": ".bundles/lib",
    "umd": ".bundles/umd",
    "es": ".bundles/es"
  },
  "scripts": {
    "release": "npx semantic-release",
    "release.debug": "npm run release -- --dryRun --debug",
    "build": "webpack",
    "heroku-postbuild": "npm run docs:build",
    "docs": "npx nodemon -w styleguide.config.js -x 'styleguidist server'",
    "docs:build": "styleguidist build",
    "icons": "make icons",
    "lint": "eslint . --ext js --ext jsx",
    "prepack": "# npm run build # && npm run icons",
    "pretest": "npm run lint",
    "postbuild": "babel --config-file ./esm.babel.config.json -d ./.bundles/es ./src",
    "prettier": "prettier --list-different --write \"./**/**.{js,jsx}\"",
    "start": "styleguidist server",
    "linkup": "bash tasks/linkup.sh",
    "test": "jest --coverage",
    "test:watch": "jest --coverage=false --watch",
    "watch": "webpack -w --progress",
    "elem": "bash tasks/new-elem.sh"
  },
  "dependencies": {
    "@bem-react/classname": "^1.5.7",
    "@readme/emojis": "^3.0.0",
    "@readme/oas-to-snippet": "^10.0.4",
    "@readme/syntax-highlighter": "^10.4.1",
    "@readme/variable": "^10.0.0",
    "algoliasearch": "^4.1.0",
    "clipboard-copy": "^3.1.0",
    "emoji-regex": "^9.0.0",
    "js-cookie": "^2.2.1",
    "lodash": "^4.17.15",
    "modularscale-sass": "^3.0.10",
    "react-instantsearch-dom": "^6.4.0"
  },
  "peerDependencies": {
    "react": "16.x",
    "react-dom": "^16.x"
  },
  "devDependencies": {
    "@babel/cli": "^7.11.6",
    "@babel/core": "^7.11.6",
    "@babel/plugin-proposal-class-properties": "^7.10.4",
    "@babel/plugin-transform-modules-commonjs": "^7.10.4",
    "@babel/plugin-transform-runtime": "^7.11.5",
    "@babel/preset-env": "^7.11.5",
    "@babel/preset-react": "^7.10.4",
    "@babel/runtime": "^7.11.2",
    "@commitlint/cli": "^9.0.1",
    "@commitlint/config-angular": "^9.0.1",
    "@commitlint/config-conventional": "^9.0.1",
    "@readme/eslint-config": "^4.0.0",
    "@semantic-release/changelog": "^5.0.1",
    "@semantic-release/git": "^9.0.0",
    "@testing-library/jest-dom": "^5.11.6",
    "@testing-library/react": "^11.2.2",
    "@testing-library/react-hooks": "^3.4.1",
    "babel-eslint": "^10.1.0",
    "babel-jest": "26.6.3",
    "babel-loader": "^8.1.0",
    "babel-plugin-css-modules-transform": "^1.6.2",
    "babel-plugin-module-resolver": "^4.0.0",
    "babel-polyfill": "^6.26.0",
    "css-loader": "^3.4.2",
    "enzyme": "^3.9.0",
    "enzyme-adapter-react-16": "^1.3.0",
    "eslint": "^7.7.0",
    "fetch-mock": "^9.10.4",
    "husky": "^4.2.5",
    "identity-obj-proxy": "^3.0.0",
    "isomorphic-fetch": "^2.2.1",
    "jest": "^26.0.1",
    "mini-css-extract-plugin": "^0.9.0",
    "node-sass": "^4.13.0",
    "node-sass-tilde-importer": "^1.0.2",
    "nodemon": "^2.0.2",
    "parallel-webpack": "^2.6.0",
    "postcss-gradient-transparency-fix": "^3.0.0",
    "postcss-loader": "^3.0.0",
    "postcss-preset-env": "^6.7.0",
    "prettier": "^2.0.5",
    "prop-types": "^15.7.2",
    "react": "^16.13.1",
    "react-dom": "^16.13.1",
    "react-styleguidist": "^11.0.0",
    "sass-loader": "^7.3.1",
    "semantic-release": "^17.0.4",
    "style-loader": "^2.0.0",
    "svg-react-loader": "^0.4.6",
    "terser-webpack-plugin": "^4.2.2",
    "url-loader": "^4.1.0",
    "webpack": "^4.44.2",
    "webpack-cli": "^3.3.12"
  },
  "husky": {
    "hooks": {
      "commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
    }
  },
  "author": "Rafe Goldberg <rafegoldberg@gmail.com> http://rgd2.co",
  "license": "ISC",
  "homepage": "https://readmeio.github.io/ui/#!/",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/readmeio/ui.git"
  },
  "publishConfig": {
    "registry": "http://registry.npmjs.org",
    "access": "public"
  },
  "jest": {
    "testURL": "http://localhost",
    "testPathIgnorePatterns": [
      "es/",
      "lib/",
      "src/styles"
    ],
    "coverageThreshold": {
      "global": {
        "branches": 80,
        "functions": 80,
        "lines": 80,
        "statements": 80
      }
    },
    "setupFiles": [
      "<rootDir>/vendor/enzyme"
    ],
    "setupFilesAfterEnv": [
      "<rootDir>/vendor/jest-dom"
    ],
    "coveragePathIgnorePatterns": [
      "<rootDir>/webpack.*.js"
    ],
    "collectCoverageFrom": [
      "src/**/*.{js,jsx}",
      "!**/node_modules/**",
      "!**/coverage/lcov-report/**"
    ],
    "transform": {
      "^.+\\.jsx?$": "babel-jest",
      ".+\\.(css|styl|less|sass|scss)$": "identity-obj-proxy"
    },
    "moduleNameMapper": {
      "@utils": "<rootDir>/src/core/utils",
      "^.+\\.(css|less|scss)$": "identity-obj-proxy",
      "@ui": "<rootDir>/src/ui"
    }
  },
  "bugs": {
    "url": "https://github.com/readmeio/ui/issues"
  },
  "keywords": [
    "ui-library",
    "component-library",
    "living-styleguide",
    "react"
  ],
  "engines": {
    "node": ">=10"
  },
  "prettier": "@readme/eslint-config/prettier"
}
