{"_id":"react-native-swipeable","_rev":"26-638df675168cf90a910fb630110550a2","name":"react-native-swipeable","time":{"modified":"2022-06-26T07:09:21.397Z","created":"2016-10-23T08:04:22.176Z","2.0.13":"2016-10-23T08:04:22.176Z","0.0.1":"2017-01-05T03:57:15.820Z","0.0.2":"2017-01-05T04:15:56.060Z","0.0.3":"2017-01-05T08:48:22.281Z","0.0.4":"2017-01-05T09:26:20.162Z","0.1.0":"2017-01-05T21:46:25.266Z","0.1.1":"2017-01-05T22:11:26.130Z","0.1.2":"2017-01-05T22:32:51.983Z","0.2.0":"2017-01-10T18:23:43.097Z","0.2.1":"2017-01-10T18:41:58.231Z","0.2.2":"2017-01-10T18:45:51.451Z","0.2.3":"2017-01-10T18:52:26.068Z","0.2.4":"2017-01-13T22:50:26.774Z","0.2.5":"2017-01-14T02:11:52.793Z","0.2.6":"2017-01-14T02:31:05.536Z","0.3.0":"2017-01-15T05:54:21.207Z","0.3.1":"2017-01-15T08:19:59.867Z","0.3.2":"2017-01-15T08:25:05.014Z","0.3.3":"2017-02-19T21:26:14.299Z","0.4.0":"2017-02-27T19:19:28.977Z","0.5.0":"2017-07-08T18:12:07.187Z","0.6.0":"2017-07-10T04:27:36.978Z"},"maintainers":[{"name":"jshanson7","email":"jshanson7@gmail.com"}],"dist-tags":{"latest":"0.6.0"},"description":"A powerful React Native swipe component","readme":"# React Native Swipeable [![NPM version][npm-image]][npm-url]\n\nA powerful React Native swipe component.  Supports both iOS and Android.\n\n<img src=\"https://raw.githubusercontent.com/jshanson7/react-native-swipeable/master/demo.gif\" width=\"310\">\n\n## Installation\n\n```sh\nnpm i --save react-native-swipeable\n```\n\n## Usage\n\nWrap your ListView/TableView items with the `Swipeable` component:\n\n```javascript\nimport Swipeable from 'react-native-swipeable';\n\nconst leftContent = <Text>Pull to activate</Text>;\n\nconst rightButtons = [\n  <TouchableHighlight><Text>Button 1</Text></TouchableHighlight>,\n  <TouchableHighlight><Text>Button 2</Text></TouchableHighlight>\n];\n\nfunction MyListItem() {\n  return (\n    <Swipeable leftContent={leftContent} rightButtons={rightButtons}>\n      <Text>My swipeable content</Text>\n    </Swipeable>\n  );\n}\n```\n\n### Props\n\n| prop                            | type         | default | description                                                                               |\n|---------------------------------|--------------|---------|-------------------------------------------------------------------------------------------|\n| `children`                      | renderable   | `null`  | swipeable content                                                                         |\n| `leftContent`                   | renderable   | `null`  | (optional) left content visible during pull action                                        |\n| `rightContent`                  | renderable   | `null`  | (optional) right content visible during pull action                                       |\n| `leftButtons`                   | renderable[] | `null`  | (optional) array of buttons, first being the innermost; ignored if `leftContent` present  |\n| `rightButtons`                  | renderable[] | `null`  | (optional) array of buttons, first being the innermost; ignored if `rightContent` present |\n| `leftActionActivationDistance`  | integer      | 125     | (optional) minimum swipe distance to activate left action                                 |\n| `onLeftActionRelease`           | function     | `null`  | (optional) user has swiped beyond `leftActionActivationDistance` and released             |\n| `rightActionActivationDistance` | integer      | 125     | (optional) minimum swipe distance to activate right action                                |\n| `onRightActionRelease`          | function     | `null`  | (optional) user has swiped beyond `rightActionActivationDistance` and released            |\n| `leftButtonWidth`               | integer      | 75      | (optional) resting visible peek of each left button after buttons are swiped open         |\n| `rightButtonWidth`              | integer      | 75      | (optional) resting visible peek of each right button after buttons are swiped open        |\n| `onRef`                         | function     | `null`  | (optional) receive swipeable component instance reference                                 |\n| `onPanAnimatedValueRef`         | function     | `null`  | (optional) receive swipeable pan `Animated.ValueXY` reference for upstream animations     |\n\n### Advanced Props\n\n[Check out the `Swipeable` component's `propTypes`](https://github.com/jshanson7/react-native-swipeable/blob/master/src/index.js#L14) for a huge list of options including animation lifecycle hooks and low-level overrides.\n\n### Instance Methods\n\n#### recenter()\n\nImperatively reset swipeable component back to initial position.  This is useful if buttons are exposed and the user has begun scrolling the parent view.\n\n```javascript\nclass MyListItem extends Component {\n\n  swipeable = null;\n\n  handleUserBeganScrollingParentView() {\n    this.swipeable.recenter();\n  }\n\n  render() {\n    return (\n      <Swipeable onRef={ref => this.swipeable = ref} rightButtons={rightButtons}>\n        <Text>My swipeable content</Text>\n      </Swipeable>\n    );\n  }\n}\n```\n\n## Example\n\nTo run [the example](https://github.com/jshanson7/react-native-swipeable/blob/master/example/swipeable-example.js):\n\n```sh\nnpm run build\ncd example\nnpm install\nreact-native run-ios # or run-android\n```\n\n<img src=\"https://raw.githubusercontent.com/jshanson7/react-native-swipeable/master/example/example.ios.gif\" width=\"275\"> <img src=\"https://raw.githubusercontent.com/jshanson7/react-native-swipeable/master/example/example.android.gif\" width=\"275\">\n\n## Common Issues\n\n> Action being triggered more than once ([#3](https://github.com/jshanson7/react-native-swipeable/issues/3))\n\nThis seems to occur occasionally (but not always) with certain `ScrollView` and `ListView` configurations.  The fix is simple though, just ensure that `scrollEnabled` is set to `false` while the user is swiping a row.\n\n```js\n<ScrollView scrollEnabled={!this.state.isSwiping}>\n  <Swipeable\n    onSwipeStart={() => this.setState({isSwiping: true})}\n    onSwipeRelease={() => this.setState({isSwiping: false})}\n  </Swipeable>\n</ScrollView>\n```\nor:\n```js\n<ListView\n  scrollEnabled={!this.state.isSwiping}\n  renderRow={() => (\n    <Swipeable\n      onSwipeStart={() => this.setState({isSwiping: true})}\n      onSwipeRelease={() => this.setState({isSwiping: false})}\n    </Swipeable>\n  )}\n/>\n```\n\n## License\n\nMIT\n\n[npm-image]: https://badge.fury.io/js/react-native-swipeable.svg\n[npm-url]: https://npmjs.org/package/react-native-swipeable\n","versions":{"0.0.1":{"name":"react-native-swipeable","version":"0.0.1","description":"React Native swipe component for discoverable functionality","main":"lib/index.js","scripts":{"build":"make build","lint":"make lint"},"author":{"name":"Jeff Hanson"},"license":"MIT","devDependencies":{"babel-cli":"^6.18.0","babel-eslint":"^7.1.1","babel-preset-latest":"^6.16.0","babel-preset-react":"^6.16.0","babel-preset-stage-0":"^6.16.0","eslint":"^3.12.0","eslint-config-airbnb":"^13.0.0","eslint-plugin-babel":"^4.0.0","eslint-plugin-import":"^2.2.0","eslint-plugin-jsx-a11y":"^2.2.3","eslint-plugin-react":"^6.8.0"},"peerDependencies":{"react":">=15.2.0","react-native":">=0.29.0"},"repository":{"type":"git","url":"git+https://github.com/jshanson7/react-native-swipeable.git"},"keywords":["react","native","swipe","ListView","TableView"],"gitHead":"e7192a47108f1833724ea55594eb624c1ece084a","bugs":{"url":"https://github.com/jshanson7/react-native-swipeable/issues"},"homepage":"https://github.com/jshanson7/react-native-swipeable#readme","_id":"react-native-swipeable@0.0.1","_shasum":"6c1f8d8d1455cd5c4f82589f481858b1aa404d22","_from":".","_npmVersion":"4.0.3","_nodeVersion":"7.2.0","_npmUser":{"name":"jshanson7","email":"jshanson7@gmail.com"},"dist":{"shasum":"6c1f8d8d1455cd5c4f82589f481858b1aa404d22","tarball":"https://registry.npmjs.org/react-native-swipeable/-/react-native-swipeable-0.0.1.tgz","integrity":"sha512-zC1w6yTRWYWdyd+7H6NNCtZgUDFyDx6IqtAuCwRJSBAn0CJEoY8Q1h3KukUZCokX2qE8uefvfjSoNCRA55M6Ig==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIHuObo6eyBzMb7svi9coIAhOJ7tYBt+6jelZW9kn1aV3AiEAj52HdK8+q0XEIoBy+0N8tkx2xtwhRw3KmiRl3nrRzRA="}]},"maintainers":[{"name":"jshanson7","email":"jshanson7@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/react-native-swipeable-0.0.1.tgz_1483588635591_0.7231926498934627"}},"0.0.2":{"name":"react-native-swipeable","version":"0.0.2","description":"React Native swipe component","main":"lib/index.js","scripts":{"build":"make build","lint":"make lint"},"author":{"name":"Jeff Hanson"},"license":"MIT","devDependencies":{"babel-cli":"^6.18.0","babel-eslint":"^7.1.1","babel-preset-latest":"^6.16.0","babel-preset-react":"^6.16.0","babel-preset-stage-0":"^6.16.0","eslint":"^3.12.0","eslint-config-airbnb":"^13.0.0","eslint-plugin-babel":"^4.0.0","eslint-plugin-import":"^2.2.0","eslint-plugin-jsx-a11y":"^2.2.3","eslint-plugin-react":"^6.8.0"},"peerDependencies":{"react":">=15.2.0","react-native":">=0.29.0"},"repository":{"type":"git","url":"git+https://github.com/jshanson7/react-native-swipeable.git"},"keywords":["react","native","swipe","ListView","TableView"],"gitHead":"e231fc08e606e84c610926f3bc96ab0cee0337fc","bugs":{"url":"https://github.com/jshanson7/react-native-swipeable/issues"},"homepage":"https://github.com/jshanson7/react-native-swipeable#readme","_id":"react-native-swipeable@0.0.2","_shasum":"710a1c3cd792a8fd61c68bf319e74e62ffd0d237","_from":".","_npmVersion":"4.0.3","_nodeVersion":"7.2.0","_npmUser":{"name":"jshanson7","email":"jshanson7@gmail.com"},"dist":{"shasum":"710a1c3cd792a8fd61c68bf319e74e62ffd0d237","tarball":"https://registry.npmjs.org/react-native-swipeable/-/react-native-swipeable-0.0.2.tgz","integrity":"sha512-wEKOGiLsEWO20jz/gOy+G6Q0khhcc0xYtbgjZnyXNtJ+87J9styZMpbBdg+BXuto+ZXbItO2ZUuBI7n3n6DF6A==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCE/FTfN0WMT8fezZcqyLpJL6s99JOiKCPEvGzRU395yAIhAKUY5oWJmEbgxK6Wdr8R7Q5PjZCrUhI604IwCuywhPPK"}]},"maintainers":[{"name":"jshanson7","email":"jshanson7@gmail.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/react-native-swipeable-0.0.2.tgz_1483589754045_0.44989304919727147"}},"0.0.3":{"name":"react-native-swipeable","version":"0.0.3","description":"React Native swipe component","main":"lib/index.js","scripts":{"build":"make build","lint":"make lint"},"author":{"name":"Jeff Hanson"},"license":"MIT","devDependencies":{"babel-cli":"^6.18.0","babel-eslint":"^7.1.1","babel-preset-latest":"^6.16.0","babel-preset-react":"^6.16.0","babel-preset-stage-0":"^6.16.0","eslint":"^3.12.0","eslint-config-airbnb":"^13.0.0","eslint-plugin-babel":"^4.0.0","eslint-plugin-import":"^2.2.0","eslint-plugin-jsx-a11y":"^2.2.3","eslint-plugin-react":"^6.8.0"},"peerDependencies":{"react":">=15.2.0","react-native":">=0.29.0"},"repository":{"type":"git","url":"git+https://github.com/jshanson7/react-native-swipeable.git"},"keywords":["react","native","swipe","ListView","TableView"],"gitHead":"b8642436887d3346e4927acc22d6d0de27617328","bugs":{"url":"https://github.com/jshanson7/react-native-swipeable/issues"},"homepage":"https://github.com/jshanson7/react-native-swipeable#readme","_id":"react-native-swipeable@0.0.3","_shasum":"805fd8592a89da572ae7675dbbdb201a640d2f36","_from":".","_npmVersion":"4.0.3","_nodeVersion":"7.2.0","_npmUser":{"name":"jshanson7","email":"jshanson7@gmail.com"},"dist":{"shasum":"805fd8592a89da572ae7675dbbdb201a640d2f36","tarball":"https://registry.npmjs.org/react-native-swipeable/-/react-native-swipeable-0.0.3.tgz","integrity":"sha512-M+bkj1wrFLAZ36RcKzWZIHVUPzUaUfaxOr5rsnq1A1bJx/vwqUpaVJf+y3OO0EFie0c4ibrWoTNXP9nq1+j6Hw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDy7cp+rmz9UCa6n81zUuxHn7ICEIP3/Yxk2yAiajcChQIgAOlQujswPCWqWqJXjpnTxwCUVhJf+NBna8QFN1hEXkM="}]},"maintainers":[{"name":"jshanson7","email":"jshanson7@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/react-native-swipeable-0.0.3.tgz_1483606102038_0.8305673699360341"}},"0.0.4":{"name":"react-native-swipeable","version":"0.0.4","description":"React Native swipe component","main":"lib/index.js","scripts":{"build":"make build","lint":"make lint"},"author":{"name":"Jeff Hanson"},"license":"MIT","devDependencies":{"babel-cli":"^6.18.0","babel-eslint":"^7.1.1","babel-preset-latest":"^6.16.0","babel-preset-react":"^6.16.0","babel-preset-stage-0":"^6.16.0","eslint":"^3.12.0","eslint-config-airbnb":"^13.0.0","eslint-plugin-babel":"^4.0.0","eslint-plugin-import":"^2.2.0","eslint-plugin-jsx-a11y":"^2.2.3","eslint-plugin-react":"^6.8.0"},"peerDependencies":{"react":">=15.2.0","react-native":">=0.29.0"},"repository":{"type":"git","url":"git+https://github.com/jshanson7/react-native-swipeable.git"},"keywords":["react","native","swipe","ListView","TableView"],"gitHead":"0884f95e2d60eddbca4dca5f86eafd5adae57764","bugs":{"url":"https://github.com/jshanson7/react-native-swipeable/issues"},"homepage":"https://github.com/jshanson7/react-native-swipeable#readme","_id":"react-native-swipeable@0.0.4","_shasum":"1f2d9de8d4fa28906072bad88f3afad4639064b0","_from":".","_npmVersion":"4.0.3","_nodeVersion":"7.2.0","_npmUser":{"name":"jshanson7","email":"jshanson7@gmail.com"},"dist":{"shasum":"1f2d9de8d4fa28906072bad88f3afad4639064b0","tarball":"https://registry.npmjs.org/react-native-swipeable/-/react-native-swipeable-0.0.4.tgz","integrity":"sha512-TvM9bsk6mvBGLmtzfDmh0w8aJbdtA9Ohk7Te87L/esGYm/udXTfu5zn9lp7ihlx34EJbZxmOqEMJk9m4+2O5lA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQC5XO5ZbBe5HROobLbvWANObSN6mH5guZ6IsWrY4N45dgIhAK9OojGC1S2OFvepk5ApIFyWcvJOIzTs3n5u2g5DqpuO"}]},"maintainers":[{"name":"jshanson7","email":"jshanson7@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/react-native-swipeable-0.0.4.tgz_1483608379938_0.49264406342990696"}},"0.1.0":{"name":"react-native-swipeable","version":"0.1.0","description":"React Native swipe component","main":"lib/index.js","scripts":{"build":"make build","lint":"make lint"},"author":{"name":"Jeff Hanson"},"license":"MIT","devDependencies":{"babel-cli":"^6.18.0","babel-eslint":"^7.1.1","babel-preset-latest":"^6.16.0","babel-preset-react":"^6.16.0","babel-preset-stage-0":"^6.16.0","eslint":"^3.12.0","eslint-config-airbnb":"^13.0.0","eslint-plugin-babel":"^4.0.0","eslint-plugin-import":"^2.2.0","eslint-plugin-jsx-a11y":"^2.2.3","eslint-plugin-react":"^6.8.0"},"peerDependencies":{"react":">=15.2.0","react-native":">=0.29.0"},"repository":{"type":"git","url":"git+https://github.com/jshanson7/react-native-swipeable.git"},"keywords":["react","native","swipe","ListView","TableView"],"gitHead":"83f91990148cc4b0d1c41cbe7c49d9e0dabc949c","bugs":{"url":"https://github.com/jshanson7/react-native-swipeable/issues"},"homepage":"https://github.com/jshanson7/react-native-swipeable#readme","_id":"react-native-swipeable@0.1.0","_shasum":"07d5660540d7935ba2dd9c1d116f8db56cf9ddfe","_from":".","_npmVersion":"4.0.3","_nodeVersion":"7.2.0","_npmUser":{"name":"jshanson7","email":"jshanson7@gmail.com"},"dist":{"shasum":"07d5660540d7935ba2dd9c1d116f8db56cf9ddfe","tarball":"https://registry.npmjs.org/react-native-swipeable/-/react-native-swipeable-0.1.0.tgz","integrity":"sha512-KTFV5u+dd/Cr/R9oOKBaIgp5gHLexPXhB3auyzdDVK0IQQePYDYZprNyOrimzNYMIroo2JDBW4jOUhaX5l1g1g==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCICmS/O5it+KrQW9/LPZBlRkU5ZEuJ6AMmWnnot5Z+g+IAiBxK7+WWjMsEXx6yIBu7LgMWYL/UWXhXY/pl0OM0GC6Ww=="}]},"maintainers":[{"name":"jshanson7","email":"jshanson7@gmail.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/react-native-swipeable-0.1.0.tgz_1483652783436_0.17315035359933972"}},"0.1.1":{"name":"react-native-swipeable","version":"0.1.1","description":"React Native swipe component","main":"lib/index.js","scripts":{"build":"make build","lint":"make lint"},"author":{"name":"Jeff Hanson"},"license":"MIT","devDependencies":{"babel-cli":"^6.18.0","babel-eslint":"^7.1.1","babel-preset-latest":"^6.16.0","babel-preset-react":"^6.16.0","babel-preset-stage-0":"^6.16.0","eslint":"^3.12.0","eslint-config-airbnb":"^13.0.0","eslint-plugin-babel":"^4.0.0","eslint-plugin-import":"^2.2.0","eslint-plugin-jsx-a11y":"^2.2.3","eslint-plugin-react":"^6.8.0"},"peerDependencies":{"react":">=15.2.0","react-native":">=0.29.0"},"repository":{"type":"git","url":"git+https://github.com/jshanson7/react-native-swipeable.git"},"keywords":["react","native","swipe","ListView","TableView"],"gitHead":"6d26936233ded6c59dccf4ebbd5a2edfacd88de4","bugs":{"url":"https://github.com/jshanson7/react-native-swipeable/issues"},"homepage":"https://github.com/jshanson7/react-native-swipeable#readme","_id":"react-native-swipeable@0.1.1","_shasum":"c21338ebdb12cd2aa9772fee0afe0bd45cd58744","_from":".","_npmVersion":"4.0.3","_nodeVersion":"7.2.0","_npmUser":{"name":"jshanson7","email":"jshanson7@gmail.com"},"dist":{"shasum":"c21338ebdb12cd2aa9772fee0afe0bd45cd58744","tarball":"https://registry.npmjs.org/react-native-swipeable/-/react-native-swipeable-0.1.1.tgz","integrity":"sha512-k9TJDPg/idzymQWYJBzTwOALNHlfNLxhyHTSzKxtvpNcDPsgDoYM1ADqepTCy+o+2/2Tylhed3kG6a1G+yr0vQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIAyBij+WyOYNfplRy8JvPgYGsTOiQtd9TVAf52bwUu8HAiEAiIufwRTJSXFz72FLN2dmQnVrFdztT8gGIh33tJ78fAE="}]},"maintainers":[{"name":"jshanson7","email":"jshanson7@gmail.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/react-native-swipeable-0.1.1.tgz_1483654284195_0.16377306450158358"}},"0.1.2":{"name":"react-native-swipeable","version":"0.1.2","description":"React Native swipe component","main":"lib/index.js","scripts":{"build":"make build","lint":"make lint"},"author":{"name":"Jeff Hanson"},"license":"MIT","devDependencies":{"babel-cli":"^6.18.0","babel-eslint":"^7.1.1","babel-preset-latest":"^6.16.0","babel-preset-react":"^6.16.0","babel-preset-stage-0":"^6.16.0","eslint":"^3.12.0","eslint-config-airbnb":"^13.0.0","eslint-plugin-babel":"^4.0.0","eslint-plugin-import":"^2.2.0","eslint-plugin-jsx-a11y":"^2.2.3","eslint-plugin-react":"^6.8.0"},"peerDependencies":{"react":">=15.2.0","react-native":">=0.29.0"},"repository":{"type":"git","url":"git+https://github.com/jshanson7/react-native-swipeable.git"},"keywords":["react","native","swipe","ListView","TableView"],"gitHead":"316fe68a8928a368440aee287f033fb286754359","bugs":{"url":"https://github.com/jshanson7/react-native-swipeable/issues"},"homepage":"https://github.com/jshanson7/react-native-swipeable#readme","_id":"react-native-swipeable@0.1.2","_shasum":"34b206872cf7eef962feb491eb1f61aeea762405","_from":".","_npmVersion":"4.0.3","_nodeVersion":"7.2.0","_npmUser":{"name":"jshanson7","email":"jshanson7@gmail.com"},"dist":{"shasum":"34b206872cf7eef962feb491eb1f61aeea762405","tarball":"https://registry.npmjs.org/react-native-swipeable/-/react-native-swipeable-0.1.2.tgz","integrity":"sha512-pO8AAKduAVPK8NjXPzK83/Eg2k9INVnFmgTICVEhjRfvSA3aI20u4cLY79tX2dSxWO5jxG8OTk114Sf9FKUobA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIFuQIoy156bG/6ddMqYSNMNJEKEi7/DP6ExcN1G5pXoeAiAUvPDTgxy4M+KhGNSZ/iL/6xAxkSmMzHQEaggRARmcdQ=="}]},"maintainers":[{"name":"jshanson7","email":"jshanson7@gmail.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/react-native-swipeable-0.1.2.tgz_1483655570101_0.6257531030569226"}},"0.2.0":{"name":"react-native-swipeable","version":"0.2.0","description":"React Native swipe component","main":"lib/index.js","scripts":{"build":"make build","lint":"make lint"},"author":{"name":"Jeff Hanson"},"license":"MIT","devDependencies":{"babel-cli":"^6.18.0","babel-eslint":"^7.1.1","babel-preset-latest":"^6.16.0","babel-preset-react":"^6.16.0","babel-preset-stage-0":"^6.16.0","eslint":"^3.12.0","eslint-config-airbnb":"^13.0.0","eslint-plugin-babel":"^4.0.0","eslint-plugin-import":"^2.2.0","eslint-plugin-jsx-a11y":"^2.2.3","eslint-plugin-react":"^6.8.0"},"peerDependencies":{"react":">=15.2.0","react-native":">=0.29.0"},"repository":{"type":"git","url":"git+https://github.com/jshanson7/react-native-swipeable.git"},"keywords":["react","native","swipe","ListView","TableView"],"gitHead":"570972eaa421b60755b20225db20c5774dc2012e","bugs":{"url":"https://github.com/jshanson7/react-native-swipeable/issues"},"homepage":"https://github.com/jshanson7/react-native-swipeable#readme","_id":"react-native-swipeable@0.2.0","_shasum":"3923b88bce30878cf440703686aecb3e0e34a65a","_from":".","_npmVersion":"4.0.3","_nodeVersion":"7.2.0","_npmUser":{"name":"jshanson7","email":"jshanson7@gmail.com"},"dist":{"shasum":"3923b88bce30878cf440703686aecb3e0e34a65a","tarball":"https://registry.npmjs.org/react-native-swipeable/-/react-native-swipeable-0.2.0.tgz","integrity":"sha512-8tlIbS65EW8l9C518WwvncvspvdSNHRYYM0ZH/EVsVskl+2bZKYbzrIViU0hCi6FW3l2/YKHvdDaOtVLbKaXAg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQD7uEBXdLgqmhMYN/amDpKrD9VqsFl3pn7H/6/EpPsfEAIhAJ8CX/KjPfKfz24FVerOQEMXxhTzzfNDwtvvY1Vyf/j6"}]},"maintainers":[{"name":"jshanson7","email":"jshanson7@gmail.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/react-native-swipeable-0.2.0.tgz_1484072621139_0.9108218185137957"}},"0.2.1":{"name":"react-native-swipeable","version":"0.2.1","description":"React Native swipe component","main":"lib/index.js","scripts":{"build":"make build","lint":"make lint"},"author":{"name":"Jeff Hanson"},"license":"MIT","devDependencies":{"babel-cli":"^6.18.0","babel-eslint":"^7.1.1","babel-preset-latest":"^6.16.0","babel-preset-react":"^6.16.0","babel-preset-stage-0":"^6.16.0","eslint":"^3.12.0","eslint-config-airbnb":"^13.0.0","eslint-plugin-babel":"^4.0.0","eslint-plugin-import":"^2.2.0","eslint-plugin-jsx-a11y":"^2.2.3","eslint-plugin-react":"^6.8.0"},"peerDependencies":{"react":">=15.2.0","react-native":">=0.29.0"},"repository":{"type":"git","url":"git+https://github.com/jshanson7/react-native-swipeable.git"},"keywords":["react","native","swipe","ListView","TableView"],"gitHead":"d35419e26abe396489c0461b863892b7d346e62a","bugs":{"url":"https://github.com/jshanson7/react-native-swipeable/issues"},"homepage":"https://github.com/jshanson7/react-native-swipeable#readme","_id":"react-native-swipeable@0.2.1","_shasum":"25db0430dd0fb3a7757c4650373dce56a4c6e2b8","_from":".","_npmVersion":"4.0.3","_nodeVersion":"7.2.0","_npmUser":{"name":"jshanson7","email":"jshanson7@gmail.com"},"dist":{"shasum":"25db0430dd0fb3a7757c4650373dce56a4c6e2b8","tarball":"https://registry.npmjs.org/react-native-swipeable/-/react-native-swipeable-0.2.1.tgz","integrity":"sha512-zJAY348bA4G9lMYDax4j+lJTE5aF+LBsA11h0d7Zeeqofxvp7J89/owNvwV1OvhOnTEAb8hRhVRnPj8RkjNv2A==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDwx706nFbidyTdEe0IuwrdeAqO+A9maI7EIF4pxpSc0wIhAOeiC896xl5sePjbBRTLD8m0cbR/tdU5KEbUq22p1PEP"}]},"maintainers":[{"name":"jshanson7","email":"jshanson7@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/react-native-swipeable-0.2.1.tgz_1484073718004_0.5411603094544262"}},"0.2.2":{"name":"react-native-swipeable","version":"0.2.2","description":"React Native swipe component","main":"lib/index.js","scripts":{"build":"make build","lint":"make lint"},"author":{"name":"Jeff Hanson"},"license":"MIT","devDependencies":{"babel-cli":"^6.18.0","babel-eslint":"^7.1.1","babel-preset-latest":"^6.16.0","babel-preset-react":"^6.16.0","babel-preset-stage-0":"^6.16.0","eslint":"^3.12.0","eslint-config-airbnb":"^13.0.0","eslint-plugin-babel":"^4.0.0","eslint-plugin-import":"^2.2.0","eslint-plugin-jsx-a11y":"^2.2.3","eslint-plugin-react":"^6.8.0"},"peerDependencies":{"react":">=15.2.0","react-native":">=0.29.0"},"repository":{"type":"git","url":"git+https://github.com/jshanson7/react-native-swipeable.git"},"keywords":["react","native","swipe","ListView","TableView"],"gitHead":"f071dbbe670ad8f580a9321ac4518eca9b6fc769","bugs":{"url":"https://github.com/jshanson7/react-native-swipeable/issues"},"homepage":"https://github.com/jshanson7/react-native-swipeable#readme","_id":"react-native-swipeable@0.2.2","_shasum":"4084dbf63f46fb60e68db4f6cafc45d15a99c120","_from":".","_npmVersion":"4.0.3","_nodeVersion":"7.2.0","_npmUser":{"name":"jshanson7","email":"jshanson7@gmail.com"},"dist":{"shasum":"4084dbf63f46fb60e68db4f6cafc45d15a99c120","tarball":"https://registry.npmjs.org/react-native-swipeable/-/react-native-swipeable-0.2.2.tgz","integrity":"sha512-Jv0ZiD1oYKb2y6ZMMh0zqsIkx5mfb6kstEFCCE+6IdALPgj/zTiDkE+VJFJKV48Y14IsPjeMM+Vsj8RVzNrwhQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCyBjdZIOkYgSHWsBmYUMX9tC6VTwk4MqhyZppUds1fUgIhAPoslI9j97o/83jb3r5v4soiUo/5namR5u6PWh1DDqvO"}]},"maintainers":[{"name":"jshanson7","email":"jshanson7@gmail.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/react-native-swipeable-0.2.2.tgz_1484073949378_0.6858979146927595"}},"0.2.3":{"name":"react-native-swipeable","version":"0.2.3","description":"React Native swipe component","main":"lib/index.js","scripts":{"build":"make build","lint":"make lint"},"author":{"name":"Jeff Hanson"},"license":"MIT","devDependencies":{"babel-cli":"^6.18.0","babel-eslint":"^7.1.1","babel-preset-latest":"^6.16.0","babel-preset-react":"^6.16.0","babel-preset-stage-0":"^6.16.0","eslint":"^3.12.0","eslint-config-airbnb":"^13.0.0","eslint-plugin-babel":"^4.0.0","eslint-plugin-import":"^2.2.0","eslint-plugin-jsx-a11y":"^2.2.3","eslint-plugin-react":"^6.8.0"},"peerDependencies":{"react":">=15.2.0","react-native":">=0.29.0"},"repository":{"type":"git","url":"git+https://github.com/jshanson7/react-native-swipeable.git"},"keywords":["react","native","swipe","ListView","TableView"],"gitHead":"d7de3b48879cf0a4f36d5522ecb0dc6cb657948e","bugs":{"url":"https://github.com/jshanson7/react-native-swipeable/issues"},"homepage":"https://github.com/jshanson7/react-native-swipeable#readme","_id":"react-native-swipeable@0.2.3","_shasum":"6a5320e561379c71da6de1a4a1483fe066db8a3a","_from":".","_npmVersion":"4.0.3","_nodeVersion":"7.2.0","_npmUser":{"name":"jshanson7","email":"jshanson7@gmail.com"},"dist":{"shasum":"6a5320e561379c71da6de1a4a1483fe066db8a3a","tarball":"https://registry.npmjs.org/react-native-swipeable/-/react-native-swipeable-0.2.3.tgz","integrity":"sha512-EcDzHltXgpkR+ZIYXakk1e7+66SnzlAlQuPNiECYFPq7rSsKh3xxLLeNMeNYgmpNTO76HKYwkgpfhU4ODYOHqQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIFOYPuR8V/prj4WWtM+z82itS0r7Rfyoihw/5NeNe3AGAiBdmXdfRd7ghzPV/UYWJbFKjmsPXXyewwF6fAfULa9I/g=="}]},"maintainers":[{"name":"jshanson7","email":"jshanson7@gmail.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/react-native-swipeable-0.2.3.tgz_1484074344404_0.6860496429726481"}},"0.2.4":{"name":"react-native-swipeable","version":"0.2.4","description":"A powerful React Native swipe component","main":"lib/index.js","scripts":{"build":"make build","lint":"make lint"},"author":{"name":"Jeff Hanson"},"license":"MIT","devDependencies":{"babel-cli":"^6.18.0","babel-eslint":"^7.1.1","babel-preset-latest":"^6.16.0","babel-preset-react":"^6.16.0","babel-preset-stage-0":"^6.16.0","eslint":"^3.12.0","eslint-config-airbnb":"^13.0.0","eslint-plugin-babel":"^4.0.0","eslint-plugin-import":"^2.2.0","eslint-plugin-jsx-a11y":"^2.2.3","eslint-plugin-react":"^6.8.0"},"peerDependencies":{"react":">=15.2.0","react-native":">=0.29.0"},"repository":{"type":"git","url":"git+https://github.com/jshanson7/react-native-swipeable.git"},"keywords":["react","native","swipe","ListView","TableView"],"gitHead":"1d828d9c6e4d8b084e5f96f86bb79d9eb4dffb50","bugs":{"url":"https://github.com/jshanson7/react-native-swipeable/issues"},"homepage":"https://github.com/jshanson7/react-native-swipeable#readme","_id":"react-native-swipeable@0.2.4","_shasum":"204c37029ba9e97e45948f0274abef91c9090ab6","_from":".","_npmVersion":"4.0.3","_nodeVersion":"7.2.0","_npmUser":{"name":"jshanson7","email":"jshanson7@gmail.com"},"dist":{"shasum":"204c37029ba9e97e45948f0274abef91c9090ab6","tarball":"https://registry.npmjs.org/react-native-swipeable/-/react-native-swipeable-0.2.4.tgz","integrity":"sha512-h2yiHRhRz4ZUCIrqVJavq+r6/fvwyeB+8b0tYIm2qX385InX44dpaj8EPPQLzO5SVJnh3RBEbO4PDjvqpDgmjw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQConZkPZfh70GaCtVmEFyKkWH8LLt0+X959rbI8U8V51wIhAPSSjx1Z7WCNXH4A6K4ovGMxihvYfxKyDSA2lxU72yu0"}]},"maintainers":[{"name":"jshanson7","email":"jshanson7@gmail.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/react-native-swipeable-0.2.4.tgz_1484347824888_0.9823713274672627"}},"0.2.5":{"name":"react-native-swipeable","version":"0.2.5","description":"A powerful React Native swipe component","main":"lib/index.js","scripts":{"build":"make build","lint":"make lint"},"author":{"name":"Jeff Hanson"},"license":"MIT","devDependencies":{"babel-cli":"^6.18.0","babel-eslint":"^7.1.1","babel-preset-latest":"^6.16.0","babel-preset-react":"^6.16.0","babel-preset-stage-0":"^6.16.0","eslint":"^3.12.0","eslint-config-airbnb":"^13.0.0","eslint-plugin-babel":"^4.0.0","eslint-plugin-import":"^2.2.0","eslint-plugin-jsx-a11y":"^2.2.3","eslint-plugin-react":"^6.8.0"},"peerDependencies":{"react":">=15.2.0","react-native":">=0.29.0"},"repository":{"type":"git","url":"git+https://github.com/jshanson7/react-native-swipeable.git"},"keywords":["react","native","swipe","ListView","TableView"],"gitHead":"d24c89f0be1c9da7f3ab37b74ca6c280b37211d2","bugs":{"url":"https://github.com/jshanson7/react-native-swipeable/issues"},"homepage":"https://github.com/jshanson7/react-native-swipeable#readme","_id":"react-native-swipeable@0.2.5","_shasum":"87c6a9f2c43e6786cfd0acca3d0018ef357f9381","_from":".","_npmVersion":"4.0.3","_nodeVersion":"7.2.0","_npmUser":{"name":"jshanson7","email":"jshanson7@gmail.com"},"dist":{"shasum":"87c6a9f2c43e6786cfd0acca3d0018ef357f9381","tarball":"https://registry.npmjs.org/react-native-swipeable/-/react-native-swipeable-0.2.5.tgz","integrity":"sha512-SUITO19GsckjdhG9X1yhKSIV+LIwUfZyTuG0wZ9iIqQh0syjiF6GPvaoCVLrx5ubhUkG/9+yHBGcLnPP2O8+2w==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDGdtJHHIMkOsFLTOMsxnid81mBuDOaFA7w8GtJlByG6wIgXITbNdbtWsIEuqnaLAwnwOB0KvrsgpXE2RpWHhLLCxA="}]},"maintainers":[{"name":"jshanson7","email":"jshanson7@gmail.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/react-native-swipeable-0.2.5.tgz_1484359910820_0.08131942059844732"}},"0.2.6":{"name":"react-native-swipeable","version":"0.2.6","description":"A powerful React Native swipe component","main":"lib/index.js","scripts":{"build":"make build","lint":"make lint"},"author":{"name":"Jeff Hanson"},"license":"MIT","devDependencies":{"babel-cli":"^6.18.0","babel-eslint":"^7.1.1","babel-preset-latest":"^6.16.0","babel-preset-react":"^6.16.0","babel-preset-stage-0":"^6.16.0","eslint":"^3.12.0","eslint-config-airbnb":"^13.0.0","eslint-plugin-babel":"^4.0.0","eslint-plugin-import":"^2.2.0","eslint-plugin-jsx-a11y":"^2.2.3","eslint-plugin-react":"^6.8.0"},"peerDependencies":{"react":">=15.2.0","react-native":">=0.29.0"},"repository":{"type":"git","url":"git+https://github.com/jshanson7/react-native-swipeable.git"},"keywords":["react","native","swipe","ListView","TableView"],"gitHead":"65b03744c28d79d2ea68cd59a7f3a7e9e45bf805","bugs":{"url":"https://github.com/jshanson7/react-native-swipeable/issues"},"homepage":"https://github.com/jshanson7/react-native-swipeable#readme","_id":"react-native-swipeable@0.2.6","_shasum":"982c89eb9bd4f5aa47c39872578b0e2ead258d2d","_from":".","_npmVersion":"4.0.3","_nodeVersion":"7.2.0","_npmUser":{"name":"jshanson7","email":"jshanson7@gmail.com"},"dist":{"shasum":"982c89eb9bd4f5aa47c39872578b0e2ead258d2d","tarball":"https://registry.npmjs.org/react-native-swipeable/-/react-native-swipeable-0.2.6.tgz","integrity":"sha512-IWKFCXozYa57txoOHa2XSC830Fed2mO3q037QXI95H++eLtNJeb5r1JfAVW9E9ilPPWQkiJeXGkycqLm8y+E4A==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCS7K49vCEgrMTva3r5gtq4+F8M3gQZBZ/7w/m/Qqwx9QIgMevP43QPxw3tBgFOk1fSGMaAjrDuaoVmB9nswNIz70I="}]},"maintainers":[{"name":"jshanson7","email":"jshanson7@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/react-native-swipeable-0.2.6.tgz_1484361065293_0.08138210722245276"}},"0.3.0":{"name":"react-native-swipeable","version":"0.3.0","description":"A powerful React Native swipe component","main":"lib/index.js","scripts":{"build":"make build","lint":"make lint"},"author":{"name":"Jeff Hanson"},"license":"MIT","devDependencies":{"babel-cli":"^6.18.0","babel-eslint":"^7.1.1","babel-preset-latest":"^6.16.0","babel-preset-react":"^6.16.0","babel-preset-stage-0":"^6.16.0","eslint":"^3.12.0","eslint-config-airbnb":"^13.0.0","eslint-plugin-babel":"^4.0.0","eslint-plugin-import":"^2.2.0","eslint-plugin-jsx-a11y":"^2.2.3","eslint-plugin-react":"^6.8.0"},"peerDependencies":{"react":">=15.2.0","react-native":">=0.29.0"},"repository":{"type":"git","url":"git+https://github.com/jshanson7/react-native-swipeable.git"},"keywords":["react","native","swipe","ListView","TableView"],"gitHead":"ba1725cca919baefb82298389f456abb9920cad9","bugs":{"url":"https://github.com/jshanson7/react-native-swipeable/issues"},"homepage":"https://github.com/jshanson7/react-native-swipeable#readme","_id":"react-native-swipeable@0.3.0","_shasum":"187788bb6e90c48f681e097dbb7bb7cd033f46ba","_from":".","_npmVersion":"4.0.3","_nodeVersion":"7.2.0","_npmUser":{"name":"jshanson7","email":"jshanson7@gmail.com"},"dist":{"shasum":"187788bb6e90c48f681e097dbb7bb7cd033f46ba","tarball":"https://registry.npmjs.org/react-native-swipeable/-/react-native-swipeable-0.3.0.tgz","integrity":"sha512-N+R+xY4IuSnsxDlBGxqPSEnTTUguwFwyYmDSiuZ6pGglhx8VNWtBIabiR5bhBe1VRhHCvkM6o2hM1dw0EMSyoA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIF3HbVvdjElX3P3yXL+oINDsuaqbpoLY50hdJP8Fkp7zAiAfpKHpO8A8Cxi5dN6Psoqt8iGCfgz2PjQyQuxDs9roCw=="}]},"maintainers":[{"name":"jshanson7","email":"jshanson7@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/react-native-swipeable-0.3.0.tgz_1484459660964_0.0822340336162597"}},"0.3.1":{"name":"react-native-swipeable","version":"0.3.1","description":"A powerful React Native swipe component","main":"lib/index.js","scripts":{"build":"make build","lint":"make lint"},"author":{"name":"Jeff Hanson"},"license":"MIT","devDependencies":{"babel-cli":"^6.18.0","babel-eslint":"^7.1.1","babel-preset-latest":"^6.16.0","babel-preset-react":"^6.16.0","babel-preset-stage-0":"^6.16.0","eslint":"^3.12.0","eslint-config-airbnb":"^13.0.0","eslint-plugin-babel":"^4.0.0","eslint-plugin-import":"^2.2.0","eslint-plugin-jsx-a11y":"^2.2.3","eslint-plugin-react":"^6.8.0"},"peerDependencies":{"react":">=15.2.0","react-native":">=0.29.0"},"repository":{"type":"git","url":"git+https://github.com/jshanson7/react-native-swipeable.git"},"keywords":["react","native","swipe","ListView","TableView"],"gitHead":"5262b5cfcb45bc8be9e28ff8002988206d368a2d","bugs":{"url":"https://github.com/jshanson7/react-native-swipeable/issues"},"homepage":"https://github.com/jshanson7/react-native-swipeable#readme","_id":"react-native-swipeable@0.3.1","_shasum":"945fd2d3cbdec693c109d4349d2aa0ec0c1b34e8","_from":".","_npmVersion":"4.0.3","_nodeVersion":"7.2.0","_npmUser":{"name":"jshanson7","email":"jshanson7@gmail.com"},"dist":{"shasum":"945fd2d3cbdec693c109d4349d2aa0ec0c1b34e8","tarball":"https://registry.npmjs.org/react-native-swipeable/-/react-native-swipeable-0.3.1.tgz","integrity":"sha512-0YuVvSZyHHWO3XIlQg+M7z1jWo9aqmo4rDlATnsi5C1LY3FRdumSSei9rAnFpr+u0kfcba1I/hPDpdxt6TgOjg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDN/4k9MNPqm9RElROXtV1BKubnf9Z0Tx8p27VFP7RPGwIgHdiZePzAnlPYG2KahFGYIrqhviF/AF31DSXPvCVsa4c="}]},"maintainers":[{"name":"jshanson7","email":"jshanson7@gmail.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/react-native-swipeable-0.3.1.tgz_1484468397918_0.9631103263236582"}},"0.3.2":{"name":"react-native-swipeable","version":"0.3.2","description":"A powerful React Native swipe component","main":"lib/index.js","scripts":{"build":"make build","lint":"make lint"},"author":{"name":"Jeff Hanson"},"license":"MIT","devDependencies":{"babel-cli":"^6.18.0","babel-eslint":"^7.1.1","babel-preset-latest":"^6.16.0","babel-preset-react":"^6.16.0","babel-preset-stage-0":"^6.16.0","eslint":"^3.12.0","eslint-config-airbnb":"^13.0.0","eslint-plugin-babel":"^4.0.0","eslint-plugin-import":"^2.2.0","eslint-plugin-jsx-a11y":"^2.2.3","eslint-plugin-react":"^6.8.0"},"peerDependencies":{"react":">=15.2.0","react-native":">=0.29.0"},"repository":{"type":"git","url":"git+https://github.com/jshanson7/react-native-swipeable.git"},"keywords":["react","native","swipe","ListView","TableView"],"gitHead":"ad898b4c60684032a1bb7b93ec6e969ef0bfa32f","bugs":{"url":"https://github.com/jshanson7/react-native-swipeable/issues"},"homepage":"https://github.com/jshanson7/react-native-swipeable#readme","_id":"react-native-swipeable@0.3.2","_shasum":"9d063bed4499d1b61f7f1c8eb85aff07696370df","_from":".","_npmVersion":"4.0.3","_nodeVersion":"7.2.0","_npmUser":{"name":"jshanson7","email":"jshanson7@gmail.com"},"dist":{"shasum":"9d063bed4499d1b61f7f1c8eb85aff07696370df","tarball":"https://registry.npmjs.org/react-native-swipeable/-/react-native-swipeable-0.3.2.tgz","integrity":"sha512-69xwUsPqBf7MXZgw4dPkRxNvCj0ZeqUU1P5FkEo/yGEMwhQTmNi8udzPwTiusLjYWRVBEHCUZC6/IkdGE+SIiQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIGMqJi6+nNZJXHNahZXIwlRkFsIWJzc0GVK7e8TVV7+fAiBkHfBJ1iWVUvHnYAN17yGMyfooxRse7L+CTt0lf7FnOA=="}]},"maintainers":[{"name":"jshanson7","email":"jshanson7@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/react-native-swipeable-0.3.2.tgz_1484468704770_0.4132055528461933"}},"0.3.3":{"name":"react-native-swipeable","version":"0.3.3","description":"A powerful React Native swipe component","main":"lib/index.js","scripts":{"build":"make build","lint":"make lint"},"author":{"name":"Jeff Hanson"},"license":"MIT","devDependencies":{"babel-cli":"^6.18.0","babel-eslint":"^7.1.1","babel-preset-latest":"^6.16.0","babel-preset-react":"^6.16.0","babel-preset-stage-0":"^6.16.0","eslint":"^3.12.0","eslint-config-airbnb":"^13.0.0","eslint-plugin-babel":"^4.0.0","eslint-plugin-import":"^2.2.0","eslint-plugin-jsx-a11y":"^2.2.3","eslint-plugin-react":"^6.8.0"},"peerDependencies":{"react":">=15.2.0","react-native":">=0.29.0"},"repository":{"type":"git","url":"git+https://github.com/jshanson7/react-native-swipeable.git"},"keywords":["react","native","swipe","ListView","TableView"],"gitHead":"62905d44bda033aeeb91940e5de77df33248238e","bugs":{"url":"https://github.com/jshanson7/react-native-swipeable/issues"},"homepage":"https://github.com/jshanson7/react-native-swipeable#readme","_id":"react-native-swipeable@0.3.3","_shasum":"569190df0bf2f46f5791227d16a896eeb066c212","_from":".","_npmVersion":"4.0.3","_nodeVersion":"7.2.0","_npmUser":{"name":"jshanson7","email":"jshanson7@gmail.com"},"dist":{"shasum":"569190df0bf2f46f5791227d16a896eeb066c212","tarball":"https://registry.npmjs.org/react-native-swipeable/-/react-native-swipeable-0.3.3.tgz","integrity":"sha512-SLydlEIjYh6jgv9TV08keIrzAEF00YwwFceW9FRZbm/fTavZMjRbN/t9u5ozkUj7WktNiq0bcsklb36SFjzEHA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIAZR+dZU4fPuGCUGKQ/IdZqZNb1rlDfHxd24f5oVDOQtAiADIAUlSqIMM8ggt3xdeoPUZ26nQny9dUIjENevkV1byQ=="}]},"maintainers":[{"name":"jshanson7","email":"jshanson7@gmail.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/react-native-swipeable-0.3.3.tgz_1487539572535_0.16735050943680108"}},"0.4.0":{"name":"react-native-swipeable","version":"0.4.0","description":"A powerful React Native swipe component","main":"lib/index.js","scripts":{"build":"make build","lint":"make lint"},"author":{"name":"Jeff Hanson"},"license":"MIT","devDependencies":{"babel-cli":"^6.18.0","babel-eslint":"^7.1.1","babel-preset-latest":"^6.16.0","babel-preset-react":"^6.16.0","babel-preset-stage-0":"^6.16.0","eslint":"^3.12.0","eslint-config-airbnb":"^13.0.0","eslint-plugin-babel":"^4.0.0","eslint-plugin-import":"^2.2.0","eslint-plugin-jsx-a11y":"^2.2.3","eslint-plugin-react":"^6.8.0"},"peerDependencies":{"react":">=15.2.0","react-native":">=0.29.0"},"repository":{"type":"git","url":"git+https://github.com/jshanson7/react-native-swipeable.git"},"keywords":["react","native","swipe","ListView","TableView"],"gitHead":"c6ead856fd5ba5f532f2483245199f637873e77b","bugs":{"url":"https://github.com/jshanson7/react-native-swipeable/issues"},"homepage":"https://github.com/jshanson7/react-native-swipeable#readme","_id":"react-native-swipeable@0.4.0","_shasum":"10ca127af1d206e857eb94c6bc49207ee21fa3e7","_from":".","_npmVersion":"4.2.0","_nodeVersion":"7.1.0","_npmUser":{"name":"jshanson7","email":"jshanson7@gmail.com"},"dist":{"shasum":"10ca127af1d206e857eb94c6bc49207ee21fa3e7","tarball":"https://registry.npmjs.org/react-native-swipeable/-/react-native-swipeable-0.4.0.tgz","integrity":"sha512-8998b88WddbjpAMD/c24Uh/rhQp33Dlc4Td/pPwu6DVKE0GF9gUh4PajxIg9kHOf8I+/zuWmMXq6Lm9DyXUXBw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQC5KfawcS7RvgSCkt1nFw/gLL70sVTn2N3LAjPwAdNRDAIgMcyBgiY5HLOR3FX11MaFjb1LEAHeydlyoLfFKhOsrQg="}]},"maintainers":[{"name":"jshanson7","email":"jshanson7@gmail.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/react-native-swipeable-0.4.0.tgz_1488223167107_0.6961677309591323"}},"0.5.0":{"name":"react-native-swipeable","version":"0.5.0","description":"A powerful React Native swipe component","main":"lib/index.js","scripts":{"build":"make build","lint":"make lint"},"author":{"name":"Jeff Hanson"},"license":"MIT","devDependencies":{"babel-cli":"^6.18.0","babel-eslint":"^7.1.1","babel-preset-latest":"^6.16.0","babel-preset-react":"^6.16.0","babel-preset-stage-0":"^6.16.0","eslint":"^3.12.0","eslint-config-airbnb":"^13.0.0","eslint-plugin-babel":"^4.0.0","eslint-plugin-import":"^2.2.0","eslint-plugin-jsx-a11y":"^2.2.3","eslint-plugin-react":"^6.8.0"},"peerDependencies":{"react":">=15.2.0","react-native":">=0.44.0"},"repository":{"type":"git","url":"git+https://github.com/jshanson7/react-native-swipeable.git"},"keywords":["react","native","swipe","ListView","TableView"],"gitHead":"8394a97f389fa1964ee00cfa26945038eec8dac4","bugs":{"url":"https://github.com/jshanson7/react-native-swipeable/issues"},"homepage":"https://github.com/jshanson7/react-native-swipeable#readme","_id":"react-native-swipeable@0.5.0","_shasum":"0b958ec2bee2b743f1b75ee72134136c47da4f24","_from":".","_npmVersion":"4.2.0","_nodeVersion":"7.10.0","_npmUser":{"name":"jshanson7","email":"jshanson7@gmail.com"},"dist":{"shasum":"0b958ec2bee2b743f1b75ee72134136c47da4f24","tarball":"https://registry.npmjs.org/react-native-swipeable/-/react-native-swipeable-0.5.0.tgz","integrity":"sha512-+WppztKbLiX1UR9NKUi7RhQp6U3AOa4t9clkjPoKKWlASjpkpyzrn03RQ9tvY1pGNPBYXWMcyBL8lLE8yYz8tg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIErb5TGlYB8bSkddMEQ9NdYV7CnxUcJlVA81xrZwmjaNAiEA9cP8b34WasQyWf0CaeB295nVhFwpFoPuGCAt6bnsCCE="}]},"maintainers":[{"name":"jshanson7","email":"jshanson7@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/react-native-swipeable-0.5.0.tgz_1499537526859_0.46307516610249877"}},"0.6.0":{"name":"react-native-swipeable","version":"0.6.0","description":"A powerful React Native swipe component","main":"lib/index.js","scripts":{"build":"make build","lint":"make lint"},"author":{"name":"Jeff Hanson"},"license":"MIT","devDependencies":{"babel-cli":"^6.18.0","babel-eslint":"^7.1.1","babel-preset-latest":"^6.16.0","babel-preset-react":"^6.16.0","babel-preset-stage-0":"^6.16.0","eslint":"^3.12.0","eslint-config-airbnb":"^13.0.0","eslint-plugin-babel":"^4.0.0","eslint-plugin-import":"^2.2.0","eslint-plugin-jsx-a11y":"^2.2.3","eslint-plugin-react":"^6.8.0"},"peerDependencies":{"react":">=15.2.0","react-native":">=0.44.0"},"repository":{"type":"git","url":"git+https://github.com/jshanson7/react-native-swipeable.git"},"keywords":["react","native","swipe","ListView","TableView"],"dependencies":{"prop-types":"^15.5.10"},"gitHead":"c2184f16ffdcfacdcdbf75f6f23ef5a2d5b8d9aa","bugs":{"url":"https://github.com/jshanson7/react-native-swipeable/issues"},"homepage":"https://github.com/jshanson7/react-native-swipeable#readme","_id":"react-native-swipeable@0.6.0","_npmVersion":"5.1.0","_nodeVersion":"7.10.0","_npmUser":{"name":"jshanson7","email":"jshanson7@gmail.com"},"dist":{"integrity":"sha512-OJUmOtPAZ3s6OHdbmGdGBq3oNZaUFOV81UMQfO2fvIF2cUOMbjUKQCRU7EhijEyufiaMAlSu/VguCRAdLRLk3w==","shasum":"0fe551330018b83c754d27f505709a594f554370","tarball":"https://registry.npmjs.org/react-native-swipeable/-/react-native-swipeable-0.6.0.tgz","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCFoNEykVAsrqoOw7r4t+DVGNpBLza2wp2es4LAo6ZvSgIhAIPV02J1gy9GIwX1/nh3PbNARZmY8M69zqyHvK0NS4XU"}]},"maintainers":[{"name":"jshanson7","email":"jshanson7@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/react-native-swipeable-0.6.0.tgz_1499660856852_0.9876307938247919"}}},"homepage":"https://github.com/jshanson7/react-native-swipeable#readme","keywords":["react","native","swipe","ListView","TableView"],"repository":{"type":"git","url":"git+https://github.com/jshanson7/react-native-swipeable.git"},"author":{"name":"Jeff Hanson"},"bugs":{"url":"https://github.com/jshanson7/react-native-swipeable/issues"},"license":"MIT","readmeFilename":"README.md"}