{"maintainers":[{"name":"anonymous","email":"ftntravis@gmail.com"}],"keywords":["react","component","measure","measurements","dimensions","element-queries","container-queries","size"],"dist-tags":{"latest":"2.5.2"},"author":{"name":"Travis Arnold","email":"travis@souporserious.com","url":"http://souporserious.com"},"description":"Compute measurements of React components.","readme":"## 📏 React Measure\n\n[![npm version](https://badge.fury.io/js/react-measure.svg)](https://badge.fury.io/js/react-measure)\n[![Dependency Status](https://david-dm.org/souporserious/react-measure.svg)](https://david-dm.org/souporserious/react-measure)\n\nCompute measurements of React components. Uses a\n[`ResizeObserver`](https://developers.google.com/web/updates/2016/10/resizeobserver)\nto detect when an element's dimensions have changed.\n\nIncludes a\n[polyfill for `ResizeObserver`](https://github.com/que-etc/resize-observer-polyfill)\nin unsupported browsers.\n\n## Install\n\n`yarn add react-measure`\n\n`npm install react-measure --save`\n\n```html\n<script src=\"https://unpkg.com/react-measure/dist/index.umd.js\"></script>\n(UMD library exposed as `ReactMeasure`)\n```\n\n## Measure Component\n\nWrap any child component and calculate its client rect.\n\n### Props\n\n#### `client`: PropTypes.bool\n\nAdds the following to `contentRect.client` returned in the child function.\n\n[clientTop](https://developer.mozilla.org/en-US/docs/Web/API/Element/clientTop),\n[clientLeft](https://developer.mozilla.org/en-US/docs/Web/API/Element/clientLeft),\n[clientWidth](https://developer.mozilla.org/en-US/docs/Web/API/Element/clientWidth),\nand\n[clientHeight](https://developer.mozilla.org/en-US/docs/Web/API/Element/clientHeight).\n\n#### `offset`: PropTypes.bool\n\nAdds the following to `contentRect.offset` returned in the child function.\n\n[offsetTop](https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement/offsetTop),\n[offsetLeft](https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement/offsetLeft),\n[offsetWidth](https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement/offsetWidth),\nand\n[offsetHeight](https://developer.mozilla.org/en-US/docs/Web/API/HTMLElement/offsetHeight).\n\n#### `scroll`: PropTypes.bool\n\nAdds the following to `contentRect.scroll` returned in the child function.\n\n[scrollTop](https://developer.mozilla.org/en-US/docs/Web/API/Element/scrollTop),\n[scrollLeft](https://developer.mozilla.org/en-US/docs/Web/API/Element/scrollLeft),\n[scrollWidth](https://developer.mozilla.org/en-US/docs/Web/API/Element/scrollWidth),\nand\n[scrollHeight](https://developer.mozilla.org/en-US/docs/Web/API/Element/scrollHeight).\n\n#### `bounds`: PropTypes.bool\n\nUses\n[getBoundingClientRect](https://developer.mozilla.org/en-US/docs/Web/API/Element/getBoundingClientRect)\nto calculate the element rect and add it to `contentRect.bounds` returned in the\nchild function.\n\n#### `margin`: PropTypes.bool\n\nUses\n[getComputedStyle](https://developer.mozilla.org/en-US/docs/Web/API/Window/getComputedStyle)\nto calculate margins and add it to `contentRect.margin` returned in the child\nfunction.\n\n#### `innerRef`: PropTypes.func\n\nUse this to access the internal component `ref`.\n\n#### `onResize`: PropTypes.func\n\nCallback invoked when either element width or height have changed. Note that this will be called twice on mount to get the initial values. The first call will come from `componentDidMount` while the second call will come from the `ResizeObserver`.\n\n#### `children`: PropTypes.func\n\nChildren must be a function. Will receive the following object shape:\n\n- `measureRef`: must be passed down to your component's ref in order to obtain a\n  proper node to measure\n\n- `measure`: use to programmatically measure your component, calls the internal\n  `measure` method in `withContentRect`\n\n- `contentRect`: this will contain any of the following allowed rects from\n  above: `client`, `offset`, `scroll`, `bounds`, or `margin`. It will also\n  include `entry` from the `ResizeObserver` when available.\n\n### Example\n\n```javascript\nimport Measure from 'react-measure'\nimport classNames from 'classnames'\n\nclass ItemToMeasure extends Component {\n  state = {\n    dimensions: {\n      width: -1,\n      height: -1,\n    },\n  }\n\n  render() {\n    const { width, height } = this.state.dimensions\n    const className = classNames(width < 400 && 'small-width-modifier')\n\n    return (\n      <Measure\n        bounds\n        onResize={contentRect => {\n          this.setState({ dimensions: contentRect.bounds })\n        }}\n      >\n        {({ measureRef }) => (\n          <div ref={measureRef} className={className}>\n            I can do cool things with my dimensions now :D\n            {height > 250 && (\n              <div>Render responsive content based on the component size!</div>\n            )}\n          </div>\n        )}\n      </Measure>\n    )\n  }\n}\n```\n\n## withContentRect(types) HoC\n\nA higher-order component that provides dimensions to the wrapped component.\nAccepts `types`, which determines what measurements are returned, similar to\nabove. Then returns a function to pass the component you want measured.\n\nPass an array or single value of either `client`, `offset`, `scroll`, `bounds`,\nor `margin` to calculate and receive those measurements as the prop\n`contentRect` in your wrapped component. You can also use the `measure` function\npassed down to programmatically measure your component if you need to. And\nfinally, remember to pass down the `measureRef` to the component you want\nmeasured.\n\nPasses down the same props as the `Measure` child function above, `measureRef`,\n`measure`, and `contentRect`.\n\nFun fact, the `Measure` component is a thin wrapper around `withContentRect`.\nJust check\n[the source](https://github.com/souporserious/react-measure/blob/master/src/Measure.js).\nThis means your wrapped component will accept the same props as `Measure` does\n😊\n\n### Example\n\n```javascript\nimport { withContentRect } from 'react-measure'\n\nconst ItemToMeasure = withContentRect('bounds')(\n  ({ measureRef, measure, contentRect }) => (\n    <div ref={measureRef}>\n      Some content here\n      <pre>{JSON.stringify(contentRect, null, 2)}</pre>\n    </div>\n  )\n)\n```\n\n## Run Example\n\nclone repo\n\n`git clone git@github.com:souporserious/react-measure.git`\n\nmove into folder\n\n`cd ~/react-measure`\n\ninstall package dependencies\n\n`yarn`\n\nmove into site folder and install local site dependencies\n\n`cd ~/site && yarn`\n\nrun development mode\n\n`yarn gatsby develop`\n","repository":{"type":"git","url":"https://github.com/souporserious/react-measure"},"users":{"nelix":true,"pddivine":true,"aviral23":true,"whathejoe":true,"bonashen":true,"orenschwartz":true,"gamersdelight":true,"plmrry":true,"ahmed-ab":true},"bugs":{"url":"https://github.com/souporserious/react-measure/issues"},"license":"MIT","versions":{"0.0.1":{"name":"react-measure","version":"0.0.1","description":"React component to compute measurements of a component.","main":"lib/index.js","scripts":{"build":"npm run build:lib && NODE_ENV=production webpack --config webpack.prod.config.js","build:lib":"babel src --out-dir lib --stage 0","dev":"webpack-dev-server --devtool eval --hot --progress --colors","prebuild":"rm -rf dist && mkdir dist","prepublish":"npm run build","postbuild":"NODE_ENV=production TARGET=minify webpack --config webpack.prod.config.js","test":"echo \"Error: no test specified\" && exit 1"},"repository":{"type":"git","url":"https://github.com/souporserious/react-measure"},"keywords":["react","component","measure","measurements","dimensions"],"author":{"name":"Travis Arnold","email":"travis@souporserious.com","url":"http://souporserious.com"},"license":"MIT","bugs":{"url":"https://github.com/souporserious/react-measure/issues"},"homepage":"https://github.com/souporserious/react-measure","peerDependencies":{"react":">=0.13.2 || ^0.14.0-beta1"},"devDependencies":{"autoprefixer-loader":"^2.0.0","babel":"^5.8.23","babel-core":"^5.6.15","babel-loader":"^5.2.2","css-loader":"^0.15.1","http-server":"^0.8.0","node-libs-browser":"^0.5.2","node-sass":"^3.2.0","react":"^0.13.3 || ^0.14.0-beta1","react-motion":"^0.2.7","sass-loader":"^1.0.2","style-loader":"^0.12.3","webpack":"^1.9.12","webpack-dev-server":"^1.9.0"},"gitHead":"d39f37cebcd28404eef5cb99413650c8038069b2","_id":"react-measure@0.0.1","_shasum":"be1059a8670da82a98174473f47192580b802f6d","_from":".","_npmVersion":"2.7.5","_nodeVersion":"0.12.2","_npmUser":{"name":"anonymous","email":"travis@souporserious.com"},"dist":{"shasum":"be1059a8670da82a98174473f47192580b802f6d","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/react-measure/-/react-measure-0.0.1.tgz","integrity":"sha512-s7D6/Lz3qGgqB0C6Q93RY6TPJWGvqsnHID/23/J4YJtRSlkvs9/3VK6XrIx6NoQBDwQZVsnilMNQ1urgF7HfVQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIBDrwu/fUeqfcdhDL+PfKHV6vDe1epllW5J475A6TJ0bAiBjN509ZubkYJIjqwmbdzrSt3Dt7yG172qHGudsBf9l4Q=="}]},"maintainers":[{"name":"anonymous","email":"travis@souporserious.com"}],"directories":{}},"0.0.2":{"name":"react-measure","version":"0.0.2","description":"Compute measurements of React components.","main":"lib/react-measure.js","scripts":{"build":"npm run build:lib && NODE_ENV=production webpack --config webpack.prod.config.js","build:lib":"babel src --out-dir lib --stage 0","dev":"webpack-dev-server --devtool eval --hot --progress --colors","prebuild":"rm -rf dist && mkdir dist","prepublish":"npm run build","postbuild":"NODE_ENV=production TARGET=minify webpack --config webpack.prod.config.js","test":"echo \"Error: no test specified\" && exit 1"},"repository":{"type":"git","url":"https://github.com/souporserious/react-measure"},"keywords":["react","component","measure","measurements","dimensions"],"author":{"name":"Travis Arnold","email":"travis@souporserious.com","url":"http://souporserious.com"},"license":"MIT","bugs":{"url":"https://github.com/souporserious/react-measure/issues"},"homepage":"https://github.com/souporserious/react-measure","peerDependencies":{"react":">=0.13.2 || ^0.14.0-beta1"},"devDependencies":{"autoprefixer-loader":"^2.0.0","babel":"^5.8.23","babel-core":"^5.6.15","babel-loader":"^5.2.2","css-loader":"^0.15.1","http-server":"^0.8.0","node-libs-browser":"^0.5.2","node-sass":"^3.2.0","react":"^0.13.3 || ^0.14.0-beta1","react-motion":"^0.2.7","sass-loader":"^1.0.2","style-loader":"^0.12.3","webpack":"^1.9.12","webpack-dev-server":"^1.9.0"},"gitHead":"14eef3379510bd4f8f1b2850d72441ceb0187df0","_id":"react-measure@0.0.2","_shasum":"740fc692dafec0137ba383f15aa3b178a3d047ea","_from":".","_npmVersion":"2.7.5","_nodeVersion":"0.12.2","_npmUser":{"name":"anonymous","email":"travis@souporserious.com"},"dist":{"shasum":"740fc692dafec0137ba383f15aa3b178a3d047ea","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/react-measure/-/react-measure-0.0.2.tgz","integrity":"sha512-NmTus3QwalQXX+xr3DRd7id6eeCtOWUap49P0Dfs/7G/Mvud5E0+c3ilbQ54JwyfWRs2633V35XlR4xWruqnsQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDt1QL7bO8/ewRccZDVJAgwww9K/WF8D6afX5XDkSs8sgIgVWBn44UMqGdHiTGkYjy2dX1aLcDgHk/PS4xoXWmUYS0="}]},"maintainers":[{"name":"anonymous","email":"travis@souporserious.com"}],"directories":{}},"0.0.3":{"name":"react-measure","version":"0.0.3","description":"Compute measurements of React components.","main":"lib/react-measure.js","scripts":{"build":"npm run build:lib && NODE_ENV=production webpack --config webpack.prod.config.js","build:lib":"babel src --out-dir lib --stage 0","dev":"webpack-dev-server --devtool eval --hot --progress --colors","prebuild":"rm -rf dist && mkdir dist","prepublish":"npm run build","postbuild":"NODE_ENV=production TARGET=minify webpack --config webpack.prod.config.js","test":"echo \"Error: no test specified\" && exit 1"},"repository":{"type":"git","url":"https://github.com/souporserious/react-measure"},"keywords":["react","component","measure","measurements","dimensions"],"author":{"name":"Travis Arnold","email":"travis@souporserious.com","url":"http://souporserious.com"},"license":"MIT","bugs":{"url":"https://github.com/souporserious/react-measure/issues"},"homepage":"https://github.com/souporserious/react-measure","peerDependencies":{"react":">=0.13.2 || ^0.14.0-beta1"},"devDependencies":{"autoprefixer-loader":"^2.0.0","babel":"^5.8.23","babel-core":"^5.6.15","babel-loader":"^5.2.2","css-loader":"^0.15.1","http-server":"^0.8.0","node-libs-browser":"^0.5.2","node-sass":"^3.2.0","react":"^0.13.3 || ^0.14.0-beta1","react-motion":"^0.2.7","sass-loader":"^1.0.2","style-loader":"^0.12.3","webpack":"^1.9.12","webpack-dev-server":"^1.9.0"},"gitHead":"ac159c3080449b95495088b8b67f654a88dcef74","_id":"react-measure@0.0.3","_shasum":"989ed0855f03088a1c08a253421f838b3d43166d","_from":".","_npmVersion":"2.7.5","_nodeVersion":"0.12.2","_npmUser":{"name":"anonymous","email":"travis@souporserious.com"},"dist":{"shasum":"989ed0855f03088a1c08a253421f838b3d43166d","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/react-measure/-/react-measure-0.0.3.tgz","integrity":"sha512-A0NFqvnSFemKsjbkAPrx06GeJAr5VwfPHKa+bsEpkzzFA2p2RRuNRev5CvplDkI+ONtzAj1hdpnUXyxFE3bXTg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDGvFAfFfUjKQfOdXexRgI/uR3SUWFbnLoE9iDmCjsRAgIgAZSSNHV2h+34zfm/w1jPnhezNSgG632eg+rHmdOgC+I="}]},"maintainers":[{"name":"anonymous","email":"travis@souporserious.com"}],"directories":{}},"0.0.4":{"name":"react-measure","version":"0.0.4","description":"Compute measurements of React components.","main":"lib/react-measure.js","scripts":{"build":"npm run build:lib && NODE_ENV=production webpack --config webpack.prod.config.js","build:lib":"babel src --out-dir lib --stage 0","dev":"webpack-dev-server --devtool eval --hot --progress --colors","prebuild":"rm -rf dist && mkdir dist","prepublish":"npm run build","postbuild":"NODE_ENV=production TARGET=minify webpack --config webpack.prod.config.js","test":"echo \"Error: no test specified\" && exit 1"},"repository":{"type":"git","url":"https://github.com/souporserious/react-measure"},"keywords":["react","component","measure","measurements","dimensions"],"author":{"name":"Travis Arnold","email":"travis@souporserious.com","url":"http://souporserious.com"},"license":"MIT","bugs":{"url":"https://github.com/souporserious/react-measure/issues"},"homepage":"https://github.com/souporserious/react-measure","peerDependencies":{"react":">=0.13.2 || ^0.14.0-beta1"},"devDependencies":{"autoprefixer-loader":"^2.0.0","babel":"^5.8.23","babel-core":"^5.6.15","babel-loader":"^5.2.2","css-loader":"^0.15.1","http-server":"^0.8.0","node-libs-browser":"^0.5.2","node-sass":"^3.2.0","react":"^0.13.3 || ^0.14.0-beta1","react-motion":"^0.2.7","sass-loader":"^1.0.2","style-loader":"^0.12.3","webpack":"^1.9.12","webpack-dev-server":"^1.9.0"},"gitHead":"8338f5220e03fbf006c7a632a8f3b56a3ed4dcb7","_id":"react-measure@0.0.4","_shasum":"5b285f81ffc7250e3462960ca419ec4bacdd22df","_from":".","_npmVersion":"2.7.5","_nodeVersion":"0.12.2","_npmUser":{"name":"anonymous","email":"travis@souporserious.com"},"dist":{"shasum":"5b285f81ffc7250e3462960ca419ec4bacdd22df","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/react-measure/-/react-measure-0.0.4.tgz","integrity":"sha512-8PvEW1OqeCcJdCgac+YA3ZX0fQPH0WIiAYQtrw5/oWqLm4V6xmQ18zkcTGNNOy2iB5UQQrBENQps50+4hw0/cA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIFFU+sLTxZ6n0pg4TVef1F4vvl3uXc3CWmsLLJoKQd6ZAiBAHkMl9m4yshcJ9M2Suzrufw/WF7vwdB8clNmAOvJWvA=="}]},"maintainers":[{"name":"anonymous","email":"travis@souporserious.com"}],"directories":{}},"0.0.5":{"name":"react-measure","version":"0.0.5","description":"Compute measurements of React components.","main":"lib/react-measure.js","scripts":{"build":"npm run build:lib && NODE_ENV=production webpack --config webpack.prod.config.js","build:lib":"babel src --out-dir lib --stage 0","dev":"webpack-dev-server --devtool eval --hot --progress --colors","prebuild":"rm -rf dist && mkdir dist","prepublish":"npm run build","postbuild":"NODE_ENV=production TARGET=minify webpack --config webpack.prod.config.js","test":"echo \"Error: no test specified\" && exit 1"},"repository":{"type":"git","url":"https://github.com/souporserious/react-measure"},"keywords":["react","component","measure","measurements","dimensions"],"author":{"name":"Travis Arnold","email":"travis@souporserious.com","url":"http://souporserious.com"},"license":"MIT","bugs":{"url":"https://github.com/souporserious/react-measure/issues"},"homepage":"https://github.com/souporserious/react-measure","peerDependencies":{"react":">=0.13.2 || ^0.14.0-beta1"},"devDependencies":{"autoprefixer-loader":"^2.0.0","babel":"^5.8.23","babel-core":"^5.6.15","babel-loader":"^5.2.2","css-loader":"^0.15.1","http-server":"^0.8.0","node-libs-browser":"^0.5.2","node-sass":"^3.2.0","react":"^0.13.3 || ^0.14.0-beta1","react-motion":"^0.2.7","sass-loader":"^1.0.2","style-loader":"^0.12.3","webpack":"^1.9.12","webpack-dev-server":"^1.9.0"},"gitHead":"decc8b3ff350645105a1fbdd3462de25cdc6e190","_id":"react-measure@0.0.5","_shasum":"e092d5940905752fd66570bb4076dbf08b7e64ae","_from":".","_npmVersion":"2.7.5","_nodeVersion":"0.12.2","_npmUser":{"name":"anonymous","email":"travis@souporserious.com"},"dist":{"shasum":"e092d5940905752fd66570bb4076dbf08b7e64ae","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/react-measure/-/react-measure-0.0.5.tgz","integrity":"sha512-LxtZmFXOicUM4HrRQ5tnLbk1zc7EtJ648XBXTb1ZO4yGuKY01UM74kjBgwuXD/5GLQA4G111wQxrkDt6Uv2XuA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIGWE9TTDbnBwWNCj7hvVyriUbk26Abu/B4923/dOfUcAAiAqebfr0pqqWEL4y/R40tYl2zVfHJPDw+T9XAt4jOFisA=="}]},"maintainers":[{"name":"anonymous","email":"travis@souporserious.com"}],"directories":{}},"0.0.6":{"name":"react-measure","version":"0.0.6","description":"Compute measurements of React components.","main":"lib/react-measure.js","scripts":{"build":"npm run build:lib && NODE_ENV=production webpack --config webpack.prod.config.js","build:lib":"babel src --out-dir lib --stage 0","dev":"webpack-dev-server --devtool eval --hot --progress --colors","prebuild":"rm -rf dist && mkdir dist","prepublish":"npm run build","postbuild":"NODE_ENV=production TARGET=minify webpack --config webpack.prod.config.js","test":"echo \"Error: no test specified\" && exit 1"},"repository":{"type":"git","url":"https://github.com/souporserious/react-measure"},"keywords":["react","component","measure","measurements","dimensions"],"author":{"name":"Travis Arnold","email":"travis@souporserious.com","url":"http://souporserious.com"},"license":"MIT","bugs":{"url":"https://github.com/souporserious/react-measure/issues"},"homepage":"https://github.com/souporserious/react-measure","peerDependencies":{"react":">=0.13.2 || ^0.14.0-beta1"},"devDependencies":{"autoprefixer-loader":"^2.0.0","babel":"^5.8.23","babel-core":"^5.6.15","babel-loader":"^5.2.2","css-loader":"^0.15.1","http-server":"^0.8.0","node-libs-browser":"^0.5.2","node-sass":"^3.2.0","react":"^0.13.3 || ^0.14.0-beta1","react-motion":"^0.2.7","sass-loader":"^1.0.2","style-loader":"^0.12.3","webpack":"^1.9.12","webpack-dev-server":"^1.9.0"},"gitHead":"0258b5bf90c928309f6a6ee26b85a8a6f787f140","_id":"react-measure@0.0.6","_shasum":"31b59ee03fbb662a4c2cda1329b16958015dcc47","_from":".","_npmVersion":"2.7.5","_nodeVersion":"0.12.2","_npmUser":{"name":"anonymous","email":"travis@souporserious.com"},"dist":{"shasum":"31b59ee03fbb662a4c2cda1329b16958015dcc47","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/react-measure/-/react-measure-0.0.6.tgz","integrity":"sha512-iTPetdEFvx0/JU4tEX3Apd5XEJfPLiKut+VwIvbH5r5du3X9pSs8aTefwPF+FzFJjHh/XyMY2uUBj6dInwrGYA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCJAp/zgsbSYJc6JE3SW1uACIg4hy+oyLLoLF5fYF2kpwIgSH8VRtMPJ21P+Qt6/Ir6w/xq7XMXrH/vDN8w5l1WApA="}]},"maintainers":[{"name":"anonymous","email":"travis@souporserious.com"}],"directories":{}},"0.0.7":{"name":"react-measure","version":"0.0.7","description":"Compute measurements of React components.","main":"lib/react-measure.js","scripts":{"build":"npm run build:lib && NODE_ENV=production webpack --config webpack.prod.config.js","build:lib":"babel src --out-dir lib --stage 0","dev":"webpack-dev-server --devtool eval --hot --progress --colors","prebuild":"rm -rf dist && mkdir dist","prepublish":"npm run build","postbuild":"NODE_ENV=production TARGET=minify webpack --config webpack.prod.config.js","test":"echo \"Error: no test specified\" && exit 1"},"repository":{"type":"git","url":"https://github.com/souporserious/react-measure"},"keywords":["react","component","measure","measurements","dimensions"],"author":{"name":"Travis Arnold","email":"travis@souporserious.com","url":"http://souporserious.com"},"license":"MIT","bugs":{"url":"https://github.com/souporserious/react-measure/issues"},"homepage":"https://github.com/souporserious/react-measure","peerDependencies":{"react":">=0.13.2 || ^0.14.0-beta1"},"devDependencies":{"autoprefixer-loader":"^2.0.0","babel":"^5.8.23","babel-core":"^5.6.15","babel-loader":"^5.2.2","css-loader":"^0.15.1","http-server":"^0.8.0","node-libs-browser":"^0.5.2","node-sass":"^3.2.0","react":"^0.13.3 || ^0.14.0-beta1","react-motion":"^0.2.7","sass-loader":"^1.0.2","style-loader":"^0.12.3","webpack":"^1.9.12","webpack-dev-server":"^1.9.0"},"gitHead":"486bce2ac86184b5b013f43c11959667e9a4bb2a","_id":"react-measure@0.0.7","_shasum":"3b6b07bf00126508de4a0e89ef1b410c8d977d8b","_from":".","_npmVersion":"2.7.5","_nodeVersion":"0.12.2","_npmUser":{"name":"anonymous","email":"travis@souporserious.com"},"dist":{"shasum":"3b6b07bf00126508de4a0e89ef1b410c8d977d8b","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/react-measure/-/react-measure-0.0.7.tgz","integrity":"sha512-ud/38pPJdRtz0zt8XWzrdhl4+dNae9xDSXxmKqv9SQ5RAInsp1lfBGYpF3mHktNeh6asKVxEs34b3z/pRrzJ8g==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIEgjdEZDYyUy9q4RmZtuBZFJ6Q7twT0s5XRQtoBg54/hAiEA33i029IYhoE38tBkOjp/anvoIKUDpeBrp7dBSzHD5QM="}]},"maintainers":[{"name":"anonymous","email":"travis@souporserious.com"}],"directories":{}},"0.0.8":{"name":"react-measure","version":"0.0.8","description":"Compute measurements of React components.","main":"lib/react-measure.js","scripts":{"build":"npm run build:lib && NODE_ENV=production webpack --config webpack.prod.config.js","build:lib":"babel src --out-dir lib --stage 0","dev":"webpack-dev-server --devtool eval --hot --progress --colors","prebuild":"rm -rf dist && mkdir dist","prepublish":"npm run build","postbuild":"NODE_ENV=production TARGET=minify webpack --config webpack.prod.config.js","test":"echo \"Error: no test specified\" && exit 1"},"repository":{"type":"git","url":"https://github.com/souporserious/react-measure"},"keywords":["react","component","measure","measurements","dimensions"],"author":{"name":"Travis Arnold","email":"travis@souporserious.com","url":"http://souporserious.com"},"license":"MIT","bugs":{"url":"https://github.com/souporserious/react-measure/issues"},"homepage":"https://github.com/souporserious/react-measure","peerDependencies":{"react":">=0.13.2 || ^0.14.0-beta1"},"devDependencies":{"autoprefixer-loader":"^2.0.0","babel":"^5.8.23","babel-core":"^5.6.15","babel-loader":"^5.2.2","css-loader":"^0.15.1","http-server":"^0.8.0","node-libs-browser":"^0.5.2","node-sass":"^3.2.0","react":"^0.13.3 || ^0.14.0-beta1","react-motion":"^0.2.7","sass-loader":"^1.0.2","style-loader":"^0.12.3","webpack":"^1.9.12","webpack-dev-server":"^1.9.0"},"gitHead":"2556737b5263036f8541e6cb6c3c4a812a539602","_id":"react-measure@0.0.8","_shasum":"ab628f17dbdb930e23e8416c4b4f645f4b035a80","_from":".","_npmVersion":"2.7.5","_nodeVersion":"0.12.2","_npmUser":{"name":"anonymous","email":"travis@souporserious.com"},"dist":{"shasum":"ab628f17dbdb930e23e8416c4b4f645f4b035a80","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/react-measure/-/react-measure-0.0.8.tgz","integrity":"sha512-AtQTkCRopCHd9nYZp32hQ+LfUYwgFc8KTL9ASn5XGAW7Tm8PRA6wReF782xuKjzx44AUH8QhbcDL5JmxRXLcEQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCg1f1YW8bbSs1PDCzHbfVpDpwzl7EoBNQshJExAZTN5AIgYkaL6IHN+3YRyYDTfgO9SmvtEUSXjUFNyzch2nWycbI="}]},"maintainers":[{"name":"anonymous","email":"travis@souporserious.com"}],"directories":{}},"0.1.0":{"name":"react-measure","version":"0.1.0","description":"Compute measurements of React components.","main":"lib/react-measure.js","scripts":{"build":"npm run build:lib && NODE_ENV=production webpack --config webpack.prod.config.js","build:lib":"babel src --out-dir lib --stage 0","dev":"webpack-dev-server --devtool eval --hot --progress --colors","prebuild":"rm -rf dist && mkdir dist","prepublish":"npm run build","postbuild":"NODE_ENV=production TARGET=minify webpack --config webpack.prod.config.js","test":"echo \"Error: no test specified\" && exit 1"},"repository":{"type":"git","url":"https://github.com/souporserious/react-measure"},"keywords":["react","component","measure","measurements","dimensions"],"author":{"name":"Travis Arnold","email":"travis@souporserious.com","url":"http://souporserious.com"},"license":"MIT","bugs":{"url":"https://github.com/souporserious/react-measure/issues"},"homepage":"https://github.com/souporserious/react-measure","peerDependencies":{"react":">=0.13.2 || ^0.14.0-beta1"},"devDependencies":{"autoprefixer-loader":"^2.0.0","babel":"^5.8.23","babel-core":"^5.6.15","babel-loader":"^5.2.2","css-loader":"^0.15.1","http-server":"^0.8.0","node-libs-browser":"^0.5.2","node-sass":"^3.2.0","react":"^0.13.3 || ^0.14.0-beta1","react-motion":"^0.2.7","sass-loader":"^1.0.2","style-loader":"^0.12.3","webpack":"^1.9.12","webpack-dev-server":"^1.9.0"},"gitHead":"14d54bedec8574f5f2e795fd2722faaed656b300","_id":"react-measure@0.1.0","_shasum":"0e64d3379afba4c029436c69fffb8973bb123637","_from":".","_npmVersion":"2.7.5","_nodeVersion":"0.12.2","_npmUser":{"name":"anonymous","email":"travis@souporserious.com"},"dist":{"shasum":"0e64d3379afba4c029436c69fffb8973bb123637","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/react-measure/-/react-measure-0.1.0.tgz","integrity":"sha512-gb04FZnkxn0SEE8iegDiEc19Z1v4IJe0EgHptN2sFP/nLb/vAq29IZ5xY2qmbS308yt6Z/G+ORxAehnmCgIqbg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCkLH7wYwKaNFrox3EeeH6JZvS7Ni4qAmxsTYkr5/8kygIgMx2ygJY5NyHJt3VKOmZs+jXJ7GFxth8UwWHrWwjmJMs="}]},"maintainers":[{"name":"anonymous","email":"travis@souporserious.com"}],"directories":{}},"0.1.1":{"name":"react-measure","version":"0.1.1","description":"Compute measurements of React components.","main":"lib/react-measure.js","scripts":{"build":"npm run build:lib && NODE_ENV=production webpack --config webpack.prod.config.js","build:lib":"babel src --out-dir lib --stage 0","dev":"webpack-dev-server --devtool eval --hot --progress --colors","prebuild":"rm -rf dist && mkdir dist","prepublish":"npm run build","postbuild":"NODE_ENV=production TARGET=minify webpack --config webpack.prod.config.js","test":"echo \"Error: no test specified\" && exit 1"},"repository":{"type":"git","url":"https://github.com/souporserious/react-measure"},"keywords":["react","component","measure","measurements","dimensions"],"author":{"name":"Travis Arnold","email":"travis@souporserious.com","url":"http://souporserious.com"},"license":"MIT","bugs":{"url":"https://github.com/souporserious/react-measure/issues"},"homepage":"https://github.com/souporserious/react-measure","peerDependencies":{"react":">=0.13.2 || ^0.14.0-beta1"},"devDependencies":{"autoprefixer-loader":"^2.0.0","babel":"^5.8.23","babel-core":"^5.6.15","babel-loader":"^5.2.2","css-loader":"^0.15.1","http-server":"^0.8.0","node-libs-browser":"^0.5.2","node-sass":"^3.2.0","react":"^0.13.3 || ^0.14.0-beta1","react-motion":"^0.2.7","sass-loader":"^1.0.2","style-loader":"^0.12.3","webpack":"^1.9.12","webpack-dev-server":"^1.9.0"},"gitHead":"25291b6a265d203114804552e3c31a0cc3848dee","_id":"react-measure@0.1.1","_shasum":"ba7817d2726b7300e8cf92d31566c9fa593ed224","_from":".","_npmVersion":"2.7.5","_nodeVersion":"0.12.2","_npmUser":{"name":"anonymous","email":"travis@souporserious.com"},"dist":{"shasum":"ba7817d2726b7300e8cf92d31566c9fa593ed224","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/react-measure/-/react-measure-0.1.1.tgz","integrity":"sha512-nNr1kwU5L8XlMm2/8Y/21Ag1WfvmoNMV264qGeAujjhCN/R7Bo+vdeBwkbW4pECltH3WxYOLJrm9WTLUoIOMMQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIHT8w7JkEUMQ7+PKe/8ZQErMN1aXzeQMdHDaSkfCdRp6AiBWmvd3yw38JUErXhCxKk6H2KXvUuTBH+7Lj5G+vdLYVA=="}]},"maintainers":[{"name":"anonymous","email":"travis@souporserious.com"}],"directories":{}},"0.1.2":{"name":"react-measure","version":"0.1.2","description":"Compute measurements of React components.","main":"lib/react-measure.js","scripts":{"build":"npm run build:lib && NODE_ENV=production webpack --config webpack.prod.config.js","build:lib":"babel src --out-dir lib --stage 0","dev":"webpack-dev-server --devtool eval --hot --progress --colors","prebuild":"rm -rf dist && mkdir dist","prepublish":"npm run build","postbuild":"NODE_ENV=production TARGET=minify webpack --config webpack.prod.config.js","test":"echo \"Error: no test specified\" && exit 1"},"repository":{"type":"git","url":"https://github.com/souporserious/react-measure"},"keywords":["react","component","measure","measurements","dimensions"],"author":{"name":"Travis Arnold","email":"travis@souporserious.com","url":"http://souporserious.com"},"license":"MIT","bugs":{"url":"https://github.com/souporserious/react-measure/issues"},"homepage":"https://github.com/souporserious/react-measure","peerDependencies":{"react":">=0.13.2 || ^0.14.0-beta1"},"devDependencies":{"autoprefixer-loader":"^2.0.0","babel":"^5.8.23","babel-core":"^5.6.15","babel-loader":"^5.2.2","css-loader":"^0.15.1","http-server":"^0.8.0","node-libs-browser":"^0.5.2","node-sass":"^3.2.0","react":"^0.13.3 || ^0.14.0-beta1","react-motion":"^0.2.7","sass-loader":"^1.0.2","style-loader":"^0.12.3","webpack":"^1.9.12","webpack-dev-server":"^1.9.0"},"gitHead":"981b868e6ee6deb640b766d4c8059bf60789154e","_id":"react-measure@0.1.2","_shasum":"125a3a63b7f3654ac9a7f5d2b886c513057d1873","_from":".","_npmVersion":"2.7.5","_nodeVersion":"0.12.2","_npmUser":{"name":"anonymous","email":"travis@souporserious.com"},"dist":{"shasum":"125a3a63b7f3654ac9a7f5d2b886c513057d1873","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/react-measure/-/react-measure-0.1.2.tgz","integrity":"sha512-4KL7xyf60JGAvK004tqRaPj1S/o54RWnoEbeGuVPWvSLIDDnrb/gW4kkLYz5XbkuEn0yg4ajbnvDsPId0R5tjw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIH5wDptj88ugmGKvZ/gIUDQ3WZm+SWOcJwdvv4nJj9RyAiEA//LdhgID9KxPmlb85jSMYXmE1rMUXjzIoGZVphYj5gk="}]},"maintainers":[{"name":"anonymous","email":"travis@souporserious.com"}],"directories":{}},"0.1.3":{"name":"react-measure","version":"0.1.3","description":"Compute measurements of React components.","main":"lib/react-measure.js","scripts":{"build":"npm run build:lib && NODE_ENV=production webpack --config webpack.prod.config.js","build:lib":"babel src --out-dir lib --stage 0","dev":"webpack-dev-server --devtool eval --hot --progress --colors","prebuild":"rm -rf dist && mkdir dist","prepublish":"npm run build","postbuild":"NODE_ENV=production TARGET=minify webpack --config webpack.prod.config.js","test":"echo \"Error: no test specified\" && exit 1"},"repository":{"type":"git","url":"https://github.com/souporserious/react-measure"},"keywords":["react","component","measure","measurements","dimensions"],"author":{"name":"Travis Arnold","email":"travis@souporserious.com","url":"http://souporserious.com"},"license":"MIT","bugs":{"url":"https://github.com/souporserious/react-measure/issues"},"homepage":"https://github.com/souporserious/react-measure","peerDependencies":{"react":">=0.13.2 || ^0.14.0-beta1"},"devDependencies":{"autoprefixer-loader":"^2.0.0","babel":"^5.8.23","babel-core":"^5.6.15","babel-loader":"^5.2.2","css-loader":"^0.15.1","http-server":"^0.8.0","node-libs-browser":"^0.5.2","node-sass":"^3.2.0","react":"^0.13.3 || ^0.14.0-beta1","react-motion":"^0.2.7","sass-loader":"^1.0.2","style-loader":"^0.12.3","webpack":"^1.9.12","webpack-dev-server":"^1.9.0"},"gitHead":"f664d1a352790ff13ec00a96b8371b2543fbc3f6","_id":"react-measure@0.1.3","_shasum":"f635425a30c090243eb55f533272f48792237fc7","_from":".","_npmVersion":"2.7.5","_nodeVersion":"0.12.2","_npmUser":{"name":"anonymous","email":"travis@souporserious.com"},"dist":{"shasum":"f635425a30c090243eb55f533272f48792237fc7","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/react-measure/-/react-measure-0.1.3.tgz","integrity":"sha512-hYwzogrdcxwAPHL1xSzYMvjKlbvVp+3zNHR9a+ExjTR2RanALbHOB5SzalRoKH3l/Mx5nzl/2mwSLhjFoNlHLA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIGdn5ZBnH1N6cUOWaMiUax/mmWns2n9blXQ8TWspQHkvAiBjhcdYxBsvhxJ4JburCHug6EQ66r16x3ICGmlmIvAhhA=="}]},"maintainers":[{"name":"anonymous","email":"travis@souporserious.com"}],"directories":{}},"0.2.0":{"name":"react-measure","version":"0.2.0","description":"Compute measurements of React components.","main":"lib/react-measure.js","scripts":{"build":"npm run build:lib && NODE_ENV=production webpack --config webpack.prod.config.js","build:lib":"babel src --out-dir lib --stage 0","dev":"webpack-dev-server --devtool eval --hot --progress --colors","prebuild":"rm -rf dist && mkdir dist","prepublish":"npm run build","postbuild":"NODE_ENV=production TARGET=minify webpack --config webpack.prod.config.js","test":"echo \"Error: no test specified\" && exit 1"},"repository":{"type":"git","url":"https://github.com/souporserious/react-measure"},"keywords":["react","component","measure","measurements","dimensions"],"author":{"name":"Travis Arnold","email":"travis@souporserious.com","url":"http://souporserious.com"},"license":"MIT","bugs":{"url":"https://github.com/souporserious/react-measure/issues"},"homepage":"https://github.com/souporserious/react-measure","dependencies":{"react":"^0.14.0","react-dom":"^0.14.0"},"devDependencies":{"autoprefixer-loader":"^2.0.0","babel":"^5.8.23","babel-core":"^5.6.15","babel-loader":"^5.2.2","css-loader":"^0.15.1","http-server":"^0.8.0","node-libs-browser":"^0.5.2","node-sass":"^3.2.0","react-motion":"^0.3.1","sass-loader":"^1.0.2","style-loader":"^0.12.3","webpack":"^1.9.12","webpack-dev-server":"^1.9.0"},"gitHead":"ce2e52b4e5d0110bf719c73aaa7a9acd9674342d","_id":"react-measure@0.2.0","_shasum":"77b3d5df84c11f6cf4cf0d1781a355f0d97fd7d5","_from":".","_npmVersion":"2.7.5","_nodeVersion":"0.12.2","_npmUser":{"name":"anonymous","email":"travis@souporserious.com"},"dist":{"shasum":"77b3d5df84c11f6cf4cf0d1781a355f0d97fd7d5","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/react-measure/-/react-measure-0.2.0.tgz","integrity":"sha512-trL8RosVIiArmmMqI0so5kyVqs8loIFIqwQXQJUKHhBy5txWpUAHzRTFmlWjH8oX6BxJ+qZ22f/+LVjb1vUh+w==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIHI4cQpfsW/rukpcvXSShxbk3+aqCDQqSixqBCqVlFBrAiAILE9E1CH510TxX/RouE9+kuafDe/nXA+SH3UkdlO52Q=="}]},"maintainers":[{"name":"anonymous","email":"travis@souporserious.com"}],"directories":{}},"0.3.0":{"name":"react-measure","version":"0.3.0","description":"Compute measurements of React components.","main":"lib/react-measure.js","scripts":{"build":"npm run build:lib && NODE_ENV=production webpack --config webpack.prod.config.js","build:lib":"babel src --out-dir lib --stage 0","dev":"webpack-dev-server --devtool eval --hot --progress --colors","prebuild":"rm -rf dist && mkdir dist","prepublish":"npm run build","postbuild":"NODE_ENV=production TARGET=minify webpack --config webpack.prod.config.js","test":"echo \"Error: no test specified\" && exit 1"},"repository":{"type":"git","url":"https://github.com/souporserious/react-measure"},"keywords":["react","component","measure","measurements","dimensions"],"author":{"name":"Travis Arnold","email":"travis@souporserious.com","url":"http://souporserious.com"},"license":"MIT","bugs":{"url":"https://github.com/souporserious/react-measure/issues"},"homepage":"https://github.com/souporserious/react-measure","peerDependencies":{"react":"^0.14.0","react-dom":"^0.14.0"},"devDependencies":{"autoprefixer-loader":"^2.0.0","babel":"^5.8.23","babel-core":"^5.6.15","babel-loader":"^5.2.2","css-loader":"^0.15.1","http-server":"^0.8.0","node-libs-browser":"^0.5.2","node-sass":"^3.2.0","react-motion":"^0.3.1","sass-loader":"^1.0.2","style-loader":"^0.12.3","webpack":"^1.9.12","webpack-dev-server":"^1.9.0"},"gitHead":"f1fd47b729c17469e46af8ec019f34a6bc95b7f0","_id":"react-measure@0.3.0","_shasum":"56e38e4028810e92dd687085e075a25d5feee724","_from":".","_npmVersion":"2.7.5","_nodeVersion":"0.12.2","_npmUser":{"name":"anonymous","email":"travis@souporserious.com"},"dist":{"shasum":"56e38e4028810e92dd687085e075a25d5feee724","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/react-measure/-/react-measure-0.3.0.tgz","integrity":"sha512-nU+IE94V+X8U0YYs20w0sv0m1NH/iAw2/0c2flD5CAG4oQozjDfp5W/tXkvwli6f2cjQxW4YLdYexA/N309NGw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDtyzOdkvB3FvmTOHPM11/O3fsqmg90HidZO2q8s64HPgIhAJrATCx+KWnjRlLzCTB8oPvKnMsfcDoHYK79LIcLfqvb"}]},"maintainers":[{"name":"anonymous","email":"travis@souporserious.com"}],"directories":{}},"0.3.1":{"name":"react-measure","version":"0.3.1","description":"Compute measurements of React components.","main":"lib/react-measure.js","scripts":{"build":"npm run build:lib && NODE_ENV=production webpack --config webpack.prod.config.js","build:lib":"babel src --out-dir lib --stage 0","dev":"webpack-dev-server --devtool eval --hot --progress --colors","prebuild":"rm -rf dist && mkdir dist","prepublish":"npm run build","postbuild":"NODE_ENV=production TARGET=minify webpack --config webpack.prod.config.js","test":"echo \"Error: no test specified\" && exit 1"},"repository":{"type":"git","url":"https://github.com/souporserious/react-measure"},"keywords":["react","component","measure","measurements","dimensions"],"author":{"name":"Travis Arnold","email":"travis@souporserious.com","url":"http://souporserious.com"},"license":"MIT","bugs":{"url":"https://github.com/souporserious/react-measure/issues"},"homepage":"https://github.com/souporserious/react-measure","peerDependencies":{"react":"^0.14.0","react-dom":"^0.14.0"},"devDependencies":{"autoprefixer-loader":"^2.0.0","babel":"^5.8.23","babel-core":"^5.6.15","babel-loader":"^5.2.2","css-loader":"^0.15.1","http-server":"^0.8.0","node-libs-browser":"^0.5.2","node-sass":"^3.2.0","react-motion":"^0.3.1","sass-loader":"^1.0.2","style-loader":"^0.12.3","webpack":"^1.9.12","webpack-dev-server":"^1.9.0"},"gitHead":"c1f819eb7e954f42a62707dae7987c98f320bfc7","_id":"react-measure@0.3.1","_shasum":"c99215b66c3d57b03e23cb480c5590e14743a908","_from":".","_npmVersion":"2.7.5","_nodeVersion":"0.12.2","_npmUser":{"name":"anonymous","email":"travis@souporserious.com"},"dist":{"shasum":"c99215b66c3d57b03e23cb480c5590e14743a908","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/react-measure/-/react-measure-0.3.1.tgz","integrity":"sha512-evjvjrLTrZEzpN7WS3h5iYhwDlXCMkrsRkhaqi2IgWLWhpNtGe53m/uNm7MMFOv7Mmdlscd07ITFvKmeRCuHSg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCowX/Pp5AzUbkM3QDlGl0S7nG+/N/HuDKgxkKnQIRxPQIgetNLFw0DjhvjJuCb/sGvH30SGUJq3yyWe37iRtyOEJs="}]},"maintainers":[{"name":"anonymous","email":"travis@souporserious.com"}],"directories":{}},"0.3.2":{"name":"react-measure","version":"0.3.2","description":"Compute measurements of React components.","main":"lib/react-measure.js","scripts":{"build":"npm run build:lib && NODE_ENV=production webpack --config webpack.prod.config.js","build:lib":"babel src --out-dir lib --stage 0","dev":"webpack-dev-server --devtool eval --hot --progress --colors","prebuild":"rm -rf dist && mkdir dist","prepublish":"npm run build","postbuild":"NODE_ENV=production TARGET=minify webpack --config webpack.prod.config.js","test":"echo \"Error: no test specified\" && exit 1"},"repository":{"type":"git","url":"https://github.com/souporserious/react-measure"},"keywords":["react","component","measure","measurements","dimensions"],"author":{"name":"Travis Arnold","email":"travis@souporserious.com","url":"http://souporserious.com"},"license":"MIT","bugs":{"url":"https://github.com/souporserious/react-measure/issues"},"homepage":"https://github.com/souporserious/react-measure","peerDependencies":{"react":"^0.14.0","react-dom":"^0.14.0"},"dependencies":{"lodash.debounce":"^3.1.1","react-addons-shallow-compare":"^0.14.0"},"devDependencies":{"autoprefixer-loader":"^2.0.0","babel":"^5.8.23","babel-core":"^5.6.15","babel-loader":"^5.2.2","css-loader":"^0.15.1","http-server":"^0.8.0","node-libs-browser":"^0.5.2","node-sass":"^3.2.0","react-motion":"^0.3.1","sass-loader":"^1.0.2","style-loader":"^0.12.3","webpack":"^1.9.12","webpack-dev-server":"^1.9.0"},"gitHead":"2fe38218dbb69c82bb46255cee4d4d504562ffce","_id":"react-measure@0.3.2","_shasum":"b3f8e49f84b72d41c4a2f29a871563512d39894e","_from":".","_npmVersion":"2.7.5","_nodeVersion":"0.12.2","_npmUser":{"name":"anonymous","email":"travis@souporserious.com"},"dist":{"shasum":"b3f8e49f84b72d41c4a2f29a871563512d39894e","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/react-measure/-/react-measure-0.3.2.tgz","integrity":"sha512-VUvSHTkTJhoXmzA8wTN3j3AOTXBAXHQdU5HLm2NmiI3gos1SIrNSDY/O3TBXjowjLm0EyqUXR84xv0R35IqKZg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCLBALvCYyG0Twgg0ix7jGWCd2RTTnR0vSDAPfofFkNwwIgan6fM8OHeoLwP5t/5yQvF0nzs+igG+Jx99EhpwFmJSw="}]},"maintainers":[{"name":"anonymous","email":"travis@souporserious.com"}],"directories":{}},"0.3.3":{"name":"react-measure","version":"0.3.3","description":"Compute measurements of React components.","main":"lib/react-measure.js","scripts":{"build":"npm run build:lib && NODE_ENV=production webpack --config webpack.prod.config.js","build:lib":"babel src --out-dir lib --stage 0","dev":"webpack-dev-server --devtool eval --hot --progress --colors","prebuild":"rm -rf dist && mkdir dist","prepublish":"npm run build","postbuild":"NODE_ENV=production TARGET=minify webpack --config webpack.prod.config.js","test":"echo \"Error: no test specified\" && exit 1"},"repository":{"type":"git","url":"https://github.com/souporserious/react-measure"},"keywords":["react","component","measure","measurements","dimensions"],"author":{"name":"Travis Arnold","email":"travis@souporserious.com","url":"http://souporserious.com"},"license":"MIT","bugs":{"url":"https://github.com/souporserious/react-measure/issues"},"homepage":"https://github.com/souporserious/react-measure","dependencies":{"react":"^0.14.0","react-dom":"^0.14.0","react-addons-shallow-compare":"^0.14.0","lodash.debounce":"^3.1.1"},"devDependencies":{"autoprefixer-loader":"^2.0.0","babel":"^5.8.23","babel-core":"^5.6.15","babel-loader":"^5.2.2","css-loader":"^0.15.1","http-server":"^0.8.0","node-libs-browser":"^0.5.2","node-sass":"^3.2.0","react-motion":"^0.3.1","sass-loader":"^1.0.2","style-loader":"^0.12.3","webpack":"^1.9.12","webpack-dev-server":"^1.9.0"},"gitHead":"3ca27465f40d9b7817db649aebc8c43d9dc9bab4","_id":"react-measure@0.3.3","_shasum":"2b5287a9248fbbafe6d39979c0b56ea459b988af","_from":".","_npmVersion":"2.7.5","_nodeVersion":"0.12.2","_npmUser":{"name":"anonymous","email":"travis@souporserious.com"},"dist":{"shasum":"2b5287a9248fbbafe6d39979c0b56ea459b988af","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/react-measure/-/react-measure-0.3.3.tgz","integrity":"sha512-xbVEDvFxhayqb4abmxv7zUOuVM6+cX65Mvwv/Qox+8eznaV/J7AVnL2SibBC34xCxuKptGvDgpnOxvLpX8y2ag==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDnZdsN4uglSthsMAWetwK2IQvrSkr2xkZnEXABgKrzXwIhAOpVKOqbbqF7JKujRTwB/YFLtUD0vwy9Lm62MFcIFgXC"}]},"maintainers":[{"name":"anonymous","email":"travis@souporserious.com"}],"directories":{}},"0.3.4":{"name":"react-measure","version":"0.3.4","description":"Compute measurements of React components.","main":"lib/react-measure.js","scripts":{"build":"npm run build:lib && NODE_ENV=production webpack --config webpack.prod.config.js","build:lib":"babel src --out-dir lib --stage 0","dev":"webpack-dev-server --devtool eval --hot --progress --colors","prebuild":"rm -rf dist && mkdir dist","prepublish":"npm run build","postbuild":"NODE_ENV=production TARGET=minify webpack --config webpack.prod.config.js","test":"echo \"Error: no test specified\" && exit 1"},"repository":{"type":"git","url":"https://github.com/souporserious/react-measure"},"keywords":["react","component","measure","measurements","dimensions"],"author":{"name":"Travis Arnold","email":"travis@souporserious.com","url":"http://souporserious.com"},"license":"MIT","bugs":{"url":"https://github.com/souporserious/react-measure/issues"},"homepage":"https://github.com/souporserious/react-measure","dependencies":{"react":"^0.14.0","react-dom":"^0.14.0","react-addons-shallow-compare":"^0.14.0","lodash.debounce":"^3.1.1"},"devDependencies":{"autoprefixer-loader":"^2.0.0","babel":"^5.8.23","babel-core":"^5.6.15","babel-loader":"^5.2.2","css-loader":"^0.15.1","http-server":"^0.8.0","node-libs-browser":"^0.5.2","node-sass":"^3.2.0","react-motion":"^0.3.1","sass-loader":"^1.0.2","style-loader":"^0.12.3","webpack":"^1.9.12","webpack-dev-server":"^1.9.0"},"gitHead":"48a79d97a037cb1346987c136a4b040ae30957d1","_id":"react-measure@0.3.4","_shasum":"40cf5c122fd6847114ea359eb6be2fbd4016bb39","_from":".","_npmVersion":"2.7.5","_nodeVersion":"0.12.2","_npmUser":{"name":"anonymous","email":"travis@souporserious.com"},"dist":{"shasum":"40cf5c122fd6847114ea359eb6be2fbd4016bb39","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/react-measure/-/react-measure-0.3.4.tgz","integrity":"sha512-IkPnGNPEnYRYqpQHXWycQdkzU7KeUdLtu1JpSaB8wT0SIMdC6NYotF7c1FbTH7c44m6Cs7devY42Hfn6Z2CmjA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDR8rYso6SFOZf0mb35NxAHzbokt9KsYMPdt1O47l1NwgIgAk5h2tdeNvqoC14wnUYyHEPekkCgf+Lmn1Mp03HSrDI="}]},"maintainers":[{"name":"anonymous","email":"travis@souporserious.com"}],"directories":{}},"0.3.5":{"name":"react-measure","version":"0.3.5","description":"Compute measurements of React components.","main":"lib/react-measure.js","scripts":{"build":"npm run build:lib && NODE_ENV=production webpack --config webpack.prod.config.js","build:lib":"babel src --out-dir lib --stage 0","dev":"webpack-dev-server --devtool eval --hot --progress --colors","prebuild":"rm -rf dist && mkdir dist","prepublish":"npm run build","postbuild":"NODE_ENV=production TARGET=minify webpack --config webpack.prod.config.js","test":"echo \"Error: no test specified\" && exit 1"},"repository":{"type":"git","url":"https://github.com/souporserious/react-measure"},"keywords":["react","component","measure","measurements","dimensions"],"author":{"name":"Travis Arnold","email":"travis@souporserious.com","url":"http://souporserious.com"},"license":"MIT","bugs":{"url":"https://github.com/souporserious/react-measure/issues"},"homepage":"https://github.com/souporserious/react-measure","dependencies":{"lodash.debounce":"^3.1.1"},"devDependencies":{"autoprefixer-loader":"^2.0.0","babel":"^5.8.23","babel-core":"^5.6.15","babel-loader":"^5.2.2","css-loader":"^0.15.1","http-server":"^0.8.0","node-libs-browser":"^0.5.2","node-sass":"^3.2.0","react-addons-shallow-compare":"^0.14.0","react-motion":"^0.3.1","sass-loader":"^1.0.2","style-loader":"^0.12.3","webpack":"^1.9.12","webpack-dev-server":"^1.9.0"},"peerDependencies":{"react":">0.13.0","react-dom":">0.13.0"},"gitHead":"f6ab6493e01032680dcb2da45ff89ec75c41e7f5","_id":"react-measure@0.3.5","_shasum":"4e6e5ec93a2781f84f5a05b8b86d9586fb7d6b15","_from":".","_npmVersion":"2.7.5","_nodeVersion":"0.12.2","_npmUser":{"name":"anonymous","email":"travis@souporserious.com"},"dist":{"shasum":"4e6e5ec93a2781f84f5a05b8b86d9586fb7d6b15","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/react-measure/-/react-measure-0.3.5.tgz","integrity":"sha512-xPieSsViF3rmOzK28nTmAzAucLhLw+F47yUA9mrnBXMUEoK1D52oRFcuI1Yes4/rHQGqYiPPyhq9zXp4qsne1g==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIE+Pc7SudWJ3/E83BDKzlVfOrJgxqvNsJDL1+1m2/SOlAiB+Dl99zEBjdrxok2WakCthC+T6vSQ5IxrnXEFKzKEXSA=="}]},"maintainers":[{"name":"anonymous","email":"travis@souporserious.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/react-measure-0.3.5.tgz_1457560276617_0.42989041679538786"},"directories":{}},"0.4.0":{"name":"react-measure","version":"0.4.0","description":"Compute measurements of React components.","main":"lib/react-measure.js","scripts":{"build":"npm run build:lib && NODE_ENV=production webpack --config webpack.prod.config.js","build:lib":"babel src --out-dir lib --stage 0","dev":"webpack-dev-server --devtool eval --hot --progress --colors","prebuild":"rm -rf dist && mkdir dist","prepublish":"npm run build","postbuild":"NODE_ENV=production TARGET=minify webpack --config webpack.prod.config.js","test":"echo \"Error: no test specified\" && exit 1"},"repository":{"type":"git","url":"git+https://github.com/souporserious/react-measure.git"},"keywords":["react","component","measure","measurements","dimensions","element-queries","container-queries","size"],"author":{"name":"Travis Arnold","email":"travis@souporserious.com","url":"http://souporserious.com"},"license":"MIT","bugs":{"url":"https://github.com/souporserious/react-measure/issues"},"homepage":"https://github.com/souporserious/react-measure","dependencies":{"element-resize-detector":"^1.1.4"},"devDependencies":{"autoprefixer-loader":"^2.0.0","babel":"^5.8.23","babel-core":"^5.6.15","babel-loader":"^5.2.2","css-loader":"^0.15.1","http-server":"^0.8.0","node-libs-browser":"^0.5.2","node-sass":"^3.2.0","react-addons-shallow-compare":"^0.14.0","react-motion":"^0.4.2","sass-loader":"^1.0.2","style-loader":"^0.12.3","webpack":"^1.9.12","webpack-dev-server":"^1.9.0"},"peerDependencies":{"react":">0.13.0","react-dom":">0.13.0"},"gitHead":"15632a59ae1792fd4c1934ecf4b2d621eb3ebd7b","_id":"react-measure@0.4.0","_shasum":"5355b8cb7d582d0b5ea7aa9b717223b50ab608fb","_from":".","_npmVersion":"3.8.6","_nodeVersion":"5.11.0","_npmUser":{"name":"anonymous","email":"travis@souporserious.com"},"dist":{"shasum":"5355b8cb7d582d0b5ea7aa9b717223b50ab608fb","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/react-measure/-/react-measure-0.4.0.tgz","integrity":"sha512-xLJfqrf6VB5XUG2H0OxEigNLKXZFRv+M4fb4MgV4Cw/bpfOn5uv8QiHVFTJp9GNGRk31IK/rIzgFfcLA+bxawA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIDi59XJlvmZg4ozr4sqaUwdNOVqHsWZ6ERaKrc5lNtWZAiBlKHnUuFMfapLWe4OpLN+r3XREl41hdRo1moNTIUAbXw=="}]},"maintainers":[{"name":"anonymous","email":"travis@souporserious.com"}],"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/react-measure-0.4.0.tgz_1467050511868_0.7696414112579077"},"directories":{}},"0.4.1":{"name":"react-measure","version":"0.4.1","description":"Compute measurements of React components.","main":"lib/react-measure.js","scripts":{"build":"npm run build:lib && NODE_ENV=production webpack --config webpack.prod.config.js","build:lib":"babel src --out-dir lib --stage 0","dev":"webpack-dev-server --devtool eval --hot --progress --colors","prebuild":"rm -rf dist && mkdir dist","prepublish":"npm run build","postbuild":"NODE_ENV=production TARGET=minify webpack --config webpack.prod.config.js","test":"echo \"Error: no test specified\" && exit 1"},"repository":{"type":"git","url":"git+https://github.com/souporserious/react-measure.git"},"keywords":["react","component","measure","measurements","dimensions","element-queries","container-queries","size"],"author":{"name":"Travis Arnold","email":"travis@souporserious.com","url":"http://souporserious.com"},"license":"MIT","bugs":{"url":"https://github.com/souporserious/react-measure/issues"},"homepage":"https://github.com/souporserious/react-measure","peerDependencies":{"react":">0.13.0","react-dom":">0.13.0"},"dependencies":{"element-resize-detector":"^1.1.5"},"devDependencies":{"autoprefixer-loader":"^2.0.0","babel":"^5.8.23","babel-core":"^5.6.15","babel-loader":"^5.2.2","css-loader":"^0.15.1","http-server":"^0.8.0","node-libs-browser":"^0.5.2","node-sass":"^3.2.0","react":"15.2.1","react-dom":"15.2.1","react-motion":"^0.4.2","sass-loader":"^1.0.2","style-loader":"^0.12.3","webpack":"^1.9.12","webpack-dev-server":"^1.9.0"},"gitHead":"3430d47c1141efe4c8dc7e6f901ffe4ec229ff59","_id":"react-measure@0.4.1","_shasum":"e1ec94325047b6f722a7eb5ac9a1dcf1416d1f85","_from":".","_npmVersion":"3.8.6","_nodeVersion":"5.11.0","_npmUser":{"name":"anonymous","email":"travis@souporserious.com"},"dist":{"shasum":"e1ec94325047b6f722a7eb5ac9a1dcf1416d1f85","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/react-measure/-/react-measure-0.4.1.tgz","integrity":"sha512-m1OWIdRpSfFmRuexygqpngzpb1+3SLIcUFVG0BDwhfz5ExeOpdKpWEVPdfiUkjJ1jX9+TwireK5p89XSIkeANQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIHUv0dzDycoplGPZwPqL2LDRuqs6IpdCt24xpKYY6yEjAiAN37Tm/S3+sXA4B8n45lG6naIX3/IUB2qu5FzTqaaDYA=="}]},"maintainers":[{"name":"anonymous","email":"travis@souporserious.com"}],"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/react-measure-0.4.1.tgz_1469076284676_0.37546637933701277"},"directories":{}},"0.4.2":{"name":"react-measure","version":"0.4.2","description":"Compute measurements of React components.","main":"lib/react-measure.js","scripts":{"build":"npm run build:lib && NODE_ENV=production webpack --config webpack.prod.config.js","build:lib":"babel src --out-dir lib --stage 0","dev":"webpack-dev-server --devtool eval --hot --progress --colors","prebuild":"rm -rf dist lib && mkdir dist lib","prepublish":"npm run build","postbuild":"NODE_ENV=production TARGET=minify webpack --config webpack.prod.config.js","test":"echo \"Error: no test specified\" && exit 1"},"repository":{"type":"git","url":"git+https://github.com/souporserious/react-measure.git"},"keywords":["react","component","measure","measurements","dimensions","element-queries","container-queries","size"],"author":{"name":"Travis Arnold","email":"travis@souporserious.com","url":"http://souporserious.com"},"license":"MIT","bugs":{"url":"https://github.com/souporserious/react-measure/issues"},"homepage":"https://github.com/souporserious/react-measure","peerDependencies":{"react":">0.13.0","react-dom":">0.13.0"},"dependencies":{"element-resize-detector":"^1.1.5"},"devDependencies":{"autoprefixer-loader":"^2.0.0","babel":"^5.8.23","babel-core":"^5.6.15","babel-loader":"^5.2.2","css-loader":"^0.15.1","http-server":"^0.8.0","node-libs-browser":"^0.5.2","node-sass":"^3.2.0","react":"15.2.1","react-dom":"15.2.1","react-motion":"^0.4.2","sass-loader":"^1.0.2","style-loader":"^0.12.3","webpack":"^1.9.12","webpack-dev-server":"^1.9.0"},"gitHead":"4956e277cd5f905ee9d170e3cd75c47a0149f527","_id":"react-measure@0.4.2","_shasum":"3cfa8ff7314ea0fb5fb8f137b1e4fc6c81701d9b","_from":".","_npmVersion":"3.8.6","_nodeVersion":"5.11.0","_npmUser":{"name":"anonymous","email":"travis@souporserious.com"},"dist":{"shasum":"3cfa8ff7314ea0fb5fb8f137b1e4fc6c81701d9b","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/react-measure/-/react-measure-0.4.2.tgz","integrity":"sha512-3tyPC4e2ucyABhxHib7h/q1fDST4zKRdpTLb0OB+PklJxEd+7pkzpXIUkXGNPxP57MorC44aExVAmEimVn8oKw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDYQ7s+1y6tyJiUnZ6flCVTMs8+ZeO9APp/emYaKS9vHQIgN8KkzDfpb7Wm61EoOW3f3IJeARHgg1cYYf+p6cmOViU="}]},"maintainers":[{"name":"anonymous","email":"travis@souporserious.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/react-measure-0.4.2.tgz_1469751222812_0.3217623718082905"},"directories":{}},"0.5.0":{"name":"react-measure","version":"0.5.0","description":"Compute measurements of React components.","main":"lib/react-measure.js","files":["dist","lib"],"scripts":{"build":"npm run build:lib && NODE_ENV=production webpack --config webpack.prod.config.js","build:lib":"babel src --out-dir lib --stage 0","dev":"webpack-dev-server --devtool eval --hot --progress --colors","prebuild":"rm -rf dist lib && mkdir dist lib","prepublish":"npm run build","postbuild":"NODE_ENV=production TARGET=minify webpack --config webpack.prod.config.js","test":"echo \"Error: no test specified\" && exit 1"},"repository":{"type":"git","url":"git+https://github.com/souporserious/react-measure.git"},"keywords":["react","component","measure","measurements","dimensions","element-queries","container-queries","size"],"author":{"name":"Travis Arnold","email":"travis@souporserious.com","url":"http://souporserious.com"},"license":"MIT","bugs":{"url":"https://github.com/souporserious/react-measure/issues"},"homepage":"https://github.com/souporserious/react-measure","peerDependencies":{"react":">0.13.0","react-dom":">0.13.0"},"dependencies":{"element-resize-detector":"^1.1.5","get-node-dimensions":"^0.1.1"},"devDependencies":{"autoprefixer-loader":"^2.0.0","babel":"^5.8.23","babel-core":"^5.6.15","babel-loader":"^5.2.2","css-loader":"^0.15.1","http-server":"^0.8.0","node-libs-browser":"^0.5.2","node-sass":"^3.2.0","react":"15.2.1","react-dom":"15.2.1","react-motion":"^0.4.2","sass-loader":"^1.0.2","style-loader":"^0.12.3","webpack":"^1.9.12","webpack-dev-server":"^1.9.0"},"gitHead":"7828960238cd9b421ca85b7fe72f78691e98136b","_id":"react-measure@0.5.0","_shasum":"c1aa34931fcf4406467a8288d1c51a58eea97594","_from":".","_npmVersion":"3.10.5","_nodeVersion":"5.11.0","_npmUser":{"name":"anonymous","email":"travis@souporserious.com"},"dist":{"shasum":"c1aa34931fcf4406467a8288d1c51a58eea97594","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/react-measure/-/react-measure-0.5.0.tgz","integrity":"sha512-d03f2OlHHCGtKQnnDDiRjNUSW36weDj16FPoRxKUOghYghD0BvdpkuU7noOoEOuPGmMJYuVXKeSFnn2SXYOkHQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDmP5FiR+x4O41KN678dgVelJiL9UyRfZF7xtwrZ2/UpAIhAPPpqSRKy96rOLl+CUh9ppVRPabqQb2JihE51qjFo5jm"}]},"maintainers":[{"name":"anonymous","email":"travis@souporserious.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/react-measure-0.5.0.tgz_1470480714428_0.5487259684596211"},"directories":{}},"0.5.1":{"name":"react-measure","version":"0.5.1","description":"Compute measurements of React components.","main":"lib/react-measure.js","files":["dist","lib"],"scripts":{"build":"npm run build:lib && NODE_ENV=production webpack --config webpack.prod.config.js","build:lib":"babel src --out-dir lib --stage 0","dev":"webpack-dev-server --devtool eval --hot --progress --colors","prebuild":"rm -rf dist lib && mkdir dist lib","prepublish":"npm run build","postbuild":"NODE_ENV=production TARGET=minify webpack --config webpack.prod.config.js","test":"echo \"Error: no test specified\" && exit 1"},"repository":{"type":"git","url":"git+https://github.com/souporserious/react-measure.git"},"keywords":["react","component","measure","measurements","dimensions","element-queries","container-queries","size"],"author":{"name":"Travis Arnold","email":"travis@souporserious.com","url":"http://souporserious.com"},"license":"MIT","bugs":{"url":"https://github.com/souporserious/react-measure/issues"},"homepage":"https://github.com/souporserious/react-measure","peerDependencies":{"react":">0.13.0","react-dom":">0.13.0"},"dependencies":{"element-resize-detector":"^1.1.9","get-node-dimensions":"^0.1.1"},"devDependencies":{"autoprefixer-loader":"^2.0.0","babel":"^5.8.23","babel-core":"^5.6.15","babel-loader":"^5.2.2","css-loader":"^0.15.1","http-server":"^0.8.0","node-libs-browser":"^0.5.2","node-sass":"^3.2.0","react":"15.2.1","react-dom":"15.2.1","react-motion":"^0.4.2","sass-loader":"^1.0.2","style-loader":"^0.12.3","webpack":"^1.9.12","webpack-dev-server":"^1.9.0"},"gitHead":"1e59aac0b1a859c673ceb6aee7085eb58ee059ed","_id":"react-measure@0.5.1","_shasum":"4ba55016eac287ca681f955539b5fb74d9156181","_from":".","_npmVersion":"3.10.3","_nodeVersion":"5.11.0","_npmUser":{"name":"anonymous","email":"travis@souporserious.com"},"dist":{"shasum":"4ba55016eac287ca681f955539b5fb74d9156181","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/react-measure/-/react-measure-0.5.1.tgz","integrity":"sha512-mPqgjKs8zDo5f17MDBR3KsqouMYdcaXYLGk7ek0ON+2M0emK4ajPGNg1tAGzhej3QmLzSTBpY8anbXm5CdjjsQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCY+LGCQ14GUHagryp4bASyEGn7zWnAZ1qW85RQHtFb1AIhAOa/aP6o2ae781O8GU2rJ0rotwn6P4irmZZSPHIvEe7L"}]},"maintainers":[{"name":"anonymous","email":"travis@souporserious.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/react-measure-0.5.1.tgz_1476303667970_0.5518158201593906"},"directories":{}},"1.0.0":{"name":"react-measure","version":"1.0.0","description":"Compute measurements of React components.","main":"lib/react-measure.js","files":["dist","lib"],"scripts":{"build":"npm run build:lib && NODE_ENV=production webpack --config webpack.prod.config.js","build:lib":"babel src --out-dir lib --stage 0","dev":"webpack-dev-server --devtool eval --hot --progress --colors","prebuild":"rm -rf dist lib && mkdir dist lib","prepublish":"npm run build","postbuild":"NODE_ENV=production TARGET=minify webpack --config webpack.prod.config.js","test":"echo \"Error: no test specified\" && exit 1"},"repository":{"type":"git","url":"git+https://github.com/souporserious/react-measure.git"},"keywords":["react","component","measure","measurements","dimensions","element-queries","container-queries","size"],"author":{"name":"Travis Arnold","email":"travis@souporserious.com","url":"http://souporserious.com"},"license":"MIT","bugs":{"url":"https://github.com/souporserious/react-measure/issues"},"homepage":"https://github.com/souporserious/react-measure","peerDependencies":{"react":">0.13.0","react-dom":">0.13.0"},"dependencies":{"element-resize-detector":"^1.1.9","get-node-dimensions":"^1.0.0"},"devDependencies":{"autoprefixer-loader":"^2.0.0","babel":"^5.8.23","babel-core":"^5.6.15","babel-loader":"^5.2.2","css-loader":"^0.15.1","http-server":"^0.8.0","node-libs-browser":"^0.5.2","node-sass":"^3.2.0","react":"15.2.1","react-dom":"15.2.1","react-motion":"^0.4.2","sass-loader":"^1.0.2","style-loader":"^0.12.3","webpack":"^1.9.12","webpack-dev-server":"^1.9.0"},"gitHead":"fb6e1895cef456b2e1253ff39efa771f06a62e9b","_id":"react-measure@1.0.0","_shasum":"8891b2a73fc1e00d5f7a2a8484e2ecf8beb3c56d","_from":".","_npmVersion":"3.10.3","_nodeVersion":"5.11.0","_npmUser":{"name":"anonymous","email":"travis@souporserious.com"},"dist":{"shasum":"8891b2a73fc1e00d5f7a2a8484e2ecf8beb3c56d","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/react-measure/-/react-measure-1.0.0.tgz","integrity":"sha512-Z+MCiNDbyr1Oa7VPbtaSNm72PUz7B5w+hnoaoDEYTFt9wSsFP71Tcxx7yzAcXgogymFsANBRItungrHdqbzZZQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCICu+G99NCAB5nuh8f7EDv2lUA0OnL7L9kveAFZ9e5uAVAiEAwoDEL+8knaPYYLEWvQ2pRhbFry4GjUJCJj4UQgiHmEc="}]},"maintainers":[{"name":"anonymous","email":"travis@souporserious.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/react-measure-1.0.0.tgz_1476313852665_0.587754387408495"},"directories":{}},"1.1.0":{"name":"react-measure","version":"1.1.0","description":"Compute measurements of React components.","main":"lib/react-measure.js","files":["dist","lib"],"scripts":{"build":"npm run build:lib && NODE_ENV=production webpack --config webpack.prod.config.js","build:lib":"babel src --out-dir lib --stage 0","dev":"webpack-dev-server --devtool eval --hot --progress --colors","prebuild":"rm -rf dist lib && mkdir dist lib","prepublish":"npm run build","postbuild":"NODE_ENV=production TARGET=minify webpack --config webpack.prod.config.js","test":"echo \"Error: no test specified\" && exit 1"},"repository":{"type":"git","url":"git+https://github.com/souporserious/react-measure.git"},"keywords":["react","component","measure","measurements","dimensions","element-queries","container-queries","size"],"author":{"name":"Travis Arnold","email":"travis@souporserious.com","url":"http://souporserious.com"},"license":"MIT","bugs":{"url":"https://github.com/souporserious/react-measure/issues"},"homepage":"https://github.com/souporserious/react-measure","peerDependencies":{"react":">0.13.0","react-dom":">0.13.0"},"dependencies":{"element-resize-detector":"^1.1.9","get-node-dimensions":"^1.1.0"},"devDependencies":{"autoprefixer-loader":"^2.0.0","babel":"^5.8.23","babel-core":"^5.6.15","babel-loader":"^5.2.2","css-loader":"^0.15.1","http-server":"^0.8.0","node-libs-browser":"^0.5.2","node-sass":"^3.2.0","react":"15.2.1","react-dom":"15.2.1","react-motion":"^0.4.2","sass-loader":"^1.0.2","style-loader":"^0.12.3","webpack":"^1.9.12","webpack-dev-server":"^1.9.0"},"gitHead":"87b85324fb8f97708dc639e75681729ef430c34d","_id":"react-measure@1.1.0","_shasum":"e2853e1ae14a95d7ea919c0bbc593412a1aab908","_from":".","_npmVersion":"3.10.3","_nodeVersion":"5.11.0","_npmUser":{"name":"anonymous","email":"travis@souporserious.com"},"dist":{"shasum":"e2853e1ae14a95d7ea919c0bbc593412a1aab908","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/react-measure/-/react-measure-1.1.0.tgz","integrity":"sha512-QeSdFJsHkWnOSA8T+0BVs/vWMWok95h+xOVr7/2o3Eldl2tPQGd81SlgATO9g5swv59Q4kF47jFJMj+MBUnAKQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCID+sMo0YVXCo2Ci47Qnmulzq+3RutVb0s6R64qT/VNhSAiEA4vEvrnnHIl6J883FZbn8qFOxyOV9AOVBPt5ZQBRlR2g="}]},"maintainers":[{"name":"anonymous","email":"travis@souporserious.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/react-measure-1.1.0.tgz_1476320542004_0.4403823858592659"},"directories":{}},"1.2.0":{"name":"react-measure","version":"1.2.0","description":"Compute measurements of React components.","main":"lib/react-measure.js","files":["dist","lib"],"scripts":{"build":"npm run build:lib && NODE_ENV=production webpack --config webpack.prod.config.js","build:lib":"babel src --out-dir lib --stage 0","dev":"webpack-dev-server --devtool eval --hot --progress --colors","prebuild":"rm -rf dist lib && mkdir dist lib","prepublish":"npm run build","postbuild":"NODE_ENV=production TARGET=minify webpack --config webpack.prod.config.js","test":"echo \"Error: no test specified\" && exit 1"},"repository":{"type":"git","url":"git+https://github.com/souporserious/react-measure.git"},"keywords":["react","component","measure","measurements","dimensions","element-queries","container-queries","size"],"author":{"name":"Travis Arnold","email":"travis@souporserious.com","url":"http://souporserious.com"},"license":"MIT","bugs":{"url":"https://github.com/souporserious/react-measure/issues"},"homepage":"https://github.com/souporserious/react-measure","peerDependencies":{"react":">0.13.0","react-dom":">0.13.0"},"dependencies":{"element-resize-detector":"^1.1.9","get-node-dimensions":"^1.1.0"},"devDependencies":{"autoprefixer-loader":"^2.0.0","babel":"^5.8.23","babel-core":"^5.6.15","babel-loader":"^5.2.2","css-loader":"^0.15.1","http-server":"^0.8.0","node-libs-browser":"^0.5.2","node-sass":"^3.2.0","react":"15.2.1","react-dom":"15.2.1","react-motion":"^0.4.2","sass-loader":"^1.0.2","style-loader":"^0.12.3","webpack":"^1.9.12","webpack-dev-server":"^1.9.0"},"gitHead":"e33964adab88adb15a9e38a660e3533990a00abb","_id":"react-measure@1.2.0","_shasum":"241805c6190ae8ec75382d1b5a46ded7f0a6361c","_from":".","_npmVersion":"3.10.8","_nodeVersion":"6.8.0","_npmUser":{"name":"anonymous","email":"travis@souporserious.com"},"dist":{"shasum":"241805c6190ae8ec75382d1b5a46ded7f0a6361c","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/react-measure/-/react-measure-1.2.0.tgz","integrity":"sha512-18Vtc03oTzzc9ZoYHBVYPFBPiN6zeRajMxnh0lfGdYV6rHK63TnJHEs+odkvXpR6XarKnZj8k7XSbkeTjeELlA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQD/AHM2KJ8JxXqTeYxYPAG0DY3Y0ofPrHwuwodzvMUt9gIhAJ+vwxkyz6GAq/2naOOY94CQOP0+F4L6OWmxoeqKpoCJ"}]},"maintainers":[{"name":"anonymous","email":"travis@souporserious.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/react-measure-1.2.0.tgz_1476677758659_0.047814575023949146"},"directories":{}},"1.2.1":{"name":"react-measure","version":"1.2.1","description":"Compute measurements of React components.","main":"lib/react-measure.js","files":["dist","lib"],"scripts":{"build:lib":"babel src --out-dir lib","build":"npm run build:lib && NODE_ENV=production webpack --config webpack.prod.config.js","dev":"webpack-dev-server --devtool eval --hot --progress --colors","postbuild":"NODE_ENV=production TARGET=minify webpack --config webpack.prod.config.js","prebuild":"rm -rf dist && mkdir dist","prepublish":"npm run build"},"repository":{"type":"git","url":"git+https://github.com/souporserious/react-measure.git"},"keywords":["react","component","measure","measurements","dimensions","element-queries","container-queries","size"],"author":{"name":"Travis Arnold","email":"travis@souporserious.com","url":"http://souporserious.com"},"license":"MIT","bugs":{"url":"https://github.com/souporserious/react-measure/issues"},"homepage":"https://github.com/souporserious/react-measure","peerDependencies":{"react":">0.13.0","react-dom":">0.13.0"},"dependencies":{"element-resize-detector":"^1.1.9","get-node-dimensions":"^1.1.0"},"devDependencies":{"babel-cli":"^6.16.0","babel-core":"^6.17.0","babel-loader":"^6.2.5","babel-preset-es2015":"^6.16.0","babel-preset-react":"^6.16.0","babel-preset-stage-0":"^6.16.0","chokidar":"^1.6.1","css-loader":"^0.25.0","http-server":"^0.9.0","node-libs-browser":"^1.0.0","node-sass":"^3.2.0","postcss-loader":"^0.13.0","react":"15.3.2","react-dom":"15.3.2","react-motion":"^0.4.2","sass-loader":"^4.0.2","style-loader":"^0.13.1","webpack":"^1.13.2","webpack-dev-server":"^1.9.0"},"gitHead":"88a545f82bd6f350eaa82eca70a90bcd32b90ad4","_id":"react-measure@1.2.1","_shasum":"7999e40202a2ed7b75d7d7b193773400ce233bcb","_from":".","_npmVersion":"3.10.8","_nodeVersion":"6.8.0","_npmUser":{"name":"anonymous","email":"travis@souporserious.com"},"dist":{"shasum":"7999e40202a2ed7b75d7d7b193773400ce233bcb","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/react-measure/-/react-measure-1.2.1.tgz","integrity":"sha512-lmw0zrpX0mbc40gjSBxWGOY0j2TZeZMSE1Ni1mV3EmcUZ8mnOJjzPPiwmCz/oNnax11LJqsvsXcUo3NgNz0EpQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIBipmnaSlnVtWnfCx1rrl0jKCVMp77bXXuPW7TBfj5W1AiBUfsr9wXrQYR07RKIyW1/X5Vfna2++hQbffmfRL6L4eA=="}]},"maintainers":[{"name":"anonymous","email":"travis@souporserious.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/react-measure-1.2.1.tgz_1477330708347_0.5347171158064157"},"directories":{}},"1.2.2":{"name":"react-measure","version":"1.2.2","description":"Compute measurements of React components.","main":"lib/react-measure.js","files":["dist","lib"],"scripts":{"build:lib":"babel src --out-dir lib","build":"npm run build:lib && NODE_ENV=production webpack --config webpack.prod.config.js","dev":"webpack-dev-server --devtool eval --hot --progress --colors","postbuild":"NODE_ENV=production TARGET=minify webpack --config webpack.prod.config.js","prebuild":"rm -rf dist && mkdir dist","prepublish":"npm run build"},"repository":{"type":"git","url":"git+https://github.com/souporserious/react-measure.git"},"keywords":["react","component","measure","measurements","dimensions","element-queries","container-queries","size"],"author":{"name":"Travis Arnold","email":"travis@souporserious.com","url":"http://souporserious.com"},"license":"MIT","bugs":{"url":"https://github.com/souporserious/react-measure/issues"},"homepage":"https://github.com/souporserious/react-measure","peerDependencies":{"react":">0.13.0","react-dom":">0.13.0"},"dependencies":{"element-resize-detector":"^1.1.9","get-node-dimensions":"^1.1.0"},"devDependencies":{"babel-cli":"^6.16.0","babel-core":"^6.17.0","babel-loader":"^6.2.5","babel-plugin-add-module-exports":"^0.2.1","babel-preset-es2015":"^6.16.0","babel-preset-react":"^6.16.0","babel-preset-stage-0":"^6.16.0","chokidar":"^1.6.1","css-loader":"^0.25.0","http-server":"^0.9.0","node-libs-browser":"^1.0.0","node-sass":"^3.2.0","postcss-loader":"^0.13.0","react":"15.3.2","react-dom":"15.3.2","react-motion":"^0.4.2","sass-loader":"^4.0.2","style-loader":"^0.13.1","webpack":"^1.13.2","webpack-dev-server":"^1.9.0"},"gitHead":"7836218ca11725a2ccbfb4577ee86e0cf9e518e6","_id":"react-measure@1.2.2","_shasum":"0873516804d965bf22860a7306b3c572342a9a45","_from":".","_npmVersion":"3.10.8","_nodeVersion":"6.8.0","_npmUser":{"name":"anonymous","email":"travis@souporserious.com"},"dist":{"shasum":"0873516804d965bf22860a7306b3c572342a9a45","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/react-measure/-/react-measure-1.2.2.tgz","integrity":"sha512-ttSDrkrLkn31XPDlhm0lVaJ9VHbWSO8LCNZg452duyCcgdYa/wZamWleNIEz92fLGV4cIxketeHuu0nVacGdpw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIDCLE37tTZad95Mf3jFgXtA/ZoR4rO2hBxDQ3byD99/dAiBuPdzZ/oftyekytkzO+LTUXClcX2bvILyvzFsqRPC86Q=="}]},"maintainers":[{"name":"anonymous","email":"travis@souporserious.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/react-measure-1.2.2.tgz_1477408895043_0.025826971046626568"},"directories":{}},"1.3.0":{"name":"react-measure","version":"1.3.0","description":"Compute measurements of React components.","main":"lib/react-measure.js","files":["dist","lib"],"scripts":{"build:lib":"babel src --out-dir lib","build":"npm run build:lib && NODE_ENV=production webpack --config webpack.prod.config.js","dev":"webpack-dev-server --devtool eval --hot --progress --colors","postbuild":"NODE_ENV=production TARGET=minify webpack --config webpack.prod.config.js","prebuild":"rm -rf dist && mkdir dist","prepublish":"npm run build"},"repository":{"type":"git","url":"git+https://github.com/souporserious/react-measure.git"},"keywords":["react","component","measure","measurements","dimensions","element-queries","container-queries","size"],"author":{"name":"Travis Arnold","email":"travis@souporserious.com","url":"http://souporserious.com"},"license":"MIT","bugs":{"url":"https://github.com/souporserious/react-measure/issues"},"homepage":"https://github.com/souporserious/react-measure","peerDependencies":{"react":">0.13.0","react-dom":">0.13.0"},"dependencies":{"element-resize-detector":"^1.1.9","get-node-dimensions":"^1.2.0"},"devDependencies":{"babel-cli":"^6.16.0","babel-core":"^6.17.0","babel-loader":"^6.2.5","babel-plugin-add-module-exports":"^0.2.1","babel-preset-es2015":"^6.16.0","babel-preset-react":"^6.16.0","babel-preset-stage-0":"^6.16.0","chokidar":"^1.6.1","css-loader":"^0.25.0","http-server":"^0.9.0","node-libs-browser":"^1.0.0","node-sass":"^3.2.0","postcss-loader":"^0.13.0","react":"15.3.2","react-dom":"15.3.2","react-motion":"^0.4.2","sass-loader":"^4.0.2","style-loader":"^0.13.1","webpack":"^1.13.2","webpack-dev-server":"^1.9.0"},"gitHead":"58b51d28b0f451ec91899d8c315381a1bab51bc0","_id":"react-measure@1.3.0","_shasum":"7237b27ac8038006ee20018765324a7e92a4f598","_from":".","_npmVersion":"3.10.8","_nodeVersion":"6.8.0","_npmUser":{"name":"anonymous","email":"travis@souporserious.com"},"dist":{"shasum":"7237b27ac8038006ee20018765324a7e92a4f598","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/react-measure/-/react-measure-1.3.0.tgz","integrity":"sha512-D+/ljCNzc0Cyy5Wtr3d08X4AHxcWwJFnTmVMepKf2MmB6qIk2zqJxVtgD8hGz3nNxeONuCo7QYGYmeTxOex2Qw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIDnDlLGKhlPlupMw9Okr0RMU76Lse66vQX6NKLIQLsB4AiEA6nxoRfvdBi+kZ9ZZVAP8TtYdyYSkn5waFN+4C+mAwbs="}]},"maintainers":[{"name":"anonymous","email":"travis@souporserious.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/react-measure-1.3.0.tgz_1477445564607_0.18399672722443938"},"directories":{}},"1.3.1":{"name":"react-measure","version":"1.3.1","description":"Compute measurements of React components.","main":"lib/react-measure.js","files":["dist","lib"],"scripts":{"build:lib":"babel src --out-dir lib","build":"npm run build:lib && NODE_ENV=production webpack --config webpack.prod.config.js","dev":"webpack-dev-server --devtool eval --hot --progress --colors","postbuild":"NODE_ENV=production TARGET=minify webpack --config webpack.prod.config.js","prebuild":"rm -rf dist && mkdir dist","prepublish":"npm run build"},"repository":{"type":"git","url":"git+https://github.com/souporserious/react-measure.git"},"keywords":["react","component","measure","measurements","dimensions","element-queries","container-queries","size"],"author":{"name":"Travis Arnold","email":"travis@souporserious.com","url":"http://souporserious.com"},"license":"MIT","bugs":{"url":"https://github.com/souporserious/react-measure/issues"},"homepage":"https://github.com/souporserious/react-measure","peerDependencies":{"react":">0.13.0","react-dom":">0.13.0"},"dependencies":{"element-resize-detector":"^1.1.9","get-node-dimensions":"^1.2.0"},"devDependencies":{"babel-cli":"^6.16.0","babel-core":"^6.17.0","babel-loader":"^6.2.5","babel-plugin-add-module-exports":"^0.2.1","babel-preset-es2015":"^6.16.0","babel-preset-react":"^6.16.0","babel-preset-stage-0":"^6.16.0","chokidar":"^1.6.1","css-loader":"^0.25.0","http-server":"^0.9.0","node-libs-browser":"^1.0.0","node-sass":"^3.2.0","postcss-loader":"^0.13.0","react":"15.3.2","react-dom":"15.3.2","react-motion":"^0.4.2","sass-loader":"^4.0.2","style-loader":"^0.13.1","webpack":"^1.13.2","webpack-dev-server":"^1.9.0"},"gitHead":"75c51b0d388a166aa93523c2176a254498b57082","_id":"react-measure@1.3.1","_shasum":"c9bd8f2164587351fa107a94f6b102711dbdf8b0","_from":".","_npmVersion":"3.10.8","_nodeVersion":"6.8.0","_npmUser":{"name":"anonymous","email":"travis@souporserious.com"},"dist":{"shasum":"c9bd8f2164587351fa107a94f6b102711dbdf8b0","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/react-measure/-/react-measure-1.3.1.tgz","integrity":"sha512-4azHgAk3vJC6tJyr1mG71N7s5YDfbhwTlcOHFGZAHTveqfHYELjAjWpK+n1jxTUILHfIhOS80DOwe7ma5w5i6A==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIGsU4H4qLM/tVRz6PgFnM1FRvhFKxnYzG0B8pwjWgvanAiEA+7xL8iCexKHC8ZKZXx1jVDmEsK+HNtPaaGOhfRNYbhg="}]},"maintainers":[{"name":"anonymous","email":"travis@souporserious.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/react-measure-1.3.1.tgz_1477521679105_0.5632450194098055"},"directories":{}},"1.4.0":{"name":"react-measure","version":"1.4.0","description":"Compute measurements of React components.","main":"lib/react-measure.js","files":["dist","lib"],"scripts":{"build:lib":"babel src --out-dir lib","build":"npm run build:lib && NODE_ENV=production webpack --config webpack.prod.config.js","dev":"webpack-dev-server --devtool eval --hot --progress --colors --host 0.0.0.0","postbuild":"NODE_ENV=production TARGET=minify webpack --config webpack.prod.config.js","prebuild":"rm -rf dist && mkdir dist","prepublish":"npm run build"},"repository":{"type":"git","url":"git+https://github.com/souporserious/react-measure.git"},"keywords":["react","component","measure","measurements","dimensions","element-queries","container-queries","size"],"author":{"name":"Travis Arnold","email":"travis@souporserious.com","url":"http://souporserious.com"},"license":"MIT","bugs":{"url":"https://github.com/souporserious/react-measure/issues"},"homepage":"https://github.com/souporserious/react-measure","peerDependencies":{"react":">0.13.0","react-dom":">0.13.0"},"dependencies":{"get-node-dimensions":"^1.2.0","resize-observer-polyfill":"^1.2.1"},"devDependencies":{"babel-cli":"^6.16.0","babel-core":"^6.17.0","babel-loader":"^6.2.5","babel-plugin-add-module-exports":"^0.2.1","babel-preset-es2015":"^6.16.0","babel-preset-react":"^6.16.0","babel-preset-stage-0":"^6.16.0","chokidar":"^1.6.1","css-loader":"^0.25.0","http-server":"^0.9.0","node-libs-browser":"^1.0.0","node-sass":"^3.2.0","postcss-loader":"^0.13.0","react":"15.3.2","react-dom":"15.3.2","react-motion":"^0.4.2","sass-loader":"^4.0.2","style-loader":"^0.13.1","webpack":"^1.13.2","webpack-dev-server":"^1.9.0"},"gitHead":"323b03a6f8a0a4ea278563119a40d166248be28e","_id":"react-measure@1.4.0","_shasum":"66fae36d63f8d092badd4334f0054bd1ff74f9bc","_from":".","_npmVersion":"3.10.8","_nodeVersion":"7.0.0","_npmUser":{"name":"anonymous","email":"travis@souporserious.com"},"dist":{"shasum":"66fae36d63f8d092badd4334f0054bd1ff74f9bc","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/react-measure/-/react-measure-1.4.0.tgz","integrity":"sha512-xBrKtBiZuAM1RGaSpP15NfilZaE98yK+2Aj00/3maedDGMr6nV8GF9YxpVAb6qhYhFdy35QH17NfpNi+v2vfNA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIHP0bv8/MIc+heOvJJhi2xZQD7MCPPf/C7MDgPNpR+yPAiA8N7GbNcxONNE5r7xyzst75jWyyvlKtgqjibQV6dP3/g=="}]},"maintainers":[{"name":"anonymous","email":"travis@souporserious.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/react-measure-1.4.0.tgz_1480477800062_0.8765487833879888"},"directories":{}},"1.4.1":{"name":"react-measure","version":"1.4.1","description":"Compute measurements of React components.","main":"lib/react-measure.js","files":["dist","lib"],"scripts":{"build:lib":"babel src --out-dir lib","build":"npm run build:lib && NODE_ENV=production webpack --config webpack.prod.config.js","dev":"webpack-dev-server --devtool eval --hot --progress --colors --host 0.0.0.0","postbuild":"NODE_ENV=production TARGET=minify webpack --config webpack.prod.config.js","prebuild":"rm -rf dist && mkdir dist","prepublish":"npm run build"},"repository":{"type":"git","url":"git+https://github.com/souporserious/react-measure.git"},"keywords":["react","component","measure","measurements","dimensions","element-queries","container-queries","size"],"author":{"name":"Travis Arnold","email":"travis@souporserious.com","url":"http://souporserious.com"},"license":"MIT","bugs":{"url":"https://github.com/souporserious/react-measure/issues"},"homepage":"https://github.com/souporserious/react-measure","peerDependencies":{"react":">0.13.0","react-dom":">0.13.0"},"dependencies":{"get-node-dimensions":"^1.2.0","resize-observer-polyfill":"^1.2.1"},"devDependencies":{"babel-cli":"^6.16.0","babel-core":"^6.17.0","babel-loader":"^6.2.5","babel-plugin-add-module-exports":"^0.2.1","babel-preset-es2015":"^6.16.0","babel-preset-react":"^6.16.0","babel-preset-stage-0":"^6.16.0","chokidar":"^1.6.1","css-loader":"^0.25.0","http-server":"^0.9.0","node-libs-browser":"^1.0.0","node-sass":"^3.2.0","postcss-loader":"^0.13.0","react":"15.3.2","react-dom":"15.3.2","react-motion":"^0.4.2","sass-loader":"^4.0.2","style-loader":"^0.13.1","webpack":"^1.13.2","webpack-dev-server":"^1.9.0"},"gitHead":"4d577ff5b0af6cf17d6bb6ccaecf0775ea708f50","_id":"react-measure@1.4.1","_shasum":"95545ff944106bb8027dc2a5c4767e5fbe0eef7f","_from":".","_npmVersion":"3.10.8","_nodeVersion":"7.0.0","_npmUser":{"name":"anonymous","email":"travis@souporserious.com"},"dist":{"shasum":"95545ff944106bb8027dc2a5c4767e5fbe0eef7f","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/react-measure/-/react-measure-1.4.1.tgz","integrity":"sha512-i+KaReO3KIT032SA/Y49FGnyI7D/OfeO2NLWpwXoSmZ4K7wrGnMsnXOUZOheftGwe+C1xNyFFJQzOxwL3UWaEA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQD9A9QvTSvU4vKKg3P0uoLjlcbsNzx2QgNv5DFy8/FqiwIhAK/nbJEAjD30Wj5MScEli1LklTTeylYf85ezJ/NPzGg0"}]},"maintainers":[{"name":"anonymous","email":"travis@souporserious.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/react-measure-1.4.1.tgz_1480553150074_0.10473885876126587"},"directories":{}},"1.4.2":{"name":"react-measure","version":"1.4.2","description":"Compute measurements of React components.","main":"lib/react-measure.js","files":["dist","lib"],"scripts":{"build:lib":"babel src --out-dir lib","build":"npm run build:lib && NODE_ENV=production webpack --config webpack.prod.config.js","dev":"webpack-dev-server --devtool eval --hot --progress --colors --host 0.0.0.0","postbuild":"NODE_ENV=production TARGET=minify webpack --config webpack.prod.config.js","prebuild":"rm -rf dist && mkdir dist","prepublish":"npm run build"},"repository":{"type":"git","url":"git+https://github.com/souporserious/react-measure.git"},"keywords":["react","component","measure","measurements","dimensions","element-queries","container-queries","size"],"author":{"name":"Travis Arnold","email":"travis@souporserious.com","url":"http://souporserious.com"},"license":"MIT","bugs":{"url":"https://github.com/souporserious/react-measure/issues"},"homepage":"https://github.com/souporserious/react-measure","peerDependencies":{"react":">0.13.0","react-dom":">0.13.0"},"dependencies":{"get-node-dimensions":"^1.2.0","resize-observer-polyfill":"^1.2.1"},"devDependencies":{"babel-cli":"^6.16.0","babel-core":"^6.17.0","babel-loader":"^6.2.5","babel-plugin-add-module-exports":"^0.2.1","babel-preset-es2015":"^6.16.0","babel-preset-react":"^6.16.0","babel-preset-stage-0":"^6.16.0","chokidar":"^1.6.1","css-loader":"^0.25.0","http-server":"^0.9.0","node-libs-browser":"^1.0.0","node-sass":"^3.2.0","postcss-loader":"^0.13.0","react":"15.3.2","react-dom":"15.3.2","react-motion":"^0.4.2","sass-loader":"^4.0.2","style-loader":"^0.13.1","webpack":"^1.13.2","webpack-dev-server":"^1.9.0"},"gitHead":"b092365616a0fd99270be12e368ab9549e7a28c7","_id":"react-measure@1.4.2","_shasum":"c00ca741e159eb6920e915901dca20863f7c9a78","_from":".","_npmVersion":"3.10.8","_nodeVersion":"7.0.0","_npmUser":{"name":"anonymous","email":"travis@souporserious.com"},"dist":{"shasum":"c00ca741e159eb6920e915901dca20863f7c9a78","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/react-measure/-/react-measure-1.4.2.tgz","integrity":"sha512-ewVyiZOGOOmi9g91dVZGkMCuPg0Rvg7l2Usg0IV+IrT16mZdpHoXW4Sz4dbENBQ92e+o/2I4aW3BffBfuTk0qg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCUXVb53km/x0p1xViGLsD0PBIamQa818ZjVwhcpjHWmAIhALBJTu5e7apFYAb13UmRdnacHDKZ1EusMMlibomM9V87"}]},"maintainers":[{"name":"anonymous","email":"travis@souporserious.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/react-measure-1.4.2.tgz_1480603390028_0.65355483465828"},"directories":{}},"1.4.3":{"name":"react-measure","version":"1.4.3","description":"Compute measurements of React components.","main":"lib/react-measure.js","files":["dist","lib"],"scripts":{"build:lib":"babel src --out-dir lib","build":"npm run build:lib && NODE_ENV=production webpack --config webpack.prod.config.js","dev":"webpack-dev-server --devtool eval --hot --progress --colors --host 0.0.0.0","postbuild":"NODE_ENV=production TARGET=minify webpack --config webpack.prod.config.js","prebuild":"rm -rf dist && mkdir dist","prepublish":"npm run build"},"repository":{"type":"git","url":"git+https://github.com/souporserious/react-measure.git"},"keywords":["react","component","measure","measurements","dimensions","element-queries","container-queries","size"],"author":{"name":"Travis Arnold","email":"travis@souporserious.com","url":"http://souporserious.com"},"license":"MIT","bugs":{"url":"https://github.com/souporserious/react-measure/issues"},"homepage":"https://github.com/souporserious/react-measure","peerDependencies":{"react":">0.13.0","react-dom":">0.13.0"},"dependencies":{"get-node-dimensions":"^1.2.0","resize-observer-polyfill":"^1.2.1"},"devDependencies":{"babel-cli":"^6.16.0","babel-core":"^6.17.0","babel-loader":"^6.2.5","babel-plugin-add-module-exports":"^0.2.1","babel-preset-es2015":"^6.16.0","babel-preset-react":"^6.16.0","babel-preset-stage-0":"^6.16.0","chokidar":"^1.6.1","css-loader":"^0.25.0","http-server":"^0.9.0","node-libs-browser":"^1.0.0","node-sass":"^3.2.0","postcss-loader":"^0.13.0","react":"15.3.2","react-dom":"15.3.2","react-motion":"^0.4.2","sass-loader":"^4.0.2","style-loader":"^0.13.1","webpack":"^1.13.2","webpack-dev-server":"^1.9.0"},"gitHead":"76a79f2ff4bdb93297247cef404742fb6989591f","_id":"react-measure@1.4.3","_shasum":"621ab3592d2b5584ed630a489f61b981fe64a20c","_from":".","_npmVersion":"3.10.8","_nodeVersion":"7.0.0","_npmUser":{"name":"anonymous","email":"travis@souporserious.com"},"dist":{"shasum":"621ab3592d2b5584ed630a489f61b981fe64a20c","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/react-measure/-/react-measure-1.4.3.tgz","integrity":"sha512-MGdMmIP7jAzt6wcCMruKTdOpW1aKR1HB4OSNqdaw3l9jaC7o1B6gQXVxf51i21hed2wWQfOAUuvc9pYAdMfjVQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIAinU0Vw0SbDlVOkobEOb5IgGMDgJlOBm6MUnxg7l1Q4AiAyMBcnMfVcUhnoOrYNTz7Js6VBtLqFAuSAcc3uGzaJfQ=="}]},"maintainers":[{"name":"anonymous","email":"travis@souporserious.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/react-measure-1.4.3.tgz_1481130089195_0.33552297321148217"},"directories":{}},"1.4.4":{"name":"react-measure","version":"1.4.4","description":"Compute measurements of React components.","main":"lib/react-measure.js","files":["dist","lib"],"scripts":{"build:lib":"babel src --out-dir lib","build":"npm run build:lib && NODE_ENV=production webpack --config webpack.prod.config.js","dev":"webpack-dev-server --inline --hot --progress --colors --host 0.0.0.0 --devtool eval","postbuild":"NODE_ENV=production TARGET=minify webpack --config webpack.prod.config.js","prebuild":"rm -rf dist && mkdir dist","prepublish":"npm run build","deploy":"NODE_ENV=production TARGET=minify webpack && git-directory-deploy --directory example --branch gh-pages"},"repository":{"type":"git","url":"git+https://github.com/souporserious/react-measure.git"},"keywords":["react","component","measure","measurements","dimensions","element-queries","container-queries","size"],"author":{"name":"Travis Arnold","email":"travis@souporserious.com","url":"http://souporserious.com"},"license":"MIT","bugs":{"url":"https://github.com/souporserious/react-measure/issues"},"homepage":"https://github.com/souporserious/react-measure","peerDependencies":{"react":">0.13.0","react-dom":">0.13.0"},"dependencies":{"get-node-dimensions":"^1.2.0","resize-observer-polyfill":"^1.2.1"},"devDependencies":{"babel-cli":"^6.16.0","babel-core":"^6.17.0","babel-loader":"^6.2.5","babel-plugin-add-module-exports":"^0.2.1","babel-preset-es2015":"^6.16.0","babel-preset-react":"^6.16.0","babel-preset-stage-0":"^6.16.0","chokidar":"^1.6.1","css-loader":"^0.25.0","git-directory-deploy":"^1.5.1","http-server":"^0.9.0","node-libs-browser":"^1.0.0","node-sass":"^3.2.0","postcss-loader":"^0.13.0","react":"15.3.2","react-dom":"15.3.2","react-motion":"^0.4.2","sass-loader":"^4.0.2","style-loader":"^0.13.1","webpack":"^1.13.2","webpack-dev-server":"^1.9.0"},"gitHead":"95aac80d6038545443cb7d7f449df6e5a79064ed","_id":"react-measure@1.4.4","_shasum":"88b9f5321f515d0bb9e87e91a327dd41a9cf1d90","_from":".","_npmVersion":"3.10.8","_nodeVersion":"7.0.0","_npmUser":{"name":"anonymous","email":"travis@souporserious.com"},"dist":{"shasum":"88b9f5321f515d0bb9e87e91a327dd41a9cf1d90","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/react-measure/-/react-measure-1.4.4.tgz","integrity":"sha512-6mLqt6D7LCdKEimIBMXkGErHTeApL+6dxrnycqFoPdGnfihGpHGueoUvndokFct1XmtfZgk3RKP0wc+6XeYysQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIAdwl5oLPnpOLyvZ/5QvG0vRlcFzBZUVfyhz6KO8Zfj1AiAcQgRUvbiSjt45bCaGE5ycH6dqQNVeby4bK0m83dlHUQ=="}]},"maintainers":[{"name":"anonymous","email":"travis@souporserious.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/react-measure-1.4.4.tgz_1481134643234_0.601120468461886"},"directories":{}},"1.4.5":{"name":"react-measure","version":"1.4.5","description":"Compute measurements of React components.","main":"lib/react-measure.js","files":["dist","lib"],"scripts":{"build:lib":"babel src --out-dir lib","build":"npm run build:lib && NODE_ENV=production webpack --config webpack.prod.config.js","dev":"webpack-dev-server --inline --hot --progress --colors --host 0.0.0.0 --devtool eval","postbuild":"NODE_ENV=production TARGET=minify webpack --config webpack.prod.config.js","prebuild":"rm -rf dist && mkdir dist","prepublish":"npm run build","deploy":"NODE_ENV=production TARGET=minify webpack && git-directory-deploy --directory example --branch gh-pages"},"repository":{"type":"git","url":"git+https://github.com/souporserious/react-measure.git"},"keywords":["react","component","measure","measurements","dimensions","element-queries","container-queries","size"],"author":{"name":"Travis Arnold","email":"travis@souporserious.com","url":"http://souporserious.com"},"license":"MIT","bugs":{"url":"https://github.com/souporserious/react-measure/issues"},"homepage":"https://github.com/souporserious/react-measure","peerDependencies":{"react":">0.13.0","react-dom":">0.13.0"},"dependencies":{"get-node-dimensions":"^1.2.0","resize-observer-polyfill":"1.3.1"},"devDependencies":{"babel-cli":"^6.16.0","babel-core":"^6.17.0","babel-loader":"^6.2.5","babel-plugin-add-module-exports":"^0.2.1","babel-preset-es2015":"^6.16.0","babel-preset-react":"^6.16.0","babel-preset-stage-0":"^6.16.0","chokidar":"^1.6.1","css-loader":"^0.25.0","git-directory-deploy":"^1.5.1","http-server":"^0.9.0","node-libs-browser":"^1.0.0","node-sass":"^3.2.0","postcss-loader":"^0.13.0","react":"15.3.2","react-dom":"15.3.2","react-motion":"^0.4.2","sass-loader":"^4.0.2","style-loader":"^0.13.1","webpack":"^1.13.2","webpack-dev-server":"^1.9.0"},"gitHead":"204b8bb2f784315528d2aa647247ecd5dd0f1a6e","_id":"react-measure@1.4.5","_shasum":"4aa1565872e071a642971eb4d529628c000c8802","_from":".","_npmVersion":"3.10.8","_nodeVersion":"7.0.0","_npmUser":{"name":"anonymous","email":"travis@souporserious.com"},"dist":{"shasum":"4aa1565872e071a642971eb4d529628c000c8802","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/react-measure/-/react-measure-1.4.5.tgz","integrity":"sha512-rstCCwlKdcLttWOI02jA5WGfHaW5mAnHac+LSlTkx4pU2mjeDAIlRlUTyoOU8B2KCTr6uFiLcwfDCSQciozE+g==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCcGeS6NtLh6oTCQFRIDAeRrtBwSTWOYam2SRWV7fVP6AIhANq7nmihDeCoqa5hg6HD4tKeEmYWg5OyJY5pO8zyLTJj"}]},"maintainers":[{"name":"anonymous","email":"travis@souporserious.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/react-measure-1.4.5.tgz_1481924472990_0.22586627444252372"},"directories":{}},"1.4.6":{"name":"react-measure","version":"1.4.6","description":"Compute measurements of React components.","main":"lib/react-measure.js","files":["dist","lib"],"scripts":{"build:lib":"babel src --out-dir lib","build":"npm run build:lib && NODE_ENV=production webpack --config webpack.prod.config.js","dev":"webpack-dev-server --inline --hot --progress --colors --host 0.0.0.0 --devtool eval","postbuild":"NODE_ENV=production TARGET=minify webpack --config webpack.prod.config.js","prebuild":"rm -rf dist && mkdir dist","prepublish":"npm run build","deploy":"NODE_ENV=production TARGET=minify webpack && git-directory-deploy --directory example --branch gh-pages"},"repository":{"type":"git","url":"git+https://github.com/souporserious/react-measure.git"},"keywords":["react","component","measure","measurements","dimensions","element-queries","container-queries","size"],"author":{"name":"Travis Arnold","email":"travis@souporserious.com","url":"http://souporserious.com"},"license":"MIT","bugs":{"url":"https://github.com/souporserious/react-measure/issues"},"homepage":"https://github.com/souporserious/react-measure","peerDependencies":{"react":">0.13.0","react-dom":">0.13.0"},"dependencies":{"get-node-dimensions":"^1.2.0","resize-observer-polyfill":"^1.4.1"},"devDependencies":{"babel-cli":"^6.16.0","babel-core":"^6.17.0","babel-loader":"^6.2.5","babel-plugin-add-module-exports":"^0.2.1","babel-preset-es2015":"^6.16.0","babel-preset-react":"^6.16.0","babel-preset-stage-0":"^6.16.0","chokidar":"^1.6.1","css-loader":"^0.25.0","git-directory-deploy":"^1.5.1","http-server":"^0.9.0","node-libs-browser":"^1.0.0","node-sass":"^3.2.0","postcss-loader":"^0.13.0","react":"15.3.2","react-dom":"15.3.2","react-motion":"^0.4.2","sass-loader":"^4.0.2","style-loader":"^0.13.1","webpack":"^1.13.2","webpack-dev-server":"^1.9.0"},"gitHead":"d2df877e240e3d4ffac22bb704b11b7a7627fe83","_id":"react-measure@1.4.6","_shasum":"db3f91bf819922933cc9af34664d098d3242a955","_from":".","_npmVersion":"4.0.5","_nodeVersion":"7.4.0","_npmUser":{"name":"anonymous","email":"travis@souporserious.com"},"dist":{"shasum":"db3f91bf819922933cc9af34664d098d3242a955","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/react-measure/-/react-measure-1.4.6.tgz","integrity":"sha512-JtoOS2/olSHGzPVUoqBxzviYxkBZsTHL5CvQAtSOcz3bwRcgKsRgx5FfCEALmswfICoFSxe9I9UNYDPFjuTTgA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCg4UdxiLp0W3WZGcZX2tWNSEvO2DDv8vWN5S8rcH187wIgP2FkH5HcGnPptQ51kHjxaoX2MskEcLTRy/Jf+NwNYRM="}]},"maintainers":[{"name":"anonymous","email":"travis@souporserious.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/react-measure-1.4.6.tgz_1488315362292_0.5579863653983921"},"directories":{}},"1.4.7":{"name":"react-measure","version":"1.4.7","description":"Compute measurements of React components.","main":"lib/react-measure.js","files":["dist","lib"],"scripts":{"build:lib":"babel src --out-dir lib","build":"npm run build:lib && NODE_ENV=production webpack --config webpack.prod.config.js","dev":"webpack-dev-server --inline --hot --progress --colors --host 0.0.0.0 --devtool eval","postbuild":"NODE_ENV=production TARGET=minify webpack --config webpack.prod.config.js","prebuild":"rm -rf dist && mkdir dist","prepublish":"npm run build","deploy":"NODE_ENV=production TARGET=minify webpack && git-directory-deploy --directory example --branch gh-pages"},"repository":{"type":"git","url":"git+https://github.com/souporserious/react-measure.git"},"keywords":["react","component","measure","measurements","dimensions","element-queries","container-queries","size"],"author":{"name":"Travis Arnold","email":"travis@souporserious.com","url":"http://souporserious.com"},"license":"MIT","bugs":{"url":"https://github.com/souporserious/react-measure/issues"},"homepage":"https://github.com/souporserious/react-measure","peerDependencies":{"react":">0.13.0","react-dom":">0.13.0"},"dependencies":{"get-node-dimensions":"^1.2.0","prop-types":"^15.5.4","resize-observer-polyfill":"^1.4.1"},"devDependencies":{"babel-cli":"^6.16.0","babel-core":"^6.17.0","babel-loader":"^6.2.5","babel-plugin-add-module-exports":"^0.2.1","babel-preset-es2015":"^6.16.0","babel-preset-react":"^6.16.0","babel-preset-stage-0":"^6.16.0","chokidar":"^1.6.1","css-loader":"^0.25.0","git-directory-deploy":"^1.5.1","http-server":"^0.9.0","node-libs-browser":"^1.0.0","node-sass":"^3.2.0","postcss-loader":"^0.13.0","react":"15.3.2","react-dom":"15.3.2","react-motion":"^0.4.2","sass-loader":"^4.0.2","style-loader":"^0.13.1","webpack":"^1.13.2","webpack-dev-server":"^1.9.0"},"gitHead":"66877a465f10a5dc4abe2cb9dcff2f98c08c5990","_id":"react-measure@1.4.7","_shasum":"a1d2ca0dcfef04978b7ac263a765dcb6a0936fdb","_from":".","_npmVersion":"4.2.0","_nodeVersion":"7.8.0","_npmUser":{"name":"anonymous","email":"travis@souporserious.com"},"dist":{"shasum":"a1d2ca0dcfef04978b7ac263a765dcb6a0936fdb","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/react-measure/-/react-measure-1.4.7.tgz","integrity":"sha512-eHW1uXJOWkiXXqNPPDHlM9ZdUX5L84p0QKpxN5dEogkXvDe/UzovP4gKFLfPW6+mQlbOsmZNdFc/HTNxtZ9kHg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCGbBA/gBYmxrMLaH5jlyx/EzAchIGUZO8p2oQLI7xKsAIhAM2UI5q4cb5AR0//PmAeINcL2VU6yB0A6vm/ajbOmjPc"}]},"maintainers":[{"name":"anonymous","email":"travis@souporserious.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/react-measure-1.4.7.tgz_1491942873579_0.6515815909951925"},"directories":{}},"2.0.0":{"name":"react-measure","version":"2.0.0","description":"Compute measurements of React components.","main":"lib/react-measure.js","files":["dist","lib"],"scripts":{"build:lib":"babel src --out-dir lib","build":"npm run build:lib && NODE_ENV=production webpack --config webpack.prod.config.js","dev":"webpack-dev-server --inline --hot --progress --colors --host 0.0.0.0 --devtool eval","postbuild":"NODE_ENV=production TARGET=minify webpack --config webpack.prod.config.js","prebuild":"rm -rf dist && mkdir dist","prepublish":"npm run build","deploy":"NODE_ENV=production TARGET=minify webpack && git-directory-deploy --directory example --branch gh-pages"},"repository":{"type":"git","url":"git+https://github.com/souporserious/react-measure.git"},"keywords":["react","component","measure","measurements","dimensions","element-queries","container-queries","size"],"author":{"name":"Travis Arnold","email":"travis@souporserious.com","url":"http://souporserious.com"},"license":"MIT","bugs":{"url":"https://github.com/souporserious/react-measure/issues"},"homepage":"https://github.com/souporserious/react-measure","peerDependencies":{"react":">0.13.0","react-dom":">0.13.0"},"dependencies":{"get-node-dimensions":"^1.2.0","prop-types":"^15.5.10","resize-observer-polyfill":"^1.4.2"},"devDependencies":{"babel-cli":"^6.16.0","babel-core":"^6.17.0","babel-loader":"^6.2.5","babel-plugin-add-module-exports":"^0.2.1","babel-preset-es2015":"^6.16.0","babel-preset-react":"^6.16.0","babel-preset-stage-0":"^6.16.0","chokidar":"^1.6.1","css-loader":"^0.25.0","git-directory-deploy":"^1.5.1","http-server":"^0.9.0","node-libs-browser":"^1.0.0","node-sass":"^3.2.0","postcss-loader":"^0.13.0","react":"15.3.2","react-dom":"15.3.2","react-motion":"^0.4.2","sass-loader":"^4.0.2","style-loader":"^0.13.1","webpack":"^1.13.2","webpack-dev-server":"^1.9.0"},"gitHead":"a5a56a60dfdb1c2c62e980641b6b317efca3ed0f","_id":"react-measure@2.0.0","_shasum":"be7717fc4bbd97a22cb290bee8b648f2a547aae9","_from":".","_npmVersion":"4.2.0","_nodeVersion":"7.10.0","_npmUser":{"name":"anonymous","email":"travis@souporserious.com"},"dist":{"shasum":"be7717fc4bbd97a22cb290bee8b648f2a547aae9","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/react-measure/-/react-measure-2.0.0.tgz","integrity":"sha512-nfB0YVEU2sgdSel7FLMWRktRK3DPxeoJrSi2+8rbUkRnNS1WkscDP2GtyDJJgfQAIQpGB7u8yjQkZ1gLnmO+Kw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIGhDjLNpLZWuYRJg8GFCZDtfcvbQGYEqyP3WOKsaW/kmAiAWPxDkSJ65A+EeyUhNeEhKoUXKn9V+13Z4riqAYrKG5g=="}]},"maintainers":[{"name":"anonymous","email":"travis@souporserious.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/react-measure-2.0.0.tgz_1496138220428_0.2157104630023241"},"directories":{}},"2.0.1":{"name":"react-measure","version":"2.0.1","description":"Compute measurements of React components.","main":"lib/react-measure.js","files":["dist","lib"],"scripts":{"build:lib":"babel src --out-dir lib","build":"npm run build:lib && NODE_ENV=production webpack --config webpack.prod.config.js","dev":"webpack-dev-server --inline --hot --progress --colors --host 0.0.0.0 --devtool eval","postbuild":"NODE_ENV=production TARGET=minify webpack --config webpack.prod.config.js","prebuild":"rm -rf dist && mkdir dist","prepublish":"npm run build","deploy":"NODE_ENV=production TARGET=minify webpack && git-directory-deploy --directory example --branch gh-pages"},"repository":{"type":"git","url":"git+https://github.com/souporserious/react-measure.git"},"keywords":["react","component","measure","measurements","dimensions","element-queries","container-queries","size"],"author":{"name":"Travis Arnold","email":"travis@souporserious.com","url":"http://souporserious.com"},"license":"MIT","bugs":{"url":"https://github.com/souporserious/react-measure/issues"},"homepage":"https://github.com/souporserious/react-measure","peerDependencies":{"react":">0.13.0","react-dom":">0.13.0"},"dependencies":{"get-node-dimensions":"^1.2.0","prop-types":"^15.5.10","resize-observer-polyfill":"^1.4.2"},"devDependencies":{"babel-cli":"^6.16.0","babel-core":"^6.17.0","babel-loader":"^6.2.5","babel-plugin-add-module-exports":"^0.2.1","babel-preset-es2015":"^6.16.0","babel-preset-react":"^6.16.0","babel-preset-stage-0":"^6.16.0","chokidar":"^1.6.1","css-loader":"^0.25.0","git-directory-deploy":"^1.5.1","http-server":"^0.9.0","node-libs-browser":"^1.0.0","node-sass":"^3.2.0","postcss-loader":"^0.13.0","react":"15.3.2","react-dom":"15.3.2","react-motion":"^0.4.2","sass-loader":"^4.0.2","style-loader":"^0.13.1","webpack":"^1.13.2","webpack-dev-server":"^1.9.0"},"gitHead":"5360f259d41f4414a1a95fa98c9353a7de4e5fb1","_id":"react-measure@2.0.1","_shasum":"2d6e31511b66c1608b304ba3defe2fc0dd83d64a","_from":".","_npmVersion":"4.2.0","_nodeVersion":"7.10.0","_npmUser":{"name":"anonymous","email":"travis@souporserious.com"},"dist":{"shasum":"2d6e31511b66c1608b304ba3defe2fc0dd83d64a","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/react-measure/-/react-measure-2.0.1.tgz","integrity":"sha512-uNwn3Fr2hp3ds6iM2E4mWWtBkWmR4wUQ0xdwh26SLlifTg9vakwCfdRSz1y+ULFCN+Q+kYAbaUZuU+D/fBr8+g==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCICHYDv8yQ1MMlRU+EUWhRKrifcH7822J5IgZZfvRaSLrAiAwHoAtI6cQvGXj6LZl86Bv6+HldvxGgI7zO4dB/5Q/dA=="}]},"maintainers":[{"name":"anonymous","email":"travis@souporserious.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/react-measure-2.0.1.tgz_1496175068278_0.26806513546034694"},"directories":{}},"2.0.2":{"name":"react-measure","version":"2.0.2","description":"Compute measurements of React components.","main":"lib/react-measure.js","files":["dist","lib"],"scripts":{"build:lib":"babel src --out-dir lib","build":"npm run build:lib && NODE_ENV=production webpack --config webpack.prod.config.js","dev":"webpack-dev-server --inline --hot --progress --colors --host 0.0.0.0 --devtool eval","postbuild":"NODE_ENV=production TARGET=minify webpack --config webpack.prod.config.js","prebuild":"rm -rf dist && mkdir dist","prepublish":"npm run build","deploy":"NODE_ENV=production TARGET=minify webpack && git-directory-deploy --directory example --branch gh-pages"},"repository":{"type":"git","url":"git+https://github.com/souporserious/react-measure.git"},"keywords":["react","component","measure","measurements","dimensions","element-queries","container-queries","size"],"author":{"name":"Travis Arnold","email":"travis@souporserious.com","url":"http://souporserious.com"},"license":"MIT","bugs":{"url":"https://github.com/souporserious/react-measure/issues"},"homepage":"https://github.com/souporserious/react-measure","peerDependencies":{"react":">0.13.0","react-dom":">0.13.0"},"dependencies":{"get-node-dimensions":"^1.2.0","prop-types":"^15.5.10","resize-observer-polyfill":"^1.4.2"},"devDependencies":{"babel-cli":"^6.16.0","babel-core":"^6.17.0","babel-loader":"^6.2.5","babel-plugin-add-module-exports":"^0.2.1","babel-preset-es2015":"^6.16.0","babel-preset-react":"^6.16.0","babel-preset-stage-0":"^6.16.0","chokidar":"^1.6.1","css-loader":"^0.25.0","git-directory-deploy":"^1.5.1","http-server":"^0.9.0","node-libs-browser":"^1.0.0","node-sass":"^3.2.0","postcss-loader":"^0.13.0","react":"15.3.2","react-dom":"15.3.2","react-motion":"^0.4.2","sass-loader":"^4.0.2","style-loader":"^0.13.1","webpack":"^1.13.2","webpack-dev-server":"^1.9.0"},"gitHead":"0bd9e00aca9136d937ec486cb07ec61bf079ee10","_id":"react-measure@2.0.2","_shasum":"072a9a5fafc01dfbadc1fa5fb09fc351037f636c","_from":".","_npmVersion":"4.2.0","_nodeVersion":"7.10.0","_npmUser":{"name":"anonymous","email":"travis@souporserious.com"},"dist":{"shasum":"072a9a5fafc01dfbadc1fa5fb09fc351037f636c","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/react-measure/-/react-measure-2.0.2.tgz","integrity":"sha512-MQwdnWdQTCkDZlEAQkrYIfdSajTFY6eFl5UNLRKF/Srde5j9xLMv5vZ+hHuBv0sX3wIujU00knvmrjfcqdIoQA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCmYu0AYzgRvjbU9EPy5vc5qBibCijhUqpuPSEk3PmeiwIhAJsUPABtUF8Alp4whhPwei21Ki7ojGbtawEga9+3y1cZ"}]},"maintainers":[{"name":"anonymous","email":"travis@souporserious.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/react-measure-2.0.2.tgz_1496224197923_0.6049981650430709"},"directories":{}},"3.0.0-rc.0":{"name":"react-measure","version":"3.0.0-rc.0","description":"Compute measurements of React components.","main":"lib/react-measure.js","files":["dist","lib"],"scripts":{"build":"babel src --out-dir lib","deploy":"NODE_ENV=production TARGET=minify webpack && git-directory-deploy --directory example --branch gh-pages","dev":"webpack-dev-server","prepublish":"npm run build","start":"npm run dev"},"repository":{"type":"git","url":"https://github.com/souporserious/react-measure"},"keywords":["react","component","measure","measurements","dimensions","element-queries","container-queries","size","scroll","position"],"author":{"name":"Travis Arnold","email":"travis@souporserious.com","url":"http://souporserious.com"},"license":"MIT","bugs":{"url":"https://github.com/souporserious/react-measure/issues"},"homepage":"https://github.com/souporserious/react-measure","peerDependencies":{"react":">0.13.0","react-dom":">0.13.0"},"dependencies":{"prop-types":"^15.6.0","resize-observer-polyfill":"^1.5.0"},"devDependencies":{"babel-cli":"^6.16.0","babel-core":"^6.17.0","babel-eslint":"^8.2.1","babel-loader":"^7.1.2","babel-preset-env":"^1.6.1","babel-preset-react":"^6.16.0","babel-preset-stage-0":"^6.16.0","create-react-context":"^0.1.6","faker":"^4.1.0","git-directory-deploy":"^1.5.1","popmotion":"^8.1.10","prettier":"^1.10.2","react":"16.2.0","react-dom":"16.2.0","react-motion":"^0.5.2","stylefire":"^1.1.9","webpack":"^3.10.0","webpack-dev-middleware":"^2.0.4","webpack-dev-server":"^2.11.1","webpack-hot-middleware":"^2.21.0"},"licenseText":"The MIT License (MIT)\n\nCopyright (c) 2015 React Measure authors\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n","_id":"react-measure@3.0.0-rc.0","dist":{"shasum":"faa4380b17bfcd3dc079c4c692df9d3f53dc85f2","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/react-measure/-/react-measure-3.0.0-rc.0.tgz","fileCount":17,"unpackedSize":48039,"integrity":"sha512-9rHxh9qaPyLeq5CQLNvRCh+cKxiGDf2HSZxv2O21739m56wYWMxjGAWA6Y9X6E2cxQBKTVym0Jm6f/ebTBcXJQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIDgOwzsxwGhPCiliPfZai2eW8/jqQ7IxNhPpoqvLnTDZAiEA0nkWchxSCZU9hROXwA6edh0ZHgbEBxrG9aioYza4J2M="}]},"maintainers":[{"email":"ftntravis@gmail.com","name":"anonymous"}],"_npmUser":{"name":"anonymous","email":"ftntravis@gmail.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/react-measure_3.0.0-rc.0_1519089547925_0.9389537233759129"},"_hasShrinkwrap":false},"3.0.0-rc.1":{"name":"react-measure","version":"3.0.0-rc.1","description":"Compute measurements of React components.","main":"lib/index.js","files":["dist","lib"],"scripts":{"build":"babel src --out-dir lib","deploy":"NODE_ENV=production TARGET=minify webpack && git-directory-deploy --directory example --branch gh-pages","dev":"webpack-dev-server","prepublish":"npm run build","start":"npm run dev"},"repository":{"type":"git","url":"https://github.com/souporserious/react-measure"},"keywords":["react","component","measure","measurements","dimensions","element-queries","container-queries","size","scroll","position"],"author":{"name":"Travis Arnold","email":"travis@souporserious.com","url":"http://souporserious.com"},"license":"MIT","bugs":{"url":"https://github.com/souporserious/react-measure/issues"},"homepage":"https://github.com/souporserious/react-measure","peerDependencies":{"react":">0.13.0","react-dom":">0.13.0"},"dependencies":{"prop-types":"^15.6.0","resize-observer-polyfill":"^1.5.0"},"devDependencies":{"babel-cli":"^6.16.0","babel-core":"^6.17.0","babel-eslint":"^8.2.1","babel-loader":"^7.1.2","babel-preset-env":"^1.6.1","babel-preset-react":"^6.16.0","babel-preset-stage-0":"^6.16.0","create-react-context":"^0.1.6","faker":"^4.1.0","git-directory-deploy":"^1.5.1","popmotion":"^8.1.10","prettier":"^1.10.2","react":"16.2.0","react-dom":"16.2.0","react-motion":"^0.5.2","stylefire":"^1.1.9","webpack":"^3.10.0","webpack-dev-middleware":"^2.0.4","webpack-dev-server":"^2.11.1","webpack-hot-middleware":"^2.21.0"},"licenseText":"The MIT License (MIT)\n\nCopyright (c) 2015 React Measure authors\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n","_id":"react-measure@3.0.0-rc.1","dist":{"shasum":"6043049e10db6fa0500f868da5b9e557c1654379","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/react-measure/-/react-measure-3.0.0-rc.1.tgz","fileCount":10,"unpackedSize":28515,"integrity":"sha512-DxVH0p1V9ZgF08POAbJ54ZatXM0/J6RxZ1rfUD0dSe6Wjpn10Ujj9HiiW6Szt6GT8/xJw/BemcBElDYVo2Ua3g==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEMCHyd0znsKUzSpwwl5f4fwRd/wAd4fa4vu6XpzuqvkvQcCIFxrHQkzUNJkp8OHoQ2J67KkjmMrjhjgoLow9r6c+P1+"}]},"maintainers":[{"email":"ftntravis@gmail.com","name":"anonymous"}],"_npmUser":{"name":"anonymous","email":"ftntravis@gmail.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/react-measure_3.0.0-rc.1_1519089962010_0.17698073062741715"},"_hasShrinkwrap":false},"3.0.0-rc.2":{"name":"react-measure","version":"3.0.0-rc.2","description":"Compute measurements of React components.","main":"lib/index.js","files":["dist","lib"],"scripts":{"build":"babel src --out-dir lib","deploy":"NODE_ENV=production TARGET=minify webpack && git-directory-deploy --directory example --branch gh-pages","dev":"webpack-dev-server","prepublish":"npm run build","start":"npm run dev"},"repository":{"type":"git","url":"https://github.com/souporserious/react-measure"},"keywords":["react","component","measure","measurements","dimensions","element-queries","container-queries","size","scroll","position"],"author":{"name":"Travis Arnold","email":"travis@souporserious.com","url":"http://souporserious.com"},"license":"MIT","bugs":{"url":"https://github.com/souporserious/react-measure/issues"},"homepage":"https://github.com/souporserious/react-measure","peerDependencies":{"react":">0.13.0","react-dom":">0.13.0"},"dependencies":{"prop-types":"^15.6.0","resize-observer-polyfill":"^1.5.0"},"devDependencies":{"babel-cli":"^6.16.0","babel-core":"^6.17.0","babel-eslint":"^8.2.1","babel-loader":"^7.1.2","babel-preset-env":"^1.6.1","babel-preset-react":"^6.16.0","babel-preset-stage-0":"^6.16.0","create-react-context":"^0.1.6","faker":"^4.1.0","git-directory-deploy":"^1.5.1","popmotion":"^8.1.10","prettier":"^1.10.2","react":"16.2.0","react-dom":"16.2.0","react-motion":"^0.5.2","stylefire":"^1.1.9","webpack":"^3.10.0","webpack-dev-middleware":"^2.0.4","webpack-dev-server":"^2.11.1","webpack-hot-middleware":"^2.21.0"},"licenseText":"The MIT License (MIT)\n\nCopyright (c) 2015 React Measure authors\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n","_id":"react-measure@3.0.0-rc.2","dist":{"shasum":"fd7cd9f7cc426abc6a9a4c17de219c521ccab792","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/react-measure/-/react-measure-3.0.0-rc.2.tgz","fileCount":10,"unpackedSize":28516,"integrity":"sha512-g97a9kKGgLkOw7XLhBjBuGfhaTL6lIcigKibkgr16YHnL3kDsLuVUbgnPeGx1dkmqAqdn3+RwXOZZxv6vVWANg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCcnFQq9TgpLFvB+4JA1VZBcU8OWr07QCm9EaZhLrAGKAIgUEXv0JOUUkrollgfnBwRjFMog05B3nw+6Hcryqe6Zog="}]},"maintainers":[{"email":"ftntravis@gmail.com","name":"anonymous"}],"_npmUser":{"name":"anonymous","email":"ftntravis@gmail.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/react-measure_3.0.0-rc.2_1519166656185_0.11988265486042327"},"_hasShrinkwrap":false},"3.0.0-rc.3":{"name":"react-measure","version":"3.0.0-rc.3","description":"Compute measurements of React components.","main":"lib/index.js","files":["dist","lib"],"scripts":{"build":"babel src --out-dir lib","deploy":"NODE_ENV=production TARGET=minify webpack && git-directory-deploy --directory example --branch gh-pages","dev":"webpack-dev-server","prepublish":"npm run build","start":"npm run dev"},"repository":{"type":"git","url":"https://github.com/souporserious/react-measure"},"keywords":["react","component","measure","measurements","dimensions","element-queries","container-queries","size","scroll","position"],"author":{"name":"Travis Arnold","email":"travis@souporserious.com","url":"http://souporserious.com"},"license":"MIT","bugs":{"url":"https://github.com/souporserious/react-measure/issues"},"homepage":"https://github.com/souporserious/react-measure","peerDependencies":{"react":">0.13.0","react-dom":">0.13.0"},"dependencies":{"prop-types":"^15.6.0","resize-observer-polyfill":"^1.5.0"},"devDependencies":{"babel-cli":"^6.16.0","babel-core":"^6.17.0","babel-eslint":"^8.2.1","babel-loader":"^7.1.2","babel-preset-env":"^1.6.1","babel-preset-react":"^6.16.0","babel-preset-stage-0":"^6.16.0","create-react-context":"^0.1.6","faker":"^4.1.0","git-directory-deploy":"^1.5.1","popmotion":"^8.1.10","prettier":"^1.10.2","react":"16.2.0","react-dom":"16.2.0","react-motion":"^0.5.2","stylefire":"^1.1.9","webpack":"^3.10.0","webpack-dev-middleware":"^2.0.4","webpack-dev-server":"^2.11.1","webpack-hot-middleware":"^2.21.0"},"licenseText":"The MIT License (MIT)\n\nCopyright (c) 2015 React Measure authors\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n","_id":"react-measure@3.0.0-rc.3","dist":{"shasum":"99672b647efedf12cee2bf9f9bebe1bb57ce6c5c","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/react-measure/-/react-measure-3.0.0-rc.3.tgz","fileCount":10,"unpackedSize":28477,"integrity":"sha512-VqgcBpih7zgKth8XlY0eIl0fz3KSoSX3H7+bTgvtoiLl3NeGhYH6RjM/6GInQy6gGyAEJzeYZjC7EwXTJN1ciw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCKU6gZl1ee7lMWLHE+tamo8LQb+SaFXDNB4yahw38S0wIgMoYHPjrZcURMKdQb+uDNhzROf3/uxptEsuWvtrQ2zbQ="}]},"maintainers":[{"email":"ftntravis@gmail.com","name":"anonymous"}],"_npmUser":{"name":"anonymous","email":"ftntravis@gmail.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/react-measure_3.0.0-rc.3_1519170091050_0.16084188829402146"},"_hasShrinkwrap":false},"2.1.0":{"name":"react-measure","version":"2.1.0","description":"Compute measurements of React components.","main":"lib/react-measure.js","files":["dist","lib"],"scripts":{"build:lib":"babel src --out-dir lib","build":"npm run build:lib && NODE_ENV=production webpack --config webpack.prod.config.js","dev":"webpack-dev-server --inline --hot --progress --colors --host 0.0.0.0 --devtool eval","postbuild":"NODE_ENV=production TARGET=minify webpack --config webpack.prod.config.js","prebuild":"rm -rf dist && mkdir dist","prepublish":"npm run build","deploy":"NODE_ENV=production TARGET=minify webpack && git-directory-deploy --directory example --branch gh-pages"},"repository":{"type":"git","url":"git+https://github.com/souporserious/react-measure.git"},"keywords":["react","component","measure","measurements","dimensions","element-queries","container-queries","size"],"author":{"name":"Travis Arnold","email":"travis@souporserious.com","url":"http://souporserious.com"},"license":"MIT","bugs":{"url":"https://github.com/souporserious/react-measure/issues"},"homepage":"https://github.com/souporserious/react-measure","peerDependencies":{"react":">0.13.0","react-dom":">0.13.0"},"dependencies":{"get-node-dimensions":"^1.2.0","prop-types":"^15.5.10","resize-observer-polyfill":"^1.4.2"},"devDependencies":{"babel-cli":"^6.16.0","babel-core":"^6.17.0","babel-loader":"^6.2.5","babel-preset-es2015":"^6.16.0","babel-preset-react":"^6.16.0","babel-preset-stage-0":"^6.16.0","chokidar":"^1.6.1","css-loader":"^0.25.0","git-directory-deploy":"^1.5.1","http-server":"^0.11.1","node-libs-browser":"^1.0.0","node-sass":"^4.9.2","postcss-loader":"^0.13.0","react":"15.3.2","react-dom":"15.3.2","react-motion":"^0.4.2","sass-loader":"^4.0.2","style-loader":"^0.13.1","webpack":"^1.13.2","webpack-dev-server":"^3.1.5"},"gitHead":"d7af1e0fecd67540193b4a4404e305d0ced04948","_id":"react-measure@2.1.0","_npmVersion":"6.1.0","_nodeVersion":"8.11.1","_npmUser":{"name":"anonymous","email":"ftntravis@gmail.com"},"dist":{"integrity":"sha512-nHdoq1eTbGVg/jWWAEtxXSHH51j09d1nPabj6PwS+pNSCYYf1H5XLMfcfU2ZTnkDU/Xg0fGY79Xud2Gsp3VsmQ==","shasum":"e9a4645066d6fed54cf0ce44aa7a28da6dd7a9f7","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/react-measure/-/react-measure-2.1.0.tgz","fileCount":11,"unpackedSize":88013,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJbZlXMCRA9TVsSAnZWagAAeygP/2s3ez3NPUR2uKzU/vST\nk5/UMA6X75BnuPwJLZe39C6wXGXBf2U7ot9pgjpm5Wc3MOQiv3ssqQXIlJMk\ntFGzhSczRca1g+/eI/OIxNIDrVpTyrf2L6SuS0U5K08KZIKwjjy/6WGGjdGL\nagJq0cQhetDg6uBY7oxzb8SSFGgF2RgD0yCdk+xJ6guzdmVk8Y+1ykskjSh0\nRnviQyzSh2qkZyQ/+IMGmjyzJKUVtZolInBJUrSswBVYFaXZ8aE9vYn9q50g\nPwoe0yfH+qvzBhz6qydWf6/E27K8C9yC5I3RRs0bsWhtI4XVgoCGWDloNU3i\n76SKLzvnkWxHxOAWPFR/HpZOV786i9vFxgBVgbf64igPKO6ZCYgrIo+9MGp9\nkAlZ3U0WZ+n0xMBqMWkjKbrC2gOJzpim7iGm6WSwdnRo8sgxn+Zq90mmNgD6\nIvKp10BxSFqtLdUzQgK4wcVEm16CBvxtxnwhEqWG3wSrhK4bdON7JF/oVT0m\nLN+mQQA6SfrKFWap6HRdMLcDaBbfd1IHvGMgs+d0ctDVivBng4QuZ1+uWK7N\ndg7sqhXT8p4tc+xgZKGXiW68ZmqAhSO4ZFP4hFPn18/RWcH58fOmsc9qaolq\n4WH/44VmRrRgvbtp8rSCFRaO+dbydrVQi1ZlV4QofBfr+Fu4pF+gcTmXD9zY\nUdbN\r\n=HJ6a\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDXAFo33H+TNwcIglHaMpU3w40DSt1H/eKJJWuuDzbFgQIhAMLDk0Myg9khVKa377HpruZSTWAAIxscaJSsKCqRri6q"}]},"maintainers":[{"email":"ftntravis@gmail.com","name":"anonymous"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/react-measure_2.1.0_1533433291590_0.6342219757810568"},"_hasShrinkwrap":false},"2.1.1":{"name":"react-measure","version":"2.1.1","description":"Compute measurements of React components.","main":"lib/react-measure.js","scripts":{"build:lib":"babel src --out-dir lib","build":"npm run build:lib && NODE_ENV=production webpack --config webpack.prod.config.js","dev":"webpack-dev-server --inline --hot --progress --colors --host 0.0.0.0 --devtool eval","postbuild":"NODE_ENV=production TARGET=minify webpack --config webpack.prod.config.js","prebuild":"rm -rf dist && mkdir dist","prepublish":"npm run build","deploy":"NODE_ENV=production TARGET=minify webpack && git-directory-deploy --directory example --branch gh-pages"},"repository":{"type":"git","url":"git+https://github.com/souporserious/react-measure.git"},"keywords":["react","component","measure","measurements","dimensions","element-queries","container-queries","size"],"author":{"name":"Travis Arnold","email":"travis@souporserious.com","url":"http://souporserious.com"},"license":"MIT","bugs":{"url":"https://github.com/souporserious/react-measure/issues"},"homepage":"https://github.com/souporserious/react-measure","peerDependencies":{"react":">0.13.0","react-dom":">0.13.0"},"dependencies":{"get-node-dimensions":"^1.2.0","prop-types":"^15.5.10","resize-observer-polyfill":"^1.4.2"},"devDependencies":{"babel-cli":"^6.16.0","babel-core":"^6.17.0","babel-loader":"^6.2.5","babel-preset-es2015":"^6.16.0","babel-preset-react":"^6.16.0","babel-preset-stage-0":"^6.16.0","chokidar":"^1.6.1","css-loader":"^0.25.0","git-directory-deploy":"^1.5.1","http-server":"^0.11.1","node-libs-browser":"^1.0.0","node-sass":"^4.9.2","postcss-loader":"^0.13.0","react":"15.3.2","react-dom":"15.3.2","react-motion":"^0.4.2","sass-loader":"^4.0.2","style-loader":"^0.13.1","webpack":"^1.13.2","webpack-dev-server":"^3.1.5"},"gitHead":"d18b065a32eb9c63f47b225269992a4f16a6b39a","_id":"react-measure@2.1.1","_npmVersion":"6.4.1","_nodeVersion":"8.11.1","_npmUser":{"name":"anonymous","email":"ftntravis@gmail.com"},"dist":{"integrity":"sha512-WlPRjheE4Oue4/s6+g51LQWtrnPI3qqtSlSofIjRj3IXm+przV1dr/h+ujCw0Fx6BUZoRg/rm13otm5kHlcdIg==","shasum":"f69b95f072eef3d1ec9e2783e966badf2c409744","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/react-measure/-/react-measure-2.1.1.tgz","fileCount":11,"unpackedSize":88129,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJblfXnCRA9TVsSAnZWagAAdUIP/3uVzsdsBLa5o0rv5FAM\nCEO9qsdy2r4w2Pnqz0udVjztez4khTYBcG3NN2fj1ckgg9iHkYEX8W7R+7mi\nMkAf7tv53hd1sQHXCVxWUKoljD7MtPZzPhVy4p8UeUle5qHQAVxpg7wZc9di\nOcJqw7MWOL+AqU2RzhF1tSUXFmhFNVMM+UdM+V8fuALCBYJEX7U96UOq2wYW\n+pDmBRX8nL6I8s0RJTeZhRcWpQLl66zqA3uHDPgdkpPaZaWx6ovTmhMfzLh1\naId5Eyehw5A1TcIkdBnsOTLwzA3uv5FV1iVERwZUSXdxnlz3uNEmewSP1jKg\nPxkw9A07Sg9rdQIeeMmG0Zq3PayQYRJjSTgkqFgcsIEWGxlQraN2rO18ZIIZ\nFogSuK/Y20tBtjUSIRF83wYD6/uVhK3sucoOoiwXN+6BmiiOXB/swdrk6nAh\nogtfEu00dEoSWfJqKYmHXkQeepSjhnbIbVfOM+0tt+Gok3CCkjNX27m0rz1M\ngvUfX66O9pw1pzc3O6pJ/o1jeauFS4s/RjGKL70hXRCce0V7C8GoHF2AIkBy\n9ekUjkoEk70uMZTLPAirwZDs/CA9u2AElvrpjWa5N0HlOOwrcFP7aFKFBycb\nJfygQ+ufKW/SIQcuCBtszthCxLBbdddQ6I/kvHrqZxkEB+PkTR/iIRUsKF58\nVAKL\r\n=wnOa\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDXxmHUPFQHHzOPfrpY+6NwFaudB6N8k4FTgFgXJxHX8AIhALEDEFBUiWq7Ut796gyVNqgSPfvHDjk+zKZs3M3zst2B"}]},"maintainers":[{"email":"ftntravis@gmail.com","name":"anonymous"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/react-measure_2.1.1_1536554471057_0.403640526153191"},"_hasShrinkwrap":false},"2.1.2":{"name":"react-measure","version":"2.1.2","description":"Compute measurements of React components.","main":"lib/react-measure.js","scripts":{"build:lib":"babel src --out-dir lib","build":"npm run build:lib && NODE_ENV=production webpack --config webpack.prod.config.js","dev":"webpack-dev-server --inline --hot --progress --colors --host 0.0.0.0 --devtool eval","postbuild":"NODE_ENV=production TARGET=minify webpack --config webpack.prod.config.js","prebuild":"rm -rf dist && mkdir dist","prepublish":"npm run build","deploy":"NODE_ENV=production TARGET=minify webpack && git-directory-deploy --directory example --branch gh-pages"},"repository":{"type":"git","url":"git+https://github.com/souporserious/react-measure.git"},"keywords":["react","component","measure","measurements","dimensions","element-queries","container-queries","size"],"author":{"name":"Travis Arnold","email":"travis@souporserious.com","url":"http://souporserious.com"},"license":"MIT","bugs":{"url":"https://github.com/souporserious/react-measure/issues"},"homepage":"https://github.com/souporserious/react-measure","peerDependencies":{"react":">0.13.0","react-dom":">0.13.0"},"dependencies":{"get-node-dimensions":"^1.2.0","prop-types":"^15.5.10","resize-observer-polyfill":"^1.4.2"},"devDependencies":{"babel-cli":"^6.16.0","babel-core":"^6.17.0","babel-loader":"^6.2.5","babel-preset-es2015":"^6.16.0","babel-preset-react":"^6.16.0","babel-preset-stage-0":"^6.16.0","chokidar":"^1.6.1","css-loader":"^0.25.0","git-directory-deploy":"^1.5.1","http-server":"^0.11.1","node-libs-browser":"^1.0.0","node-sass":"^4.9.2","postcss-loader":"^0.13.0","react":"15.3.2","react-dom":"15.3.2","react-motion":"^0.4.2","sass-loader":"^4.0.2","style-loader":"^0.13.1","webpack":"^1.13.2","webpack-dev-server":"^3.1.5"},"gitHead":"eb34467a4555476ce83949a918d714fb5e183305","_id":"react-measure@2.1.2","_npmVersion":"6.4.1","_nodeVersion":"8.11.1","_npmUser":{"name":"anonymous","email":"ftntravis@gmail.com"},"dist":{"integrity":"sha512-2xgrlj77Pv8MIYhm+S5s4Q+QnsYFT3CXzoUkx2mWZBIWzQnT7ubMtmsVtCoNdYV5PGKjTlwo9iGAtS3SrTG/Gg==","shasum":"2fa690cc657d1e7a1271902b7a5937e0055338d5","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/react-measure/-/react-measure-2.1.2.tgz","fileCount":11,"unpackedSize":89368,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJblnbICRA9TVsSAnZWagAA4nwP/Roi+vk3ZXz/T4Gc9nzB\nO1CNMax0VCaljTmkLCl+kHdGhakkCDIu/mhNr1LtsLxoLQzbIvKc4Qmkm8Em\nfoaBFDHcpumw4mn6wdK0YJ6SYaDzFi/O1YzkmZ4Gjo3WGr+4cWQf/KfmmQHV\n2c8OnsZcX9nNU/hvb70duyVi3MqnbQ4TQ0SXVeZaWWxUBzlU/IIVmuWF947N\nm01hV4qeOrLZthVKRQfsWA4WlUzpmtVvQjqxO8c9R/iMQiwksVsJVNDkrchw\n8rOGcfEoDBd3U2vN8OWWe22dKFXR67BvTLgh44T/yoC4UTYhFoQ10REX44Fr\nWPu7BAiwbgyJhGWx68zyQA7wmRu6L5opWXJkScCyGYxdmQDv/aQ70u75Vx4X\nN7KUbr91dfUxbolboC2/kByY+sA5msMsF13VDcjp5pj2kIfuHR9QfJenPGsR\n6c9qRQUAmWk28mE/3h1KPn6v7h7mRzVEQyIk9YiQEwbR+75UsHrTrv2mScIW\nt9IQ74PmDUTxeTAXe8fvQyCFZ7js/Sk4nlViuhKUbs7JUHczpsUXZXrPHuBR\nzf3uhP+JyeLCoz5G+Y8OhW1OytjmOSA7yyEhMsl/jgremsCvlsfNsbPu0EMp\nZWFPRiBCiDnPFfl4P+4oHLZAkRTNmGkvppG1HYISz7LDsoNaAbOfL0oH93j2\nSiZu\r\n=b0Pu\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIApyXTJfSoUbf3jmDy4d9x5hw21C6CnpkW04mJKcWhTqAiBySFIRg3UWzU/d6jsyfP29FcJyKfBc6SRZreLaHCTltQ=="}]},"maintainers":[{"email":"ftntravis@gmail.com","name":"anonymous"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/react-measure_2.1.2_1536587463743_0.8352997258640988"},"_hasShrinkwrap":false},"2.1.3":{"name":"react-measure","version":"2.1.3","description":"Compute measurements of React components.","main":"lib/react-measure.js","scripts":{"build:lib":"babel src --out-dir lib","build":"npm run build:lib && NODE_ENV=production webpack --config webpack.prod.config.js","dev":"webpack-dev-server --inline --hot --progress --colors --host 0.0.0.0 --devtool eval","postbuild":"NODE_ENV=production TARGET=minify webpack --config webpack.prod.config.js","prebuild":"rm -rf dist && mkdir dist","prepublish":"npm run build","deploy":"NODE_ENV=production TARGET=minify webpack && git-directory-deploy --directory example --branch gh-pages"},"repository":{"type":"git","url":"https://github.com/souporserious/react-measure"},"keywords":["react","component","measure","measurements","dimensions","element-queries","container-queries","size"],"author":{"name":"Travis Arnold","email":"travis@souporserious.com","url":"http://souporserious.com"},"license":"MIT","bugs":{"url":"https://github.com/souporserious/react-measure/issues"},"homepage":"https://github.com/souporserious/react-measure","peerDependencies":{"react":">0.13.0","react-dom":">0.13.0"},"dependencies":{"get-node-dimensions":"^1.2.0","prop-types":"^15.5.10","resize-observer-polyfill":"^1.5.0"},"devDependencies":{"babel-cli":"^6.16.0","babel-core":"^6.17.0","babel-loader":"^6.2.5","babel-preset-es2015":"^6.16.0","babel-preset-react":"^6.16.0","babel-preset-stage-0":"^6.16.0","chokidar":"^1.6.1","css-loader":"^0.25.0","git-directory-deploy":"^1.5.1","http-server":"^0.11.1","node-libs-browser":"^1.0.0","node-sass":"^4.9.2","postcss-loader":"^0.13.0","react":"15.3.2","react-dom":"15.3.2","react-motion":"^0.4.2","sass-loader":"^4.0.2","style-loader":"^0.13.1","webpack":"^1.13.2","webpack-dev-server":"^3.1.5"},"licenseText":"The MIT License (MIT)\n\nCopyright (c) 2015 React Measure authors\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n","_id":"react-measure@2.1.3","dist":{"shasum":"8fc7d8a5f0844a4576b022fdb95a00fcaa657c32","integrity":"sha512-KRgEs44mtilTm/7wEO4hWLbFRMeRioA10LUYIC+yLaM2Nv45M6qxo/oqyAUZukv6RcCIuiIiOXcay18qH3L5RA==","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/react-measure/-/react-measure-2.1.3.tgz","fileCount":14,"unpackedSize":90330,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJb7OnoCRA9TVsSAnZWagAAoL0P/03ZVVdr6bAVS32r6zBS\n1EToudiCjRUR8hmVg07SwEfDi85VqYHB/s3w68Eyz+Dcy0oo7WOp/CsROxl6\nYUyLqB84W5B2QghUJ9keRZmCpPw8Ofswet9MOjYMrO2TV538Gwr9BQBi8RCm\noQimBRcB3SqoZfDZ0cAU02JKV8UZ0a08P+Nd8LRONOb9m1qhSPSeJx7C7zbl\n8yBx4cX2DiIv6jGPa6/zDhS5BoJFTC1PpvA5w2oT1k+7iryo/EIj+Vbw/Gkx\npLB8KfxOqAv+NLS3jxo0hnm+K73fqISBbq1zwRvBcJ9wZhj75Bl+qu3daEMK\ntiIUQNx3r7/JyKBf6y5859cuymiWkU5rbYamn5v03OJE5arvzn9UnkO9JJ+f\nyPJcdX44Oomdjd7DjFfwnoe/v8oc+tlfU7yp3++sC/+vgBVbfHnNluamXCPy\n6DQ+12C4DvVKU7wCO04YMlniJ5fQOtfha8zgY7BZMeuZXs6uUpadBieG4fKF\ncGqB9ffCcl/EKEDZhCvLdLxHH8WRlHWZdMXimsQZhYvcN+88K/F9G7NQcc1b\n3242EJsUyTbFc+JAT7yItkzbLrIN+fOvSgxizFBKe6iumsSXIWLP4nkYFINN\nRPQ4tyC5RRjBaWd7w2yCJbCWWN3CRFRUkXMoYowde0aWT2o17ePgbNM5iX9H\nDI+/\r\n=S8US\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIFiVPPEyiXUEGFvwl6f2Uwd8iKMB1/8xGKLfyjrVNfNnAiAUm57yEfYPPCJf7N/AqPuFa839dimj0mBFYU6HETEBMA=="}]},"maintainers":[{"email":"ftntravis@gmail.com","name":"anonymous"}],"_npmUser":{"name":"anonymous","email":"ftntravis@gmail.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/react-measure_2.1.3_1542253031332_0.7013455261833768"},"_hasShrinkwrap":false},"2.2.0":{"name":"react-measure","version":"2.2.0","description":"Compute measurements of React components.","main":"dist/index.cjs.js","module":"dist/index.esm.js","scripts":{"build":"rollup -c","prepublishOnly":"npm run build"},"repository":{"type":"git","url":"https://github.com/souporserious/react-measure"},"keywords":["react","component","measure","measurements","dimensions","element-queries","container-queries","size"],"author":{"name":"Travis Arnold","email":"travis@souporserious.com","url":"http://souporserious.com"},"license":"MIT","bugs":{"url":"https://github.com/souporserious/react-measure/issues"},"homepage":"https://github.com/souporserious/react-measure","peerDependencies":{"react":">0.13.0","react-dom":">0.13.0"},"dependencies":{"get-node-dimensions":"^1.2.1","prop-types":"^15.6.2","resize-observer-polyfill":"^1.5.0"},"devDependencies":{"@babel/cli":"^7.2.0","@babel/core":"^7.2.0","@babel/plugin-proposal-class-properties":"^7.2.1","@babel/plugin-transform-runtime":"^7.2.0","@babel/preset-env":"^7.2.0","@babel/preset-react":"^7.0.0","rollup":"^0.67.4","rollup-plugin-babel":"^4.1.0","rollup-plugin-node-resolve":"^4.0.0"},"licenseText":"The MIT License (MIT)\n\nCopyright (c) 2018 React Measure authors\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n","_id":"react-measure@2.2.0","dist":{"shasum":"a1e341605fd75c06fe2f6ce4b0b95c2e26474e53","integrity":"sha512-FP6ljRqM41vYfnVDrg0tGxXGAj9ZlU3DLUV3imd1FHRyfUrALADXhPhnfK+CJ2f/kVYMsCm4Ykik29yCikVqfw==","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/react-measure/-/react-measure-2.2.0.tgz","fileCount":17,"unpackedSize":70407,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcFFQ6CRA9TVsSAnZWagAAwzcP/23Hvph+lmWMgdRxxo1R\nl0z0Oi0fnIPbDmOc7r/58NazOO6obhCYupgxxeAy8Wa7aLfq/ExWN6UUnB76\nkbuMzY/jnd6wzocTnt0NJ0Qpqj1WU/H9fxwOs4seixFJKI/Ps9mAvwFejSVg\nDgoOMd2tRBEb6WnLfez2GoiSemiinyn+S60mv9ekIH2GTQbM24vytFJxqaLM\nuAlF+X7R6fHuErVnnfldUY9gDv7I1en0ntDpUBfAadMiRVe06YZTbJaube8h\n4FOm85e0yNHI91r+3apli3/FuQsaVVEZyHb3cUog+Hxxvd4JvEOFoVNJxagc\n7Bu6IuHPSuos6yR21o/U803fZt8F1tZBsZp3XBIlxqV+yKYLVZA1Upb5p98U\nyzGsp8BainR3a2LIlq2SpEF8IAX1KcdhQpSWhj8rDKdoR5opKwfDOihvP3Zf\nr8w9HKNk3iWUkMjYsR/6f4BqCuPIASfbiW5ns9yRVWUesmZylvlUkbmzJ1gK\nHls6Q8ueW+fTu2iy7KNctP70HmBhtbdWo/tOeb3g9Grq4y93CM5+i8i0u3PT\nybhTqMnW3nesWOfRFEGgjv8Bi6iYwR5n5vxn27CkXWDwRFzJEhpyiDEkskeO\nmn08F0+ONqSZUypgGvkYn/FllSAAkdjjmlMSvQXKgDVSzNp6V9MI4nPh0OPa\nuEws\r\n=GFOs\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDuHKiFkfLA9+GFNJW7DSzWXb8dAy6KzOc2nmCmo53rnAIhAOnYx5nS5S2jeN+KcQGftN1mvSuyuQqydCrsGvnKWSfL"}]},"maintainers":[{"email":"ftntravis@gmail.com","name":"anonymous"}],"_npmUser":{"name":"anonymous","email":"ftntravis@gmail.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/react-measure_2.2.0_1544836154011_0.76714053768617"},"_hasShrinkwrap":false},"2.2.1":{"name":"react-measure","version":"2.2.1","description":"Compute measurements of React components.","main":"dist/index.cjs.js","module":"dist/index.esm.js","scripts":{"build":"rollup -c","prepublishOnly":"npm run build"},"repository":{"type":"git","url":"https://github.com/souporserious/react-measure"},"keywords":["react","component","measure","measurements","dimensions","element-queries","container-queries","size"],"author":{"name":"Travis Arnold","email":"travis@souporserious.com","url":"http://souporserious.com"},"license":"MIT","bugs":{"url":"https://github.com/souporserious/react-measure/issues"},"homepage":"https://github.com/souporserious/react-measure","peerDependencies":{"react":">0.13.0","react-dom":">0.13.0"},"dependencies":{"get-node-dimensions":"^1.2.1","prop-types":"^15.6.2","resize-observer-polyfill":"^1.5.0"},"devDependencies":{"@babel/cli":"^7.2.0","@babel/core":"^7.2.0","@babel/plugin-proposal-class-properties":"^7.2.1","@babel/plugin-transform-runtime":"^7.2.0","@babel/preset-env":"^7.2.0","@babel/preset-react":"^7.0.0","rollup":"^0.67.4","rollup-plugin-babel":"^4.1.0","rollup-plugin-node-resolve":"^4.0.0"},"licenseText":"The MIT License (MIT)\n\nCopyright (c) 2018 React Measure authors\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n","_id":"react-measure@2.2.1","dist":{"shasum":"5bc50baf981f2cba7de22c003c89a2c6ed61a1b1","integrity":"sha512-uj7uCtB2ApKgXhJOcy2WWywdw0FVg/RMSfsPLnP9eLz8I2KA2P0R05gtTc8a5VOnnumuTYmxo0qn8S1srCWahw==","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/react-measure/-/react-measure-2.2.1.tgz","fileCount":17,"unpackedSize":70432,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcFFcvCRA9TVsSAnZWagAA7NYP/2uZoNLeoEKfydzTBjqL\nQ3K8CNt/Mfa7M/C+DVPt1lx6xhHEIKAMWzJU19O7O7ESr+OLpruTooiAwPoL\nUVAdApOSxPIc/iZJilSqMGjMkFzXnQBgP8hqlDrME+Wmyvq85BNOCsnmisHD\nA4NrbXq93hUVX4LdwJ79RhGL8da1onO1LHjxF/5RnUGZSSd1wA918sQ/X8Tb\n2Z8szaItoSqYe4E+TuhOyiPu4+OcqErtz4W+6m/t67ipntseHgy5+TcLd1h9\nvFg3K4pm7VxklUJ2CZ0UD3jPP3Pim0Jl3B58kqalwyHuB3nAEcNZi6WaCifo\nQca5SB5flvoAZz57TM7NnjdRT1C4HyuzZcKPcWfBYQ/GP/hQhZousyA8Qwwk\nKPVwtXV1WuXbi1RNzr1HSxD2dTvT1RBWbig0iV77pXH7WXcpuIvgVrTVOen2\n9cBlQkx118hHIxrevKv6JaUa89HqQCNxnYrn75CEB9KI4ZOqI8/9FlViv04d\nOC88qDn3sQmAxsi4OAFokM0Uq1X6MSnMcb32xWNzItkmhhu7ayBRj4Md5o5F\nDV8rGX3ak5NM0IvYnvMNcbMNMIRX3BmZ/3AsC+dSsrlz7RPjUGvme/Oh40k3\nOQBtbgNzOOAM8DDz4OsxtiAhOhw1h++Xy66HdStrYejpnKZNwOy+gLaSEQbA\nE4xG\r\n=Q2/I\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIBeXhfsrFZObku9BOOQdBfsMzT620zBfpXIJdekVJOg5AiEAgV6UFaQwlNx8a/6pky6Q7gE8yw8OPQRUftkqiFTJ2O8="}]},"maintainers":[{"email":"ftntravis@gmail.com","name":"anonymous"}],"_npmUser":{"name":"anonymous","email":"ftntravis@gmail.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/react-measure_2.2.1_1544836910528_0.6982861368238145"},"_hasShrinkwrap":false},"2.2.2":{"name":"react-measure","version":"2.2.2","description":"Compute measurements of React components.","main":"dist/index.cjs.js","module":"dist/index.esm.js","scripts":{"build":"rollup -c","prepublishOnly":"npm run build"},"repository":{"type":"git","url":"https://github.com/souporserious/react-measure"},"keywords":["react","component","measure","measurements","dimensions","element-queries","container-queries","size"],"author":{"name":"Travis Arnold","email":"travis@souporserious.com","url":"http://souporserious.com"},"license":"MIT","bugs":{"url":"https://github.com/souporserious/react-measure/issues"},"homepage":"https://github.com/souporserious/react-measure","peerDependencies":{"react":">0.13.0","react-dom":">0.13.0"},"dependencies":{"@babel/runtime":"^7.2.0","get-node-dimensions":"^1.2.1","prop-types":"^15.6.2","resize-observer-polyfill":"^1.5.0"},"devDependencies":{"@babel/cli":"^7.2.0","@babel/core":"^7.2.0","@babel/plugin-proposal-class-properties":"^7.2.1","@babel/plugin-transform-runtime":"^7.2.0","@babel/preset-env":"^7.2.0","@babel/preset-react":"^7.0.0","rollup":"^0.67.4","rollup-plugin-babel":"^4.1.0","rollup-plugin-node-resolve":"^4.0.0"},"licenseText":"The MIT License (MIT)\n\nCopyright (c) 2018 React Measure authors\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n","_id":"react-measure@2.2.2","dist":{"shasum":"881a7fc29db9f4eb2694a94dd16f60baadf6025a","integrity":"sha512-7cnTiqUfS08o2VQ+tZ614/MSpzgr5NiSWF3mmWM2MbvL1r8V20LXJZ1Mpyi0Nfwf7G1bP692eGCmgOc0fsWvFg==","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/react-measure/-/react-measure-2.2.2.tgz","fileCount":17,"unpackedSize":68587,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcGmLDCRA9TVsSAnZWagAAjNcP+QHvjILqRtVWVH6+Q5yY\nezX2gnfB+jlW1VdJSkui+1VygzYib6GCtBJGYpA7O6wixViSIqmcjkfKB8p0\nWQKBmr9T06kcHcdiV7ikLCNXE2j1A75tCTTXtyjL4MFHbfk4kTk3vl/VWc+3\n3eeAs5A6u1W8c7ertZ0qZjllCArNxytOtfAK53SRPKg/SqGBCywrXWVoe7I6\nvH3ZDHR4FsSOC0fJ5h8p/dQGOupG6n92lEW66xSuz/Xvbg+ENFtalG7e2n/w\nA2EQjk78d3Lq80dKsixBrAqXNbVGMIrE5v0kQuw4nNUnfA+5VMLJjsyTzMRY\nOJCXrAFNqnwI5Q+/36/0lHa79elYYilXJfM9tE2VFMUhS7eIyn9J1aoZYQcu\ny35bH+DAWpN5lJRDKEFr9hxuL/rRh3jsq0zdayfEY09VYf6hfAZwKF2hz9zw\nXYflJ9AGwA9ko7FMoqqNOv62nv9QcaxLKdVAwVJoFx0lFLxgIXJyr7931pjH\nxhiiuT3mn7C3VZenDnGlGbphEycCIVYygdP3QPFEHy2I8/YbPBGa+UwjpXeO\nizsXRjBPvKbpFohYWnyllrqfnETHTclqsZj1ulX3VNCIfPAeSbTGf4T2mIS6\nK+3G17lhPu7sghn0xoHdrjvImw6LJiYFJvUFvxIIdPBjRhTq2K1ZwT5bFRy/\n2cyY\r\n=XfK7\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIEaMs9d9tvKomvt+KagHdC5459rY8Fgxg0HG6X08ipBuAiAo4WorfvwyIwZWW3vOrqD8GXK/rnT0+BE1NM+MnSFS7g=="}]},"maintainers":[{"email":"ftntravis@gmail.com","name":"anonymous"}],"_npmUser":{"name":"anonymous","email":"ftntravis@gmail.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/react-measure_2.2.2_1545233090545_0.04829156669989687"},"_hasShrinkwrap":false},"2.2.3":{"name":"react-measure","version":"2.2.3","description":"Compute measurements of React components.","main":"dist/index.cjs.js","module":"dist/index.esm.js","scripts":{"build":"rollup -c","prepublishOnly":"npm run build"},"repository":{"type":"git","url":"https://github.com/souporserious/react-measure"},"keywords":["react","component","measure","measurements","dimensions","element-queries","container-queries","size"],"author":{"name":"Travis Arnold","email":"travis@souporserious.com","url":"http://souporserious.com"},"license":"MIT","bugs":{"url":"https://github.com/souporserious/react-measure/issues"},"homepage":"https://github.com/souporserious/react-measure","peerDependencies":{"react":">0.13.0","react-dom":">0.13.0"},"dependencies":{"@babel/runtime":"^7.2.0","get-node-dimensions":"^1.2.1","prop-types":"^15.6.2","resize-observer-polyfill":"^1.5.0"},"devDependencies":{"@babel/cli":"^7.2.0","@babel/core":"^7.2.0","@babel/plugin-proposal-class-properties":"^7.2.1","@babel/plugin-transform-runtime":"^7.2.0","@babel/preset-env":"^7.2.0","@babel/preset-react":"^7.0.0","rollup":"^0.67.4","rollup-plugin-babel":"^4.1.0","rollup-plugin-node-resolve":"^4.0.0"},"licenseText":"The MIT License (MIT)\n\nCopyright (c) 2018 React Measure authors\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n","_id":"react-measure@2.2.3","dist":{"shasum":"9ddd4c6f9ab8af2bf8f4b9f79434b64385dc40f3","integrity":"sha512-T2pNykdWhJRjbVbfX0A3GoELA6Q1U6GNZ3vzLqjbRHe1hwOA6QpqhAltrJDIbY9XYf++Gf1K1o3hEMe9xl2BHA==","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/react-measure/-/react-measure-2.2.3.tgz","fileCount":17,"unpackedSize":70286,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcTpUnCRA9TVsSAnZWagAAKHYP/ivWKsRL2Wloe0t8RrFa\nPfBK8GbMR0pjFhYo71URV0CY24oZpE7jL0CdE4sCRZmJTEY+H05jDOuDbBri\nAG1ZL4FPO6QglnXzFI7sYTR8IsSD5l0SApvaMdacomqvQTDJtfWbtk3Flqtb\nsGFTKnilejQ8rkPb4K4buDTANDZjFKbZBxByRtJZKjPN8m4JzCm8QSKJhScg\nml4FgfyCgFgRBDNaiMI7wo3unBO+jxSxHVcp6ZGa6ai6QFhItqQSNG55AVKi\neJ63UTnCmbjbm9fEfu0tNrdfNXHY850YLEGMDMkRYrMOnHEI75bi8S3O/7W3\nGNbqW63EPkaBu8lSF2IK4r29sywgygEY9XeNKlFwp7x5z4Sm07pd/tpxYoji\n++qmJcR5Y57OAtNHfKL8otZZoOzdBwqgUwLzQgOV6qvOHnLLMSvGECXj4Qv4\nz7hIHAJn3bye3pVukVsATKKVENStZSupKCG6E+zJqwev7/R2gEXIe/62YT6k\nMorS9mKITmtL7z7907SOZmlhjIUg622CtlF2MDh/AbgbKpuZkJLOQcR8TXxW\nD9SzcwvzP6updbWFV7xqeOza22BlraDFSdpIWBapSr3rezKbFbcfL6Ph0Nty\nhHNEFvgL5KJLKBhT7gG+VFMLLCESirSge3BJLPCNhBg4IpwP3hBtbFk3UCWS\nUGRM\r\n=L9A3\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDqR0WKPdAgXzYOJPW9UTVZ6AOHHbDU4Aw+3aEcZG0IWgIgVsfLBliwx2w754gfBnasz2M631t2rdUqrZYFnAepPZk="}]},"maintainers":[{"email":"ftntravis@gmail.com","name":"anonymous"}],"_npmUser":{"name":"anonymous","email":"ftntravis@gmail.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/react-measure_2.2.3_1548653862297_0.8798385957747812"},"_hasShrinkwrap":false},"2.2.4":{"name":"react-measure","version":"2.2.4","description":"Compute measurements of React components.","main":"dist/index.cjs.js","module":"dist/index.esm.js","scripts":{"build":"rollup -c","test":"jest --env=jsdom","test:ci":"cross-env CI=1 jest --env=jsdom","prettier":"prettier --write 'src/**/*.{js,json,css}'","prepublishOnly":"npm run build"},"repository":{"type":"git","url":"https://github.com/souporserious/react-measure"},"keywords":["react","component","measure","measurements","dimensions","element-queries","container-queries","size"],"author":{"name":"Travis Arnold","email":"travis@souporserious.com","url":"http://souporserious.com"},"license":"MIT","bugs":{"url":"https://github.com/souporserious/react-measure/issues"},"homepage":"https://github.com/souporserious/react-measure","jest":{"roots":["<rootDir>/src"]},"peerDependencies":{"react":">0.13.0","react-dom":">0.13.0"},"dependencies":{"@babel/runtime":"^7.2.0","get-node-dimensions":"^1.2.1","prop-types":"^15.6.2","resize-observer-polyfill":"^1.5.0"},"devDependencies":{"@babel/cli":"^7.2.0","@babel/core":"^7.2.0","@babel/plugin-proposal-class-properties":"^7.2.1","@babel/plugin-transform-runtime":"^7.2.0","@babel/preset-env":"^7.2.0","@babel/preset-react":"^7.0.0","cross-env":"^5.2.0","jest":"^24.0.0","prettier":"^1.16.4","react":"^16.7.0","react-dom":"^16.7.0","rollup":"^0.67.4","rollup-plugin-babel":"^4.1.0","rollup-plugin-node-resolve":"^4.0.0"},"licenseText":"The MIT License (MIT)\n\nCopyright (c) 2018 React Measure authors\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n","_id":"react-measure@2.2.4","dist":{"shasum":"cec3d96d3c39e22660e958e26d5498e4a342b9e4","integrity":"sha512-gpZA4J8sKy1TzTfnOXiiTu01GV8B5OyfF9k7Owt38T6Xxlll19PBE13HKTtauEmDdJO5u4o3XcTiGqCw5wpfjw==","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/react-measure/-/react-measure-2.2.4.tgz","fileCount":19,"unpackedSize":74921,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcWQPSCRA9TVsSAnZWagAAcXoP/3V9Odw73mHao8E5ELSv\ngXjyNPvRHWiFWurlVSsVnG8oAS0sIwnQRNg+eR9af1AZ9/0XUxyMACU+OzXw\nhq8qYIiOcKimcKfUFMKbXZ25c+1PLOaTJt/MCnxSjlqTbZJnElWPjYAA/tt9\nrqZm9dzn2wp5o/4Uh/1gyUt0FFn6JemnZrmKggp3S4FUPARNZiElJZioXLr9\nrhuq86MGF0KbwGWndvcKbLGORFfPPgn5IuNWTKf510gTDCrkf8vWkZCpZJm7\nMAl/gTnmu3oB1FU2kKqXtUYxyk09EwpTjHxGfGY+srjnyzf6lUw4dg9XMkNt\n25pm/F5lNRDz5mBKMtyZxOxV4wgUBk3u/+ZJ3BWpnSi1M5wKiRQ+9FrZqRnf\n25CAxnzmAMn+GsDQ44YMkMH8jrFjs5+OvM3VzzHIedikCAShfJP7eJHVhpdn\nZNEoUW32wx2wkRC7VKtAQ7Mu2oaGJQn35RML9dM5JeqER3V+tvKv9MPPlg9Z\nXwgHhjh3AG8JPNU1Mwx9NG4s/iIHChdAJUA5nImFQN+gwQqsJnUagugVo7/l\nTzexXprryLuG8pG7FV+dfz8nkf2GI4GEU+rAwgm4bQNtqV+zbZDLRo4jiSRO\nyB5icYe30V2oYW4OhmDhtU2J2V8fZ9bs8WCJZ/1ua9vMAW7cCYIOlX/vEaMI\ngS1g\r\n=W5AI\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQD0jsMPoESZHgt/hArgjn4jRSLXKpCdPzUZLw+sC+y0RgIgNmRJ9OwX2xqj1kRKCHgscY80oNVP4GqE/FT/1am+s94="}]},"maintainers":[{"email":"ftntravis@gmail.com","name":"anonymous"}],"_npmUser":{"name":"anonymous","email":"ftntravis@gmail.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/react-measure_2.2.4_1549337553436_0.20213648972284526"},"_hasShrinkwrap":false},"2.2.5":{"name":"react-measure","version":"2.2.5","description":"Compute measurements of React components.","main":"dist/index.cjs.js","module":"dist/index.esm.js","scripts":{"build":"rollup -c","test":"jest --env=jsdom","test:ci":"cross-env CI=1 jest --env=jsdom","prettier":"prettier --write 'src/**/*.{js,json,css}'","prepublishOnly":"npm run build"},"repository":{"type":"git","url":"https://github.com/souporserious/react-measure"},"keywords":["react","component","measure","measurements","dimensions","element-queries","container-queries","size"],"author":{"name":"Travis Arnold","email":"travis@souporserious.com","url":"http://souporserious.com"},"license":"MIT","bugs":{"url":"https://github.com/souporserious/react-measure/issues"},"homepage":"https://github.com/souporserious/react-measure","jest":{"roots":["<rootDir>/src"]},"peerDependencies":{"react":">0.13.0","react-dom":">0.13.0"},"dependencies":{"@babel/runtime":"^7.2.0","get-node-dimensions":"^1.2.1","prop-types":"^15.6.2","resize-observer-polyfill":"^1.5.0"},"devDependencies":{"@babel/cli":"^7.2.0","@babel/core":"^7.2.0","@babel/plugin-proposal-class-properties":"^7.2.1","@babel/plugin-transform-runtime":"^7.2.0","@babel/preset-env":"^7.2.0","@babel/preset-react":"^7.0.0","cross-env":"^5.2.0","jest":"^24.0.0","prettier":"^1.16.4","react":"^16.7.0","react-dom":"^16.7.0","rollup":"^0.67.4","rollup-plugin-babel":"^4.1.0","rollup-plugin-node-resolve":"^4.0.0"},"licenseText":"The MIT License (MIT)\n\nCopyright (c) 2018 React Measure authors\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n","_id":"react-measure@2.2.5","dist":{"shasum":"35f6be9a8c31d61a4cf847282f9d54c310eb1624","integrity":"sha512-j1OE5U3AfX97Tk/LNkn2KSdE03hGgBOqUoQQ8QdxHoAudAvP1K1R7hvEH+S5zHILFh7ejGCKK3wWZOMDcHL3mA==","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/react-measure/-/react-measure-2.2.5.tgz","fileCount":19,"unpackedSize":79076,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcovDPCRA9TVsSAnZWagAA0DYP/iaMkmyjrLhn/6iqTEJn\n3O9ePbXzW74RHPTwgpQ2dFs/vvDjLI4oltCLcLaXZNn6kr7Q/4D/56k4a2wP\nrIl1jPVBHL5GJLH9WYz+8zuPcJarHNECyoRwFIHGWu3yWnERb11k1rsn3Kv5\nqw+KFEY4EheiAJ6iQn56y0lHWPoUWk1uwVSK8BxYu5JPs6qZOwtXqhcUsTLS\nYzm4c/3DpLwF96DD9ImdWPeu2a3r8w+pGHwV1xOQk+02nNbepbMkGhE/r1/0\n48WfweogAcHF7iomRisq0RjGv+xD9ZijlvOmLRsCx/TJtPPuLj9nbhIxiAAE\nA/cwBUdxQppKa96WnRCeqM7UAk9aLZyq57LocAgKZtO8PH6e0K9LtHWrf0Ej\nVCT1vEy8abDI/Q2v+xptlHb09UKokFgWNX4ZAjqcdqHRs5OlqgoOIqOkEJnR\nnL3ruwbiNUZK0h8flrIfVChv4pF/oCbg6QKBuQPqMXC1sloLcdleFG+tKiBq\nBIIKPQaeok8i2Wqw6nlcPJ6S0uTcj4awVinOdJ0IZsQq53ZBvnb1KZnEG2z6\nlAMQBVPC+SowxIG09xH/yJoZJ49LdoIJSy5NcZ59seOnV0p4aBBBiy/GvtFg\nICTirWGEOfdnXyLRHeO37G5u56L9bQ6I/99XoNEaOd9vMlKHjd8qILYD2aFk\nTdI+\r\n=IbIR\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCQ+6cuZKCP1g42fqfWkYKKYejgoSeH68TqPjuI+u9VuwIgYAeitxaWvE2DjJx+kp8R1MXnFuc98O5ZFGbT6GYYvHY="}]},"maintainers":[{"email":"ftntravis@gmail.com","name":"anonymous"}],"_npmUser":{"name":"anonymous","email":"ftntravis@gmail.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/react-measure_2.2.5_1554182350467_0.9580259693712807"},"_hasShrinkwrap":false},"2.2.6":{"name":"react-measure","version":"2.2.6","description":"Compute measurements of React components.","main":"dist/index.cjs.js","module":"dist/index.esm.js","scripts":{"build":"rollup -c","test":"jest --env=jsdom","test:ci":"cross-env CI=1 jest --env=jsdom","prettier":"prettier --write 'src/**/*.{js,json,css}'","prepublishOnly":"npm run build"},"repository":{"type":"git","url":"https://github.com/souporserious/react-measure"},"keywords":["react","component","measure","measurements","dimensions","element-queries","container-queries","size"],"author":{"name":"Travis Arnold","email":"travis@souporserious.com","url":"http://souporserious.com"},"license":"MIT","bugs":{"url":"https://github.com/souporserious/react-measure/issues"},"homepage":"https://github.com/souporserious/react-measure","jest":{"roots":["<rootDir>/src"]},"peerDependencies":{"react":">0.13.0","react-dom":">0.13.0"},"dependencies":{"@babel/runtime":"^7.2.0","get-node-dimensions":"^1.2.1","prop-types":"^15.6.2","resize-observer-polyfill":"^1.5.0"},"devDependencies":{"@babel/cli":"^7.2.0","@babel/core":"^7.2.0","@babel/plugin-proposal-class-properties":"^7.2.1","@babel/plugin-transform-runtime":"^7.2.0","@babel/preset-env":"^7.2.0","@babel/preset-react":"^7.0.0","cross-env":"^5.2.0","jest":"^24.0.0","prettier":"^1.16.4","react":"^16.7.0","react-dom":"^16.7.0","rollup":"^0.67.4","rollup-plugin-babel":"^4.1.0","rollup-plugin-node-resolve":"^4.0.0"},"licenseText":"The MIT License (MIT)\n\nCopyright (c) 2018 React Measure authors\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n","_id":"react-measure@2.2.6","dist":{"shasum":"e20bf4d0d29bd7b3a84ba1ac14d1278f234c39f3","integrity":"sha512-g4kCXnTbU0AP6Yh/MwPRY77FluqlZXTzgBIyodis7JnkssBh+X3KNNuErFhJynN2j/8WDwQ1RdHWpJ3jnfGsaw==","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/react-measure/-/react-measure-2.2.6.tgz","fileCount":19,"unpackedSize":80546,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcsibvCRA9TVsSAnZWagAAD2QP+wWwmvMc9YFpQ6RMdglH\nts271S2g6bccAHMefl78VeEMZU6H5d8ZIhgLUYZtHW8z1zzG4tTnnejCvkvQ\nCzjJUvag+JycJAm2h5TAYChriJODgjFEGTL5iF3AvkCSZgQ9NfRSWv93HmoO\n4XmtmJcs/SH7vCozJikWJjeFDSxLzX57cPgAnVLMi+n6y8fdSCOHkiNcMSfP\nwbIIT3HGVRZGdrcVtMEGwe7nO+Eq7nBn7pUphcDuSCuiljKfjIOqgCm1L8mB\nnuZmAgrwFtcWEVe6wEYPzagIg3bFiQA7Mw+egqVM51TR74NhN7FoNiktr3PL\nVH3jAlfDGHFhPLy5AWzZXfwHkH9IEka1uPfOgFWdxd+EUgKbFIW59nG1iPKI\nZu9txUEth+W/NSj6kvqLMjtVm5M5dNRe+VFx2wwTlAoFpUM1tIHzp2tg6EMQ\nshJrptfh9TW96/mlKKo0zBkJSEUGeAaKBqBNUJrk+3cKHFZdDcGWabgo1Q8d\njVbUeMPKCkImT2kxhvHElR7ZFkK3CGGzHeCSGYSNrpEeNPpyKkvM1Gt4a/eC\n0LOa8avv4n5pRSa6Pp+t9qtBZeweKUolr5A80dmaZYPG/C1z1MkdBeSBprWH\nvDiwfWp97kyom/0zQI8n5cV/OdHeHQdod4y8wESeV0OlU1VC89QYRGx86QXa\ntDVZ\r\n=8uqa\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIAvMifmdLDJtGHGAidiNwG78UL/1qSUiMGLC51zqWtYLAiEA197l3WDJQFKTQmhh47AYw1PWqG/jznSILky9rea1OGw="}]},"maintainers":[{"email":"ftntravis@gmail.com","name":"anonymous"}],"_npmUser":{"name":"anonymous","email":"ftntravis@gmail.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/react-measure_2.2.6_1555179246509_0.7963391649767424"},"_hasShrinkwrap":false},"2.3.0":{"name":"react-measure","version":"2.3.0","description":"Compute measurements of React components.","main":"dist/index.cjs.js","module":"dist/index.esm.js","scripts":{"build":"rollup -c","test":"jest --env=jsdom","test:ci":"cross-env CI=1 jest --env=jsdom","prettier":"prettier --write 'src/**/*.{js,json,css}'","prepublishOnly":"npm run build"},"repository":{"type":"git","url":"https://github.com/souporserious/react-measure"},"keywords":["react","component","measure","measurements","dimensions","element-queries","container-queries","size"],"author":{"name":"Travis Arnold","email":"travis@souporserious.com","url":"http://souporserious.com"},"license":"MIT","bugs":{"url":"https://github.com/souporserious/react-measure/issues"},"homepage":"https://github.com/souporserious/react-measure","jest":{"roots":["<rootDir>/src"]},"peerDependencies":{"react":">0.13.0","react-dom":">0.13.0"},"dependencies":{"@babel/runtime":"^7.2.0","get-node-dimensions":"^1.2.1","prop-types":"^15.6.2","resize-observer-polyfill":"^1.5.0"},"devDependencies":{"@babel/cli":"^7.2.0","@babel/core":"^7.2.0","@babel/plugin-proposal-class-properties":"^7.2.1","@babel/plugin-transform-runtime":"^7.2.0","@babel/preset-env":"^7.2.0","@babel/preset-react":"^7.0.0","cross-env":"^5.2.0","jest":"^24.0.0","prettier":"^1.16.4","react":"^16.7.0","react-dom":"^16.7.0","rollup":"^0.67.4","rollup-plugin-babel":"^4.1.0","rollup-plugin-node-resolve":"^4.0.0"},"licenseText":"The MIT License (MIT)\n\nCopyright (c) 2018 React Measure authors\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n","_id":"react-measure@2.3.0","dist":{"shasum":"75835d39abec9ae13517f35a819c160997a7a44e","integrity":"sha512-dwAvmiOeblj5Dvpnk8Jm7Q8B4THF/f1l1HtKVi0XDecsG6LXwGvzV5R1H32kq3TW6RW64OAf5aoQxpIgLa4z8A==","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/react-measure/-/react-measure-2.3.0.tgz","fileCount":19,"unpackedSize":80397,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJcuOVaCRA9TVsSAnZWagAAn2cQAIDsQN+XKWIkQxHoPTxv\ney91i89FM5fvySPx0HUVmrf0OcpD8uC9EBtfAvc65R+aTCVRgnUFcimD3OOq\nYFjtk3ejb4drlpec9c62DO+HG+Tz9zElwmwvbJTUi1CyOdjxU4koH6jBUQSq\nP/RTii5DU6Bc+FLqrsaMPvnOTov6UP1Fo1uF3s8OPKQAtuGo0fshO4mKx/km\n2Cnp1mELIh3Jke59yVq+1zF8M5f40wfGoaX0ocJmo0rlMaHx6dUgNH2fS2XR\nkBNKCotVuaGr2pAQqqxDXYG0i7DIEGAID5FutXKlHxbr7qOIIajxRiesYeBq\n4bY5Uh8mucdK7qSA2Py0fxfXh3Qj2+17Ttd/vZRVe4tOcDfE/OySCBjEu8V/\nnjledKvkw1h4nBQlMtp0qPiH9REc3ODPK6S1WRS1Eilx3Cjowv1zBfwG3Jb5\n0gdnuM2E3bd4WeZhZiRZAudjvLJZDXJ8pza/qz0uNsceh69obKBa1AlF9bXw\ni72tksSt6AObiwkKptrrvgy2VQISLxObMhXZCN5TrJ0C8+qOVN7keqZBcKKT\n9cev3Lywkr6AHG+64+a/cbgqHATpEzWe5ZIffpNq/3aOb4h7Gq8qIJb7+DaH\n0UJl7ZCvAR6uXxwnQpMhWSYsAahCeiNVh2CEHR0tlEmswn0epTxKO+YoPRBO\n0y2r\r\n=YuOr\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIGiW/bNTvtSNLz1oWDKVR5xdlFynAl4eguIs+//wZt0SAiEA4ewrDuxRKVwaLjBa1KGxE/9cTBazPsRaYfxjO9RoeCA="}]},"maintainers":[{"email":"ftntravis@gmail.com","name":"anonymous"}],"_npmUser":{"name":"anonymous","email":"ftntravis@gmail.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/react-measure_2.3.0_1555621209285_0.7567107303543357"},"_hasShrinkwrap":false},"2.4.0":{"name":"react-measure","version":"2.4.0","description":"Compute measurements of React components.","main":"dist/index.cjs.js","module":"dist/index.esm.js","scripts":{"build":"rollup -c","test":"jest --env=jsdom","test:ci":"cross-env CI=1 jest --env=jsdom","prettier":"prettier --write 'src/**/*.{js,json,css}'","prepublishOnly":"npm run build"},"repository":{"type":"git","url":"https://github.com/souporserious/react-measure"},"keywords":["react","component","measure","measurements","dimensions","element-queries","container-queries","size"],"author":{"name":"Travis Arnold","email":"travis@souporserious.com","url":"http://souporserious.com"},"license":"MIT","bugs":{"url":"https://github.com/souporserious/react-measure/issues"},"homepage":"https://github.com/souporserious/react-measure","jest":{"roots":["<rootDir>/src"]},"peerDependencies":{"react":">0.13.0","react-dom":">0.13.0"},"dependencies":{"@babel/runtime":"^7.2.0","get-node-dimensions":"^1.2.1","prop-types":"^15.6.2","resize-observer-polyfill":"^1.5.0"},"devDependencies":{"@babel/cli":"^7.2.0","@babel/core":"^7.2.0","@babel/plugin-proposal-class-properties":"^7.2.1","@babel/plugin-transform-runtime":"^7.2.0","@babel/preset-env":"^7.2.0","@babel/preset-react":"^7.0.0","cross-env":"^5.2.0","jest":"^24.0.0","prettier":"^1.16.4","react":"^16.7.0","react-dom":"^16.7.0","rollup":"^0.67.4","rollup-plugin-babel":"^4.1.0","rollup-plugin-node-resolve":"^4.0.0"},"licenseText":"The MIT License (MIT)\n\nCopyright (c) 2018 React Measure authors\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n","_id":"react-measure@2.4.0","dist":{"shasum":"d5d26832caa3203245b08ac3970b290870058e26","integrity":"sha512-1F+cl/UfgwaaC2igBeTIx8W5TfImxT1tNAkNKNBaP+BMG5EFSD/3YpskfWeAVA7kiqv1NNzsU460q7b1liHOXw==","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/react-measure/-/react-measure-2.4.0.tgz","fileCount":20,"unpackedSize":79120,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfTXlzCRA9TVsSAnZWagAAj34P/3PY2LKRpKArPeKmrFpy\nh43DztDTrEHnCs7DG6j8XK7os8koY2jpRDAUMBWHRBaZYQN5Vq8P1+nF3QD0\nlVx926PSiN2AS0m7Ewq3X5lpTkGUAY26ctHK8FT4/kcypOW35JxGdf0RIkIe\n1nj2ypuWAlYysybewzd8CaiUUShZ9/MI43wObqO/wnwQ+1NKED6oX5oIBC5z\ncbK15M1SH8RgOx7VzsETUW8MlpSGaZVImAY/xqZ/8C94I34FEEYqsIPAJgry\nx1SlmqZsjR8qnPmpyTDWAcVeS3ZfxH0bP+ADUjZyULXHlteMm16PrdcXTB24\nDHU6+rRX36ZVwdnui6YS9DLI4hByEDNstLZkK8vBE3M5Z+s7pmaxUWvVAPU+\nm6Ji+fyArWT1ZleGG5I4ORs5L6IGSzExo3SnE78ullncKA2mXRrrq9xqhYjf\n86onrLfVEJ9KkJscjw4wkcFZex2UuRkvCNC86Tx05KXlXJcjpxneiHirxdPw\naSQduHwZiFX4HP8KchVdNASg/TRNdX2usX7NPptoR4VHO5o3LNqx+n/g7THp\ncbllFD17ZpSyAO8KJD0xS6D/5Fd55zZ3cpbIEXh4Tqc+vjlA8tXvM6C4uRI9\n1LrMeKyEPYeEcWnRXm8F8f6nkt4+b5IJJJx4ulKcOQu1i1b53zsy7k2TgRiQ\nzsOL\r\n=Wfq4\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCXb4FzW/GoxMLjfoAUZ8tfqfMXDW828RjYvLFUYjviGwIgApCGgNXKj/mEz3NXupHDoAAAPwweBV6VOUEQZvrSV1c="}]},"maintainers":[{"email":"ftntravis@gmail.com","name":"anonymous"}],"_npmUser":{"name":"anonymous","email":"ftntravis@gmail.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/react-measure_2.4.0_1598912883034_0.1138855633254241"},"_hasShrinkwrap":false},"2.5.0":{"name":"react-measure","version":"2.5.0","description":"Compute measurements of React components.","main":"dist/index.cjs.js","module":"dist/index.esm.js","scripts":{"build":"rollup -c","test":"jest --env=jsdom","test:ci":"cross-env CI=1 jest --env=jsdom","prettier":"prettier --write 'src/**/*.{js,json,css}'","prepublishOnly":"npm run build"},"repository":{"type":"git","url":"https://github.com/souporserious/react-measure"},"keywords":["react","component","measure","measurements","dimensions","element-queries","container-queries","size"],"author":{"name":"Travis Arnold","email":"travis@souporserious.com","url":"http://souporserious.com"},"license":"MIT","bugs":{"url":"https://github.com/souporserious/react-measure/issues"},"homepage":"https://github.com/souporserious/react-measure","jest":{"roots":["<rootDir>/src"]},"peerDependencies":{"react":">0.13.0","react-dom":">0.13.0"},"dependencies":{"@babel/runtime":"^7.2.0","get-node-dimensions":"^1.2.1","prop-types":"^15.6.2","resize-observer-polyfill":"^1.5.0"},"devDependencies":{"@babel/cli":"^7.2.0","@babel/core":"^7.2.0","@babel/plugin-proposal-class-properties":"^7.2.1","@babel/plugin-transform-runtime":"^7.2.0","@babel/preset-env":"^7.2.0","@babel/preset-react":"^7.0.0","cross-env":"^5.2.0","jest":"^24.0.0","prettier":"^1.16.4","react":"^16.7.0","react-dom":"^16.7.0","rollup":"^0.67.4","rollup-plugin-babel":"^4.1.0","rollup-plugin-node-resolve":"^4.0.0"},"licenseText":"The MIT License (MIT)\n\nCopyright (c) 2018 React Measure authors\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n","_id":"react-measure@2.5.0","dist":{"shasum":"d6c430eb7b7d86292f04aed9936bfe7e3ddff12c","integrity":"sha512-Y+GxDY6xXPHx9yMNeQ0ctymVGjeR5bIVp6/6FvOraFmW+58wuFwVpNqupnnszVgLGcc+iWUEuGYFneywOZlVqA==","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/react-measure/-/react-measure-2.5.0.tgz","fileCount":20,"unpackedSize":79601,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfTXsbCRA9TVsSAnZWagAAXOsP/1FBK03BZDJACc4QrWOa\nkm+b3N7Nk6C0erl2Z5zw3wRkfMewIUYU2kZMoCtStpo4eDgCPa6Rt4CFWXXk\n0evbbOD1+6x/q6ub0ssoUYo5JRqpVqLgKGQ5HQ9fubm8z9KKqOyaUql9ewrK\nHUmGeEr9KIFaVmDm89SiSM8RjJfwvFPby99Ei6LbLZ7+1aZfb6kugNzFhL/O\nWlNQHTdghCJaE/mNZ66IwJ4qsd/qlIPqgrEB4XcVCZopoTgustZaXWStVGhf\nm8jAZMULr6oXD9GlRvQ8ipHg5or3BUJ95OK1d8noCAdIbwJ04jKALgDYwjmi\nINBl9fljYfMuysqzV7Ho9b4kmlQhuT13nQ7iMZ1apcGlQUEac70T54Kccza5\nvy8EwI/q7OH/yW+Xf4HCkc5UITcfNpqqLKGqwThjkHGxEXrJdTsScUaULyx5\nFePmNNozOawk4XoyvC2gVTGuoNk99wQ1UEvGT5hwaYg8DlXD+rl+QghFd3sZ\nmKlwgaGVDQwwZY/t6fanYkYe4m22IjovKtLVh1WUttqabuZh2qYQWO4JwWBo\nmejoEjsbhh2ZNw/zj4VttbweB1CXclxh7+nlcSF20uiZBSz2RWpgZ3VdWP4E\n96UI+F8NLjI+FZcT5GG1J+QO61QaY0W+jiyRFbmiZCTI0b7s3F36FqdW9Cg+\n/Kps\r\n=bTFe\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQD2lumwrEI5uHr9Tlev/vaiOAmJoOU3FkbyJlw/irLDNQIhAMAuQ0gMQwfTEEWftjlUDCDnqOXhaIcjvIOYGqSOsOLz"}]},"maintainers":[{"email":"ftntravis@gmail.com","name":"anonymous"}],"_npmUser":{"name":"anonymous","email":"ftntravis@gmail.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/react-measure_2.5.0_1598913306800_0.07666872296876659"},"_hasShrinkwrap":false},"2.5.1":{"name":"react-measure","version":"2.5.1","description":"Compute measurements of React components.","main":"dist/index.cjs.js","module":"dist/index.esm.js","scripts":{"build":"rollup -c","test":"jest --env=jsdom","test:ci":"cross-env CI=1 jest --env=jsdom","prettier":"prettier --write 'src/**/*.{js,json,css}'","prepublishOnly":"npm run build"},"repository":{"type":"git","url":"https://github.com/souporserious/react-measure"},"keywords":["react","component","measure","measurements","dimensions","element-queries","container-queries","size"],"author":{"name":"Travis Arnold","email":"travis@souporserious.com","url":"http://souporserious.com"},"license":"MIT","bugs":{"url":"https://github.com/souporserious/react-measure/issues"},"homepage":"https://github.com/souporserious/react-measure","jest":{"roots":["<rootDir>/src"]},"peerDependencies":{"react":">0.13.0","react-dom":">0.13.0"},"dependencies":{"@babel/runtime":"^7.2.0","get-node-dimensions":"^1.2.1","prop-types":"^15.6.2","resize-observer-polyfill":"^1.5.0"},"devDependencies":{"@babel/cli":"^7.2.0","@babel/core":"^7.2.0","@babel/plugin-proposal-class-properties":"^7.2.1","@babel/plugin-transform-runtime":"^7.2.0","@babel/preset-env":"^7.2.0","@babel/preset-react":"^7.0.0","cross-env":"^5.2.0","jest":"^24.0.0","prettier":"^1.16.4","react":"^16.7.0","react-dom":"^16.7.0","rollup":"^0.67.4","rollup-plugin-babel":"^4.1.0","rollup-plugin-node-resolve":"^4.0.0"},"licenseText":"The MIT License (MIT)\n\nCopyright (c) 2018 React Measure authors\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n","_id":"react-measure@2.5.1","dist":{"shasum":"27568c08563d87f351de82ce82a2929a7c8cb4aa","integrity":"sha512-Zqer9iWtG7zf+MqaXaVYDfg9DMHtXVLstpwaCPVAy/uXU46x6fcknLW6ap9/ehueM85mFrdO3AQNfqvm0SoMJw==","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/react-measure/-/react-measure-2.5.1.tgz","fileCount":20,"unpackedSize":80204,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfWAVfCRA9TVsSAnZWagAAWuwP+wZxxCzj1FmDYHiESum+\niAgIu2xITrFSMYLrwJgADtbcAFtKu4+QmevdwcOpdjXJaMdJt+YIh+s1PKtd\nM358CpvCoVsaooUaZEDB+W2Pi8clnklMqv4GwJzlaTR8MQ/+H00zW2Tk9Gub\n8Ln1kDCSm2PiUQiylkn5xIYGjQouiSf0HKY3T47Nj84XOXpJusqHqFTXXm+O\nyl1tcBLPeAdB+DyrV66/Bg1CPazLcCm37TP3fGQqjFSaIkaxUfjum/fHlJ6/\nhhBqqWdwL7pLP1WfXZZOyndsI7XlhYLl2ybTmmHdpE2BRXcfJUv4J2375oiq\nROS9f+kmSxXxxNK91kRyYkhjED+mjF8A39U7irfJqSOIwu6gd9EoplQw4U/N\nW1EcLKqoXwFVx0RPSNz/L5FQIma10ePWkNVpOyOY3FDmEzWaY0vOQDYzfdM+\niTXtoFoB4JYIFNGNT+OXuingJGqMGFAhG2PGNn/K0/r1qhUOTfBDAgygCoR9\nl3KqSTzzEym2222QY6ITiC+vuCF6YPLVzWDgekX41/o+TNCu0Vupsk0TLPAa\nqJKxruUjdCstXuBsFKE2FMeUKQmdAmouo77d/I0SOdtZsjwqZcbxir9mxpJq\nkTVvfgkdXPDF2Ho/jWJx0Z+7ZnnivIU06NV1KlwifCra3hp5UhRXSyAcjB2X\nNYlO\r\n=4iYJ\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIDjZrHQf7uwZ9i0+RbCCUC6ne8VuJBpi0mC/dftjXUpNAiEA2rR7Fqh28aPrm+vkSo3DFrrywxpl9EXBxSJ73xgLPNw="}]},"maintainers":[{"name":"anonymous","email":"ftntravis@gmail.com"}],"_npmUser":{"name":"anonymous","email":"ftntravis@gmail.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/react-measure_2.5.1_1599604062925_0.50664263867224"},"_hasShrinkwrap":false},"2.5.2":{"name":"react-measure","version":"2.5.2","description":"Compute measurements of React components.","main":"dist/index.cjs.js","module":"dist/index.esm.js","scripts":{"build":"rollup -c","test":"jest --env=jsdom","test:ci":"cross-env CI=1 jest --env=jsdom","prettier":"prettier --write 'src/**/*.{js,json,css}'","prepublishOnly":"npm run build"},"repository":{"type":"git","url":"https://github.com/souporserious/react-measure"},"keywords":["react","component","measure","measurements","dimensions","element-queries","container-queries","size"],"author":{"name":"Travis Arnold","email":"travis@souporserious.com","url":"http://souporserious.com"},"license":"MIT","bugs":{"url":"https://github.com/souporserious/react-measure/issues"},"homepage":"https://github.com/souporserious/react-measure","jest":{"roots":["<rootDir>/src"]},"peerDependencies":{"react":">0.13.0","react-dom":">0.13.0"},"dependencies":{"@babel/runtime":"^7.2.0","get-node-dimensions":"^1.2.1","prop-types":"^15.6.2","resize-observer-polyfill":"^1.5.0"},"devDependencies":{"@babel/cli":"^7.2.0","@babel/core":"^7.2.0","@babel/plugin-proposal-class-properties":"^7.2.1","@babel/plugin-transform-runtime":"^7.2.0","@babel/preset-env":"^7.2.0","@babel/preset-react":"^7.0.0","cross-env":"^5.2.0","jest":"^24.0.0","prettier":"^1.16.4","react":"^16.7.0","react-dom":"^16.7.0","rollup":"^0.67.4","rollup-plugin-babel":"^4.1.0","rollup-plugin-node-resolve":"^4.0.0"},"licenseText":"The MIT License (MIT)\n\nCopyright (c) 2018 React Measure authors\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n","_id":"react-measure@2.5.2","dist":{"shasum":"4ffc410e8b9cb836d9455a9ff18fc1f0fca67f89","integrity":"sha512-M+rpbTLWJ3FD6FXvYV6YEGvQ5tMayQ3fGrZhRPHrE9bVlBYfDCLuDcgNttYfk8IqfOI03jz6cbpqMRTUclQnaA==","tarball":"http://repository.ncinga.com/nexus/content/repositories/npm-js-registry/react-measure/-/react-measure-2.5.2.tgz","fileCount":20,"unpackedSize":80455,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfWHv3CRA9TVsSAnZWagAAt2sP/3iS14Kmao1lkI54/4XC\n3EqWhWlGJwet8PokUHEmibvyNFKiC6Gu1dyp+G438sNBuCq7H7Lwu0DXV34O\n/Jf55JOjm+KYaau90bitfSkHBtbfq6mQVKbNq8rPEaVm+7ar1CHZZRFZBNRo\n+johzmo/ADAn/p1MLTTWxakVZdebWPqkhXktGGyP8qg5ATDryRKTG/FB2r1e\nNrRfSkUCw1ThnEj4UACy/7wyjR/XjGl4+j8416HIFSW3lAUu6jDxfbKRdX6z\nvYRB5f+Gsk5Fv2DXwcRnXrULehrPywfP5rvN/wk8zIPfx9umQTvH/utaMJBB\nXwNaVXmq5noEY/ElrM12sxvhRT2PVollnbrKOGZVGDHfC2wVyuP6BRZDhW7C\n+givyUbBM0ufLLmIS/w2epoAoDhcW0FxCJ6RFMqxJzKQvmhg8qouSThVnbHR\nZyMo8/BsSP2hpyRNcM2rNrOrOGXXQupDuJNTkAfgk9hYzpaWxDYkG/JcvHJ9\nJtA6jfosMec3itkEkvNyF2KaRMW/lXtbifwD2xzl6O6WYKs8z2z3WqSsr4P8\nGDreEkea/aOqMA6vHCs4tdL/f1I22W3Kn23QRHGUDjS7Jdf3Zp4g9k0Wc+eC\nln4GEPHYoSQmYaMqdnya/z67BCzmIvyq+xEb8dWrO3vDKeX5edYAPwhAtZuY\nLSqo\r\n=Omqh\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIAHsqZPquQeeFuewqSfzmJp2pPFsEtf+YVrFAdczJtPlAiEAtk3gMVk4cNnz9h7nAnvMnwQS+KhVVlfPkt/fRGCpeTU="}]},"maintainers":[{"name":"anonymous","email":"ftntravis@gmail.com"}],"_npmUser":{"name":"anonymous","email":"ftntravis@gmail.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/react-measure_2.5.2_1599634423453_0.2362980656543583"},"_hasShrinkwrap":false}},"name":"react-measure","time":{"modified":"2022-06-26T02:02:27.147Z","created":"2015-09-15T04:16:34.580Z","0.0.1":"2015-09-15T04:16:34.580Z","0.0.2":"2015-09-16T03:52:57.741Z","0.0.3":"2015-09-16T04:03:31.257Z","0.0.4":"2015-09-16T08:24:00.001Z","0.0.5":"2015-09-17T06:40:45.917Z","0.0.6":"2015-09-19T04:22:42.905Z","0.0.7":"2015-09-19T04:39:48.805Z","0.0.8":"2015-09-22T05:45:21.029Z","0.1.0":"2015-09-23T09:16:11.022Z","0.1.1":"2015-09-23T18:53:09.426Z","0.1.2":"2015-09-25T03:37:27.726Z","0.1.3":"2015-09-29T04:09:54.254Z","0.2.0":"2015-10-18T19:32:32.610Z","0.3.0":"2015-10-25T05:24:00.127Z","0.3.1":"2015-10-26T03:38:06.371Z","0.3.2":"2015-10-27T07:16:07.203Z","0.3.3":"2015-11-07T23:02:17.099Z","0.3.4":"2015-11-17T03:09:30.790Z","0.3.5":"2016-03-09T21:51:17.257Z","0.4.0":"2016-06-27T18:01:54.134Z","0.4.1":"2016-07-21T04:44:47.726Z","0.4.2":"2016-07-29T00:13:43.060Z","0.5.0":"2016-08-06T10:51:54.703Z","0.5.1":"2016-10-12T20:21:08.190Z","1.0.0":"2016-10-12T23:10:52.890Z","1.1.0":"2016-10-13T01:02:22.247Z","1.2.0":"2016-10-17T04:15:59.285Z","1.2.1":"2016-10-24T17:38:31.109Z","1.2.2":"2016-10-25T15:21:38.454Z","1.3.0":"2016-10-26T01:32:44.839Z","1.3.1":"2016-10-26T22:41:19.333Z","1.4.0":"2016-11-30T03:50:00.291Z","1.4.1":"2016-12-01T00:45:52.092Z","1.4.2":"2016-12-01T14:43:10.430Z","1.4.3":"2016-12-07T17:01:29.508Z","1.4.4":"2016-12-07T18:17:23.471Z","1.4.5":"2016-12-16T21:41:14.886Z","1.4.6":"2017-02-28T20:56:02.573Z","1.4.7":"2017-04-11T20:34:33.805Z","2.0.0":"2017-05-30T09:57:00.561Z","2.0.1":"2017-05-30T20:11:08.477Z","2.0.2":"2017-05-31T09:49:58.013Z","3.0.0-rc.0":"2018-02-20T01:19:07.992Z","3.0.0-rc.1":"2018-02-20T01:26:02.098Z","3.0.0-rc.2":"2018-02-20T22:44:16.435Z","3.0.0-rc.3":"2018-02-20T23:41:31.143Z","2.1.0":"2018-08-05T01:41:31.679Z","2.1.1":"2018-09-10T04:41:11.170Z","2.1.2":"2018-09-10T13:51:03.876Z","2.1.3":"2018-11-15T03:37:11.480Z","2.2.0":"2018-12-15T01:09:14.219Z","2.2.1":"2018-12-15T01:21:50.708Z","2.2.2":"2018-12-19T15:24:50.704Z","2.2.3":"2019-01-28T05:37:42.446Z","2.2.4":"2019-02-05T03:32:33.558Z","2.2.5":"2019-04-02T05:19:10.597Z","2.2.6":"2019-04-13T18:14:06.731Z","2.3.0":"2019-04-18T21:00:09.489Z","2.4.0":"2020-08-31T22:28:03.155Z","2.5.0":"2020-08-31T22:35:07.100Z","2.5.1":"2020-09-08T22:27:43.038Z","2.5.2":"2020-09-09T06:53:43.583Z"},"readmeFilename":"README.md","homepage":"https://github.com/souporserious/react-measure"}