{
  "_args": [
    [
      "@welldone-software/why-did-you-render@3.6.0",
      "/data/DATAPROJECTS/bigcommerce/groupbc/bundle-checkout-js-main"
    ]
  ],
  "_from": "@welldone-software/why-did-you-render@3.6.0",
  "_id": "@welldone-software/why-did-you-render@3.6.0",
  "_inBundle": false,
  "_integrity": "sha512-UQEfDlsAm2xgPObUvlBdqp0lph+at1Z+KPYtl33gPGKZx/yPFQEZVgpycRAhNyQjmaFbqhIqub7X/y5v/vAlmw==",
  "_location": "/@welldone-software/why-did-you-render",
  "_phantomChildren": {},
  "_requested": {
    "type": "version",
    "registry": true,
    "raw": "@welldone-software/why-did-you-render@3.6.0",
    "name": "@welldone-software/why-did-you-render",
    "escapedName": "@welldone-software%2fwhy-did-you-render",
    "scope": "@welldone-software",
    "rawSpec": "3.6.0",
    "saveSpec": null,
    "fetchSpec": "3.6.0"
  },
  "_requiredBy": [
    "/"
  ],
  "_resolved": "https://registry.npmjs.org/@welldone-software/why-did-you-render/-/why-did-you-render-3.6.0.tgz",
  "_spec": "3.6.0",
  "_where": "/data/DATAPROJECTS/bigcommerce/groupbc/bundle-checkout-js-main",
  "authors": [
    "Vitali Zaidman <vzaidman@gmail.com> (https://github.com/vzaidman)"
  ],
  "browser": "dist/umd/whyDidYouRender.min.js",
  "browser-no-classes-transpile": "dist/no-classes-transpile/umd/whyDidYouRender.min.js",
  "bugs": {
    "url": "https://github.com/welldone-software/why-did-you-render/issues"
  },
  "dependencies": {
    "lodash": "^4"
  },
  "description": "Monkey patches React to notify you about avoidable re-renders.",
  "devDependencies": {
    "@babel/cli": "^7.8.3",
    "@babel/core": "^7.8.3",
    "@babel/plugin-proposal-class-properties": "^7.8.3",
    "@babel/preset-env": "^7.8.3",
    "@babel/preset-react": "^7.8.3",
    "@testing-library/jest-dom": "^5.0.2",
    "@testing-library/react": "^9.4.0",
    "@types/react-redux": "^7.1.7",
    "@welldone-software/jest-console-handler": "^0.1.1",
    "acorn-walk": "^7.0.0",
    "astring": "^1.4.3",
    "babel-core": "^7.0.0-bridge.0",
    "babel-eslint": "^10.0.3",
    "babel-jest": "^25.1.0",
    "babel-plugin-lodash": "^3.3.4",
    "concurrently": "^5.0.2",
    "create-react-class": "^15.6.3",
    "cross-env": "^6.0.3",
    "eslint": "^6.8.0",
    "eslint-plugin-jest": "^23.6.0",
    "eslint-plugin-react": "^7.18.0",
    "express": "^4.17.1",
    "express-history-api-fallback": "^2.2.1",
    "husky": "^4.2.1",
    "jest": "^25.1.0",
    "jest-cli": "^25.1.0",
    "magic-string": "^0.25.6",
    "nollup": "^0.10.3",
    "react": "^16.12.0",
    "react-dom": "npm:@hot-loader/react-dom@^16.11.0",
    "react-hot-loader": "^4.12.19",
    "react-redux": "^7.1.3",
    "redux": "^4.0.5",
    "rimraf": "^3.0.0",
    "rollup": "^1.29.1",
    "rollup-plugin-babel": "^4.3.3",
    "rollup-plugin-commonjs": "^10.1.0",
    "rollup-plugin-commonjs-alternate": "^0.1.1",
    "rollup-plugin-license": "^0.13.0",
    "rollup-plugin-node-resolve": "^5.2.0",
    "rollup-plugin-replace": "^2.2.0",
    "rollup-plugin-terser": "^5.2.0",
    "styled-components": "^5.0.0",
    "typescript": "^3.7.5"
  },
  "files": [
    "src",
    "dist",
    "types.d.ts"
  ],
  "homepage": "https://github.com/welldone-software/why-did-you-render#readme",
  "husky": {
    "hooks": {
      "pre-commit": "npm run lint"
    }
  },
  "jest": {
    "cacheDirectory": ".cache/jest-cache",
    "modulePaths": [
      "<rootDir>/src"
    ],
    "setupFilesAfterEnv": [
      "<rootDir>/jestSetup.js"
    ]
  },
  "keywords": [
    "react",
    "component",
    "pure",
    "performance",
    "render",
    "update",
    "tool"
  ],
  "license": "MIT",
  "main": "dist/cjs/whyDidYouRender.min.js",
  "main-no-classes-transpile": "dist/no-classes-transpile/cjs/whyDidYouRender.min.js",
  "module": "dist/esm/whyDidYouRender.min.js",
  "module-no-classes-transpile": "dist/no-classes-transpile/esm/whyDidYouRender.min.js",
  "name": "@welldone-software/why-did-you-render",
  "peerDependencies": {
    "react": ">=16.12"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/welldone-software/why-did-you-render.git"
  },
  "scripts": {
    "build": "cross-env NODE_ENV=production rollup --config",
    "checkHealth": "yarn lint && yarn test",
    "clear": "rimraf .cache dist demo/dist",
    "lint": "eslint . --ext=js --cache --cache-location .cache/eslint-cache",
    "lint:fix": "yarn lint --fix",
    "postversion": "git push && git push --tags",
    "start": "cross-env PORT=3003 NODE_ENV=development node demo/serve",
    "test": "cross-env TEST=true jest \"./tests\"",
    "test:watch": "yarn test --watch",
    "version": "yarn checkHealth && yarn build && git add --all dist",
    "watch": "concurrently --names \"Serve,Test\" \"npm:start\" \"npm:test:watch\""
  },
  "types": "types.d.ts",
  "version": "3.6.0"
}
