{"maintainers":[{"name":"jedwatson","email":"jed.watson@me.com"}],"keywords":["react","react-component","tap","tappable","touch","hammer","hammerjs","mobile"],"dist-tags":{"latest":"0.5.0"},"author":{"name":"Jed Watson"},"description":"ReactJS / HammerJS integration. Support touch events in your React app.","readme":"React-HammerJS\n==============\n\n[ReactJS](http://facebook.github.io/react/) / [HammerJS](http://hammerjs.github.io) integration. Support touch events in your React app.\n\nIf you're looking for native tap event handling in ReactJS, check out my [react-tappable](https://github.com/JedWatson/react-tappable) package.\n\n\n## Installation\n\nThe easiest way to use React-HammerJS is to install it from NPM and include it in your own React build process (using [Browserify](http://browserify.org), etc).\n\nYou can also use the standalone build by including `dist/hammer.js` in your page. If you use this, make sure you have already included React, and it is available as a global variable.\n\n```\nnpm install react-hammerjs --save\n```\n\n\n## Usage\n\nReact-HammerJS wraps a React component, binding Hammer events to it so it can fire the handlers specified.\n\n## Properties\n\nThe following events are supported:\n\n* `onTap`\n* `onDoubleTap`\n* `onPan`\n* `onPanCancel`\n* `onPanEnd`\n* `onPanStart`\n* `onPinch`\n* `onPinchCancel`\n* `onPinchEnd`\n* `onPinchIn`\n* `onPinchOut`\n* `onPinchStart`\n* `onPress`\n* `onPressUp`\n* `onRotate`\n* `onRotateCancel`\n* `onRotateEnd`\n* `onRotateMove`\n* `onRotateStart`\n* `onSwipe`\n\nYou can also provide an `action` property which is like the `onTap` event handler but will also be fired `onPress`.\n\nIf you provide the prop `direction` the `pan` and `swipe` events will support `Hammer.DIRECTION_(NONE/LEFT/RIGHT/UP/DOWN/HORIZONTAL/VERTICAL/ALL)`.\n\nThe `options` property can be used to configure the Hammer manager. These properties will be merged with the default ones.\n\n### Example\n\n```\nvar Hammer = require('react-hammerjs');\n\n// Default options\n<Hammer onTap={handleTap} onSwipe={handleSwipe}><div>Tap Me</div></Hammer>\n\n// Custom options\nvar options = {\n    touchAction:'compute',\n    recognizers: {\n        tap: {\n            time: 600,\n            threshold: 100\n        }\n    }\n};\n\n<Hammer onTap={handleTap} options={options}><div>Tap Me</div></Hammer>\n```\n\n# Disabled Events\n\nAs a default, the `pinch` and `rotate` events are disabled in hammer.js, as they would make actions on an element \"blocking\". You may enable these events using the options object which is a attribute on the react `<Hammer>` element.\n\nFor example, to activate the `pinch` event on a `canvas` element:\n\n```\n<Hammer\n    onPinch={handlePinch}\n    options={{\n       recognizers: {\n          pinch: { enable: true }\n       }\n    }}>\n    <canvas></canvas>\n</Hammer>\n```\n\nDisabled events are detailed in the hammer.js api documentation:\n- http://hammerjs.github.io/recognizer-rotate/\n- http://hammerjs.github.io/recognizer-pinch/\n\n# License\n\nMIT Licensed. Copyright (c) Jed Watson 2016.\n","repository":{"type":"git","url":"git+https://github.com/JedWatson/react-hammerjs.git"},"users":{"entropy-lion":true,"abuelwafa":true,"creamov":true},"bugs":{"url":"https://github.com/JedWatson/react-hammerjs/issues"},"license":"MIT","versions":{"0.1.0":{"name":"react-hammerjs","version":"0.1.0","description":"ReactJS / HammerJS integration. Support touch events in your React app.","main":"dist/react-hammerjs.js","author":{"name":"Jed Watson"},"license":"MIT","repository":{"type":"git","url":"https://github.com/JedWatson/react-hammerjs.git"},"dependencies":{"hammerjs":"~2.0.4","react":"~0.12.0"},"devDependencies":{"browserify":"~6.2.0","browserify-shim":"~3.8.0","chalk":"~0.5.1","del":"~0.1.3","gulp":"~3.8.10","gulp-bump":"~0.1.11","gulp-git":"~0.5.4","gulp-rename":"~1.2.0","gulp-streamify":"~0.0.5","gulp-uglify":"~1.0.1","gulp-util":"~3.0.1","merge-stream":"~0.1.6","vinyl-source-stream":"~1.0.0"},"browser":"src/Hammer.js","browserify-shim":{"react":"global:React"},"scripts":{"test":"echo \"no tests yet\" && exit 0"},"keywords":["react","react-component","tap","tappable","touch","hammer","hammerjs","mobile"],"gitHead":"3f12012c431f7d4c07f5c48340f1933b5144a2c7","bugs":{"url":"https://github.com/JedWatson/react-hammerjs/issues"},"homepage":"https://github.com/JedWatson/react-hammerjs","_id":"react-hammerjs@0.1.0","_shasum":"a105f03b5ec0f665b52b08b7f028cec268021241","_from":".","_npmVersion":"2.1.4","_nodeVersion":"0.10.32","_npmUser":{"name":"jedwatson","email":"jed.watson@me.com"},"maintainers":[{"name":"jedwatson","email":"jed.watson@me.com"}],"dist":{"shasum":"a105f03b5ec0f665b52b08b7f028cec268021241","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/react-hammerjs/-/react-hammerjs-0.1.0.tgz"},"directories":{}},"0.1.1":{"name":"react-hammerjs","version":"0.1.1","description":"ReactJS / HammerJS integration. Support touch events in your React app.","main":"src/Hammer.js","author":{"name":"Jed Watson"},"license":"MIT","repository":{"type":"git","url":"https://github.com/JedWatson/react-hammerjs.git"},"dependencies":{"hammerjs":"~2.0.4","react":"~0.12.0"},"devDependencies":{"browserify":"~6.2.0","browserify-shim":"~3.8.0","chalk":"~0.5.1","del":"~0.1.3","gulp":"~3.8.10","gulp-bump":"~0.1.11","gulp-git":"~0.5.4","gulp-rename":"~1.2.0","gulp-streamify":"~0.0.5","gulp-uglify":"~1.0.1","gulp-util":"~3.0.1","merge-stream":"~0.1.6","vinyl-source-stream":"~1.0.0"},"browserify-shim":{"react":"global:React"},"scripts":{"test":"echo \"no tests yet\" && exit 0"},"keywords":["react","react-component","tap","tappable","touch","hammer","hammerjs","mobile"],"gitHead":"58291d500a6daa61182160d1b27598fe31a3b99e","bugs":{"url":"https://github.com/JedWatson/react-hammerjs/issues"},"homepage":"https://github.com/JedWatson/react-hammerjs","_id":"react-hammerjs@0.1.1","_shasum":"961534871a57fa693a7d662e0948ee54682a0f4e","_from":".","_npmVersion":"2.1.4","_nodeVersion":"0.10.32","_npmUser":{"name":"jedwatson","email":"jed.watson@me.com"},"maintainers":[{"name":"jedwatson","email":"jed.watson@me.com"}],"dist":{"shasum":"961534871a57fa693a7d662e0948ee54682a0f4e","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/react-hammerjs/-/react-hammerjs-0.1.1.tgz"},"directories":{}},"0.1.2":{"name":"react-hammerjs","version":"0.1.2","description":"ReactJS / HammerJS integration. Support touch events in your React app.","main":"src/Hammer.js","author":{"name":"Jed Watson"},"license":"MIT","repository":{"type":"git","url":"https://github.com/JedWatson/react-hammerjs.git"},"dependencies":{"hammerjs":"~2.0.4","react":"~0.12.0"},"devDependencies":{"browserify":"~6.2.0","browserify-shim":"~3.8.0","chalk":"~0.5.1","del":"~0.1.3","gulp":"~3.8.10","gulp-bump":"~0.1.11","gulp-git":"~0.5.4","gulp-rename":"~1.2.0","gulp-streamify":"~0.0.5","gulp-uglify":"~1.0.1","gulp-util":"~3.0.1","merge-stream":"~0.1.6","vinyl-source-stream":"~1.0.0"},"browserify-shim":{"react":"global:React"},"scripts":{"test":"echo \"no tests yet\" && exit 0"},"keywords":["react","react-component","tap","tappable","touch","hammer","hammerjs","mobile"],"gitHead":"749f9dbd925a3c2443e71856313cc52e5ff834ef","bugs":{"url":"https://github.com/JedWatson/react-hammerjs/issues"},"homepage":"https://github.com/JedWatson/react-hammerjs","_id":"react-hammerjs@0.1.2","_shasum":"62348def47c406b734a2a9bd6a2e343a04f82ac2","_from":".","_npmVersion":"1.4.28","_npmUser":{"name":"jedwatson","email":"jed.watson@me.com"},"maintainers":[{"name":"jedwatson","email":"jed.watson@me.com"}],"dist":{"shasum":"62348def47c406b734a2a9bd6a2e343a04f82ac2","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/react-hammerjs/-/react-hammerjs-0.1.2.tgz"},"directories":{}},"0.1.3":{"name":"react-hammerjs","version":"0.1.3","description":"ReactJS / HammerJS integration. Support touch events in your React app.","main":"src/Hammer.js","author":{"name":"Jed Watson"},"license":"MIT","repository":{"type":"git","url":"https://github.com/JedWatson/react-hammerjs.git"},"dependencies":{"hammerjs":"^2.0.4","react":"^0.12.0"},"devDependencies":{"browserify":"^6.2.0","browserify-shim":"^3.8.0","chalk":"^0.5.1","del":"^0.1.3","gulp":"^3.8.10","gulp-bump":"^0.1.11","gulp-git":"^0.5.5","gulp-rename":"^1.2.0","gulp-streamify":"^0.0.5","gulp-uglify":"^1.0.2","gulp-util":"^3.0.1","merge-stream":"^0.1.6","vinyl-source-stream":"^1.0.0"},"browserify-shim":{"react":"global:React"},"scripts":{"test":"echo \"no tests yet\" && exit 0"},"keywords":["react","react-component","tap","tappable","touch","hammer","hammerjs","mobile"],"gitHead":"85b794866456ec6abc3f9eac89d3d1009014b3b8","bugs":{"url":"https://github.com/JedWatson/react-hammerjs/issues"},"homepage":"https://github.com/JedWatson/react-hammerjs","_id":"react-hammerjs@0.1.3","_shasum":"3026ab8508ecc9aad7d4d8582d2a202199e80afe","_from":".","_npmVersion":"1.4.28","_npmUser":{"name":"jedwatson","email":"jed.watson@me.com"},"maintainers":[{"name":"jedwatson","email":"jed.watson@me.com"}],"dist":{"shasum":"3026ab8508ecc9aad7d4d8582d2a202199e80afe","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/react-hammerjs/-/react-hammerjs-0.1.3.tgz"},"directories":{}},"0.1.4":{"name":"react-hammerjs","version":"0.1.4","description":"ReactJS / HammerJS integration. Support touch events in your React app.","main":"src/Hammer.js","author":{"name":"Jed Watson"},"license":"MIT","repository":{"type":"git","url":"https://github.com/JedWatson/react-hammerjs.git"},"dependencies":{"hammerjs":"^2.0.4","react":">=0.12.0"},"devDependencies":{"browserify":"^6.2.0","browserify-shim":"^3.8.0","chalk":"^0.5.1","del":"^0.1.3","gulp":"^3.8.10","gulp-bump":"^0.1.11","gulp-git":"^0.5.5","gulp-rename":"^1.2.0","gulp-streamify":"^0.0.5","gulp-uglify":"^1.0.2","gulp-util":"^3.0.1","merge-stream":"^0.1.6","vinyl-source-stream":"^1.0.0"},"browserify-shim":{"react":"global:React"},"scripts":{"test":"echo \"no tests yet\" && exit 0"},"keywords":["react","react-component","tap","tappable","touch","hammer","hammerjs","mobile"],"gitHead":"f638bd1a1c6dbc35ede8caab4f5de15938111a38","bugs":{"url":"https://github.com/JedWatson/react-hammerjs/issues"},"homepage":"https://github.com/JedWatson/react-hammerjs","_id":"react-hammerjs@0.1.4","_shasum":"2cc220ffd0ebe9ff3f2f62d11f1c58898846e1a0","_from":".","_npmVersion":"1.4.28","_npmUser":{"name":"jedwatson","email":"jed.watson@me.com"},"maintainers":[{"name":"jedwatson","email":"jed.watson@me.com"}],"dist":{"shasum":"2cc220ffd0ebe9ff3f2f62d11f1c58898846e1a0","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/react-hammerjs/-/react-hammerjs-0.1.4.tgz"},"directories":{}},"0.1.5":{"name":"react-hammerjs","version":"0.1.5","description":"ReactJS / HammerJS integration. Support touch events in your React app.","main":"src/Hammer.js","author":{"name":"Jed Watson"},"license":"MIT","repository":{"type":"git","url":"https://github.com/JedWatson/react-hammerjs.git"},"dependencies":{"hammerjs":"^2.0.4","react":">=0.12.0"},"devDependencies":{"browserify":"^9.0.3","browserify-shim":"^3.8.3","chalk":"^1.0.0","del":"^1.1.1","gulp":"^3.8.11","gulp-bump":"^0.2.2","gulp-git":"^1.1.0","gulp-rename":"^1.2.0","gulp-streamify":"^0.0.5","gulp-uglify":"^1.1.0","gulp-util":"^3.0.4","merge-stream":"^0.1.7","vinyl-source-stream":"^1.1.0"},"browserify-shim":{"react":"global:React"},"scripts":{"test":"echo \"no tests yet\" && exit 0"},"keywords":["react","react-component","tap","tappable","touch","hammer","hammerjs","mobile"],"gitHead":"6b017648ade220e7d21a83d0fc1d86a50f0287d1","bugs":{"url":"https://github.com/JedWatson/react-hammerjs/issues"},"homepage":"https://github.com/JedWatson/react-hammerjs","_id":"react-hammerjs@0.1.5","_shasum":"8a38ba083eacee394a7e226ba4a74342afb6f83b","_from":".","_npmVersion":"1.4.28","_npmUser":{"name":"jedwatson","email":"jed.watson@me.com"},"maintainers":[{"name":"jedwatson","email":"jed.watson@me.com"}],"dist":{"shasum":"8a38ba083eacee394a7e226ba4a74342afb6f83b","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/react-hammerjs/-/react-hammerjs-0.1.5.tgz"},"directories":{}},"0.2.0":{"name":"react-hammerjs","version":"0.2.0","description":"ReactJS / HammerJS integration. Support touch events in your React app.","main":"src/Hammer.js","author":{"name":"Jed Watson"},"license":"MIT","repository":{"type":"git","url":"https://github.com/JedWatson/react-hammerjs.git"},"dependencies":{"hammerjs":"^2.0.4","react":">=0.12.0"},"devDependencies":{"browserify":"^9.0.3","browserify-shim":"^3.8.3","chalk":"^1.0.0","del":"^1.1.1","gulp":"^3.8.11","gulp-bump":"^0.2.2","gulp-git":"^1.1.0","gulp-rename":"^1.2.0","gulp-streamify":"^0.0.5","gulp-uglify":"^1.1.0","gulp-util":"^3.0.4","merge-stream":"^0.1.7","vinyl-source-stream":"^1.1.0"},"browserify-shim":{"react":"global:React"},"scripts":{"test":"echo \"no tests yet\" && exit 0"},"keywords":["react","react-component","tap","tappable","touch","hammer","hammerjs","mobile"],"gitHead":"dca321d3f586eaea6938a2cbd7e7fff7af26bfbb","bugs":{"url":"https://github.com/JedWatson/react-hammerjs/issues"},"homepage":"https://github.com/JedWatson/react-hammerjs","_id":"react-hammerjs@0.2.0","_shasum":"f25c10679b496ce21bfcd2c285a0595ce641a587","_from":".","_npmVersion":"1.4.28","_npmUser":{"name":"jedwatson","email":"jed.watson@me.com"},"maintainers":[{"name":"jedwatson","email":"jed.watson@me.com"}],"dist":{"shasum":"f25c10679b496ce21bfcd2c285a0595ce641a587","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/react-hammerjs/-/react-hammerjs-0.2.0.tgz"},"directories":{}},"0.2.1":{"name":"react-hammerjs","version":"0.2.1","description":"ReactJS / HammerJS integration. Support touch events in your React app.","main":"src/Hammer.js","author":{"name":"Jed Watson"},"license":"MIT","repository":{"type":"git","url":"https://github.com/JedWatson/react-hammerjs.git"},"dependencies":{"hammerjs":"^2.0.4","react":">=0.12.0"},"devDependencies":{"browserify":"^9.0.3","browserify-shim":"^3.8.3","chalk":"^1.0.0","del":"^1.1.1","gulp":"^3.8.11","gulp-bump":"^0.2.2","gulp-git":"^1.1.0","gulp-rename":"^1.2.0","gulp-streamify":"^0.0.5","gulp-uglify":"^1.1.0","gulp-util":"^3.0.4","merge-stream":"^0.1.7","vinyl-source-stream":"^1.1.0"},"browserify-shim":{"react":"global:React"},"scripts":{"test":"echo \"no tests yet\" && exit 0"},"keywords":["react","react-component","tap","tappable","touch","hammer","hammerjs","mobile"],"gitHead":"d6fa558ef7c8f56a2994a9e19757e7063a2757c0","bugs":{"url":"https://github.com/JedWatson/react-hammerjs/issues"},"homepage":"https://github.com/JedWatson/react-hammerjs","_id":"react-hammerjs@0.2.1","_shasum":"97a4ca3bce5a35540fa85aab107632022bd6a67d","_from":".","_npmVersion":"1.4.28","_npmUser":{"name":"jedwatson","email":"jed.watson@me.com"},"maintainers":[{"name":"jedwatson","email":"jed.watson@me.com"}],"dist":{"shasum":"97a4ca3bce5a35540fa85aab107632022bd6a67d","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/react-hammerjs/-/react-hammerjs-0.2.1.tgz"},"directories":{}},"0.2.2":{"name":"react-hammerjs","version":"0.2.2","description":"ReactJS / HammerJS integration. Support touch events in your React app.","main":"src/Hammer.js","author":{"name":"Jed Watson"},"license":"MIT","repository":{"type":"git","url":"https://github.com/JedWatson/react-hammerjs.git"},"dependencies":{"hammerjs":"^2.0.4","react":">=0.12.0"},"devDependencies":{"browserify":"^9.0.3","browserify-shim":"^3.8.3","chalk":"^1.0.0","del":"^1.1.1","gulp":"^3.8.11","gulp-bump":"^0.2.2","gulp-git":"^1.1.0","gulp-rename":"^1.2.0","gulp-streamify":"^0.0.5","gulp-uglify":"^1.1.0","gulp-util":"^3.0.4","merge-stream":"^0.1.7","vinyl-source-stream":"^1.1.0"},"browserify-shim":{"react":"global:React"},"scripts":{"test":"echo \"no tests yet\" && exit 0"},"keywords":["react","react-component","tap","tappable","touch","hammer","hammerjs","mobile"],"gitHead":"ecf489cf8392925f33c136d9fc651f7220bf146b","bugs":{"url":"https://github.com/JedWatson/react-hammerjs/issues"},"homepage":"https://github.com/JedWatson/react-hammerjs","_id":"react-hammerjs@0.2.2","_shasum":"33a6fff947a2c340ce4070b1be1a32b812f76832","_from":".","_npmVersion":"1.4.28","_npmUser":{"name":"jedwatson","email":"jed.watson@me.com"},"maintainers":[{"name":"jedwatson","email":"jed.watson@me.com"}],"dist":{"shasum":"33a6fff947a2c340ce4070b1be1a32b812f76832","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/react-hammerjs/-/react-hammerjs-0.2.2.tgz"},"directories":{}},"0.2.3":{"name":"react-hammerjs","version":"0.2.3","description":"ReactJS / HammerJS integration. Support touch events in your React app.","main":"src/Hammer.js","author":{"name":"Jed Watson"},"license":"MIT","repository":{"type":"git","url":"https://github.com/JedWatson/react-hammerjs.git"},"dependencies":{"hammerjs":"^2.0.4"},"devDependencies":{"browserify":"^11.0.1","browserify-shim":"^3.8.10","chalk":"^1.1.1","del":"^1.2.1","gulp":"^3.9.0","gulp-bump":"^0.3.1","gulp-git":"^1.2.4","gulp-rename":"^1.2.2","gulp-streamify":"^1.0.0","gulp-uglify":"^1.2.0","gulp-util":"^3.0.6","merge-stream":"^1.0.0","react":">=0.12.0","vinyl-source-stream":"^1.1.0"},"peerDependencies":{"react":">=0.12.0"},"browserify-shim":{"react":"global:React"},"scripts":{"build":"gulp build","release":"gulp publish:tag && gulp publish:npm","test":"echo \"no tests yet\" && exit 0"},"keywords":["react","react-component","tap","tappable","touch","hammer","hammerjs","mobile"],"gitHead":"9976a21509ff1f55f76e8b73bb967d916c53daa7","bugs":{"url":"https://github.com/JedWatson/react-hammerjs/issues"},"homepage":"https://github.com/JedWatson/react-hammerjs","_id":"react-hammerjs@0.2.3","_shasum":"003d27dfd145b2082556af68768b858094d4e563","_from":".","_npmVersion":"1.4.28","_npmUser":{"name":"jedwatson","email":"jed.watson@me.com"},"maintainers":[{"name":"jedwatson","email":"jed.watson@me.com"}],"dist":{"shasum":"003d27dfd145b2082556af68768b858094d4e563","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/react-hammerjs/-/react-hammerjs-0.2.3.tgz"},"directories":{}},"0.2.4":{"name":"react-hammerjs","version":"0.2.4","description":"ReactJS / HammerJS integration. Support touch events in your React app.","main":"src/Hammer.js","author":{"name":"Jed Watson"},"license":"MIT","repository":{"type":"git","url":"https://github.com/JedWatson/react-hammerjs.git"},"dependencies":{"hammerjs":"^2.0.4"},"devDependencies":{"browserify":"^11.0.1","browserify-shim":"^3.8.10","chalk":"^1.1.1","del":"^1.2.1","gulp":"^3.9.0","gulp-bump":"^0.3.1","gulp-git":"^1.2.4","gulp-rename":"^1.2.2","gulp-streamify":"^1.0.0","gulp-uglify":"^1.2.0","gulp-util":"^3.0.6","merge-stream":"^1.0.0","react":">=0.12.0","vinyl-source-stream":"^1.1.0"},"peerDependencies":{"react":">=0.12.0"},"browserify-shim":{"react":"global:React"},"scripts":{"build":"gulp build","bump":"gulp bump","bump:minor":"gulp bump:minor","bump:major":"gulp bump:major","release":"gulp publish:tag && gulp publish:npm","test":"echo \"no tests yet\" && exit 0"},"keywords":["react","react-component","tap","tappable","touch","hammer","hammerjs","mobile"],"gitHead":"9afc26d482fbfdb7d29e3aeef17923b385a624ae","bugs":{"url":"https://github.com/JedWatson/react-hammerjs/issues"},"homepage":"https://github.com/JedWatson/react-hammerjs","_id":"react-hammerjs@0.2.4","_shasum":"3a1623776b861f2ceb92f59ba607d283b6d5782a","_from":".","_npmVersion":"1.4.28","_npmUser":{"name":"jedwatson","email":"jed.watson@me.com"},"maintainers":[{"name":"jedwatson","email":"jed.watson@me.com"}],"dist":{"shasum":"3a1623776b861f2ceb92f59ba607d283b6d5782a","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/react-hammerjs/-/react-hammerjs-0.2.4.tgz"},"directories":{}},"0.2.5":{"name":"react-hammerjs","version":"0.2.5","description":"ReactJS / HammerJS integration. Support touch events in your React app.","main":"src/Hammer.js","author":{"name":"Jed Watson"},"license":"MIT","repository":{"type":"git","url":"https://github.com/JedWatson/react-hammerjs.git"},"dependencies":{"hammerjs":"^2.0.4"},"devDependencies":{"browserify":"^11.0.1","browserify-shim":"^3.8.10","chalk":"^1.1.1","del":"^1.2.1","gulp":"^3.9.0","gulp-bump":"^0.3.1","gulp-git":"^1.2.4","gulp-rename":"^1.2.2","gulp-streamify":"^1.0.0","gulp-uglify":"^1.2.0","gulp-util":"^3.0.6","merge-stream":"^1.0.0","react":">=0.12.0","vinyl-source-stream":"^1.1.0"},"peerDependencies":{"react":">=0.12.0"},"browserify-shim":{"react":"global:React"},"scripts":{"build":"gulp build","bump":"gulp bump","bump:minor":"gulp bump:minor","bump:major":"gulp bump:major","release":"gulp publish:tag && gulp publish:npm","test":"echo \"no tests yet\" && exit 0"},"keywords":["react","react-component","tap","tappable","touch","hammer","hammerjs","mobile"],"gitHead":"db6bada142b80d1a0aa35f46efa0e97c77f13d69","bugs":{"url":"https://github.com/JedWatson/react-hammerjs/issues"},"homepage":"https://github.com/JedWatson/react-hammerjs","_id":"react-hammerjs@0.2.5","_shasum":"be801eb551a6db63ad0df6854880c7ff374fabf6","_from":".","_npmVersion":"2.7.5","_nodeVersion":"0.12.2","_npmUser":{"name":"jedwatson","email":"jed.watson@me.com"},"dist":{"shasum":"be801eb551a6db63ad0df6854880c7ff374fabf6","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/react-hammerjs/-/react-hammerjs-0.2.5.tgz"},"maintainers":[{"name":"jedwatson","email":"jed.watson@me.com"}],"directories":{}},"0.3.0":{"name":"react-hammerjs","version":"0.3.0","description":"ReactJS / HammerJS integration. Support touch events in your React app.","main":"src/Hammer.js","author":{"name":"Jed Watson"},"license":"MIT","repository":{"type":"git","url":"git+https://github.com/JedWatson/react-hammerjs.git"},"dependencies":{"hammerjs":"^2.0.4"},"devDependencies":{"browserify":"^11.0.1","browserify-shim":"^3.8.10","chalk":"^1.1.1","del":"^2.0.2","gulp":"^3.9.0","gulp-bump":"^0.3.1","gulp-git":"^1.2.4","gulp-rename":"^1.2.2","gulp-streamify":"^1.0.0","gulp-uglify":"^1.2.0","gulp-util":"^3.0.6","merge-stream":"^1.0.0","react":">=0.12.0","vinyl-source-stream":"^1.1.0"},"peerDependencies":{"react":">=0.12.0"},"browserify-shim":{"react":"global:React"},"scripts":{"build":"gulp build","bump":"gulp bump","bump:minor":"gulp bump:minor","bump:major":"gulp bump:major","release":"gulp publish:tag && gulp publish:npm","test":"echo \"no tests yet\" && exit 0"},"keywords":["react","react-component","tap","tappable","touch","hammer","hammerjs","mobile"],"gitHead":"e35f051c837721336638947b2d9343cd027f16d2","bugs":{"url":"https://github.com/JedWatson/react-hammerjs/issues"},"homepage":"https://github.com/JedWatson/react-hammerjs#readme","_id":"react-hammerjs@0.3.0","_shasum":"4c0640e60d3c938ed0c679edc1d0daf72aa43a45","_from":".","_npmVersion":"2.14.3","_nodeVersion":"4.1.0","_npmUser":{"name":"jedwatson","email":"jed.watson@me.com"},"dist":{"shasum":"4c0640e60d3c938ed0c679edc1d0daf72aa43a45","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/react-hammerjs/-/react-hammerjs-0.3.0.tgz"},"maintainers":[{"name":"jedwatson","email":"jed.watson@me.com"}],"directories":{}},"0.4.0":{"name":"react-hammerjs","version":"0.4.0","description":"ReactJS / HammerJS integration. Support touch events in your React app.","main":"src/Hammer.js","author":{"name":"Jed Watson"},"license":"MIT","repository":{"type":"git","url":"git+https://github.com/JedWatson/react-hammerjs.git"},"dependencies":{"hammerjs":"^2.0.4"},"devDependencies":{"browserify":"^11.2.0","browserify-shim":"^3.8.10","chalk":"^1.1.1","del":"^2.0.2","gulp":"^3.9.0","gulp-bump":"^1.0.0","gulp-git":"^1.5.0","gulp-rename":"^1.2.2","gulp-streamify":"^1.0.2","gulp-uglify":"^1.4.1","gulp-util":"^3.0.6","merge-stream":"^1.0.0","react":"^0.14.0","react-dom":"^0.14.0","vinyl-source-stream":"^1.1.0"},"peerDependencies":{"react":"^0.14.0"},"browserify-shim":{"react":"global:React"},"scripts":{"build":"NODE_ENV=production gulp build","bump":"gulp bump","bump:minor":"gulp bump:minor","bump:major":"gulp bump:major","release":"gulp publish:tag && gulp publish:npm","test":"echo \"no tests yet\" && exit 0"},"keywords":["react","react-component","tap","tappable","touch","hammer","hammerjs","mobile"],"gitHead":"917f4882eca37e8f847bf33416823c312cd4d80a","bugs":{"url":"https://github.com/JedWatson/react-hammerjs/issues"},"homepage":"https://github.com/JedWatson/react-hammerjs#readme","_id":"react-hammerjs@0.4.0","_shasum":"73497cd88cd459006aea9d23a2cfd5fe6fd0c0e5","_from":".","_npmVersion":"2.14.3","_nodeVersion":"4.1.0","_npmUser":{"name":"jedwatson","email":"jed.watson@me.com"},"dist":{"shasum":"73497cd88cd459006aea9d23a2cfd5fe6fd0c0e5","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/react-hammerjs/-/react-hammerjs-0.4.0.tgz"},"maintainers":[{"name":"jedwatson","email":"jed.watson@me.com"}],"directories":{}},"0.4.1":{"name":"react-hammerjs","version":"0.4.1","description":"ReactJS / HammerJS integration. Support touch events in your React app.","main":"src/Hammer.js","author":{"name":"Jed Watson"},"license":"MIT","repository":{"type":"git","url":"git+https://github.com/JedWatson/react-hammerjs.git"},"dependencies":{"hammerjs":"^2.0.4"},"devDependencies":{"browserify":"^11.2.0","browserify-shim":"^3.8.10","chalk":"^1.1.1","del":"^2.0.2","gulp":"^3.9.0","gulp-bump":"^1.0.0","gulp-git":"^1.5.0","gulp-rename":"^1.2.2","gulp-streamify":"^1.0.2","gulp-uglify":"^1.4.2","gulp-util":"^3.0.6","merge-stream":"^1.0.0","react":"^0.14.0","react-dom":"^0.14.0","vinyl-source-stream":"^1.1.0"},"peerDependencies":{"react":"^0.14.0"},"browserify-shim":{"react":"global:React"},"scripts":{"build":"NODE_ENV=production gulp build","bump":"gulp bump","bump:minor":"gulp bump:minor","bump:major":"gulp bump:major","release":"gulp publish:tag && gulp publish:npm","test":"echo \"no tests yet\" && exit 0"},"keywords":["react","react-component","tap","tappable","touch","hammer","hammerjs","mobile"],"gitHead":"15e32cff3a2902eef964ab833f914dd90e97ec83","bugs":{"url":"https://github.com/JedWatson/react-hammerjs/issues"},"homepage":"https://github.com/JedWatson/react-hammerjs#readme","_id":"react-hammerjs@0.4.1","_shasum":"5037e915726f12bfbb3a6fe26a85d930ccd60cc3","_from":".","_npmVersion":"2.14.3","_nodeVersion":"4.1.0","_npmUser":{"name":"jedwatson","email":"jed.watson@me.com"},"dist":{"shasum":"5037e915726f12bfbb3a6fe26a85d930ccd60cc3","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/react-hammerjs/-/react-hammerjs-0.4.1.tgz"},"maintainers":[{"name":"jedwatson","email":"jed.watson@me.com"}],"directories":{}},"0.4.2":{"name":"react-hammerjs","version":"0.4.2","description":"ReactJS / HammerJS integration. Support touch events in your React app.","main":"src/Hammer.js","author":{"name":"Jed Watson"},"license":"MIT","repository":{"type":"git","url":"git+https://github.com/JedWatson/react-hammerjs.git"},"dependencies":{"hammerjs":"^2.0.4"},"devDependencies":{"browserify":"^11.2.0","browserify-shim":"^3.8.10","chalk":"^1.1.1","del":"^2.0.2","gulp":"^3.9.0","gulp-bump":"^1.0.0","gulp-git":"^1.5.0","gulp-rename":"^1.2.2","gulp-streamify":"^1.0.2","gulp-uglify":"^1.4.2","gulp-util":"^3.0.6","merge-stream":"^1.0.0","react":"^0.14.0","react-dom":"^0.14.0","vinyl-source-stream":"^1.1.0"},"peerDependencies":{"react":"^0.14.0"},"browserify-shim":{"react":"global:React"},"scripts":{"build":"NODE_ENV=production gulp build","bump":"gulp bump","bump:minor":"gulp bump:minor","bump:major":"gulp bump:major","release":"gulp publish:tag && gulp publish:npm","test":"echo \"no tests yet\" && exit 0"},"keywords":["react","react-component","tap","tappable","touch","hammer","hammerjs","mobile"],"gitHead":"d26e2a79c6c5828bc24bc5319f4eb256af2cb586","bugs":{"url":"https://github.com/JedWatson/react-hammerjs/issues"},"homepage":"https://github.com/JedWatson/react-hammerjs#readme","_id":"react-hammerjs@0.4.2","_shasum":"bf62fba4eaf4e874f68212b92aebd6bea48cbe23","_from":".","_npmVersion":"2.14.3","_nodeVersion":"4.1.0","_npmUser":{"name":"jedwatson","email":"jed.watson@me.com"},"dist":{"shasum":"bf62fba4eaf4e874f68212b92aebd6bea48cbe23","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/react-hammerjs/-/react-hammerjs-0.4.2.tgz"},"maintainers":[{"name":"jedwatson","email":"jed.watson@me.com"}],"directories":{}},"0.4.3":{"name":"react-hammerjs","version":"0.4.3","description":"ReactJS / HammerJS integration. Support touch events in your React app.","main":"src/Hammer.js","author":{"name":"Jed Watson"},"license":"MIT","repository":{"type":"git","url":"git+https://github.com/JedWatson/react-hammerjs.git"},"dependencies":{"hammerjs":"^2.0.4"},"devDependencies":{"browserify":"^11.2.0","browserify-shim":"^3.8.10","chalk":"^1.1.1","del":"^2.0.2","gulp":"^3.9.0","gulp-bump":"^1.0.0","gulp-git":"^1.5.0","gulp-rename":"^1.2.2","gulp-streamify":"^1.0.2","gulp-uglify":"^1.4.2","gulp-util":"^3.0.6","merge-stream":"^1.0.0","react":"^0.14.0","react-dom":"^0.14.0","vinyl-source-stream":"^1.1.0"},"peerDependencies":{"react":"^0.14.0"},"browserify-shim":{"react":"global:React"},"scripts":{"build":"NODE_ENV=production gulp build","bump":"gulp bump","bump:minor":"gulp bump:minor","bump:major":"gulp bump:major","release":"gulp publish:tag && gulp publish:npm","test":"echo \"no tests yet\" && exit 0"},"keywords":["react","react-component","tap","tappable","touch","hammer","hammerjs","mobile"],"gitHead":"9b19753a978e8984ccee065a6ac5d511d1ccd369","bugs":{"url":"https://github.com/JedWatson/react-hammerjs/issues"},"homepage":"https://github.com/JedWatson/react-hammerjs#readme","_id":"react-hammerjs@0.4.3","_shasum":"94458c527ee30ca95b05603a6ac73d7d36fbae85","_from":".","_npmVersion":"3.3.6","_nodeVersion":"5.0.0","_npmUser":{"name":"jedwatson","email":"jed.watson@me.com"},"maintainers":[{"name":"jedwatson","email":"jed.watson@me.com"}],"dist":{"shasum":"94458c527ee30ca95b05603a6ac73d7d36fbae85","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/react-hammerjs/-/react-hammerjs-0.4.3.tgz"},"directories":{}},"0.4.5":{"name":"react-hammerjs","version":"0.4.5","description":"ReactJS / HammerJS integration. Support touch events in your React app.","main":"src/Hammer.js","author":{"name":"Jed Watson"},"license":"MIT","repository":{"type":"git","url":"git+https://github.com/JedWatson/react-hammerjs.git"},"dependencies":{"hammerjs":"^2.0.4"},"devDependencies":{"browserify":"^12.0.1","browserify-shim":"^3.8.11","chalk":"^1.1.1","del":"^2.2.0","gulp":"^3.9.0","gulp-bump":"^1.0.0","gulp-git":"^1.6.0","gulp-rename":"^1.2.2","gulp-streamify":"^1.0.2","gulp-uglify":"^1.5.1","gulp-util":"^3.0.7","merge-stream":"^1.0.0","react":"^0.14.3","react-dom":"^0.14.3","vinyl-source-stream":"^1.1.0"},"peerDependencies":{"react":"^0.14.3"},"browserify-shim":{"react":"global:React"},"scripts":{"build":"NODE_ENV=production gulp build","bump":"gulp bump","bump:minor":"gulp bump:minor","bump:major":"gulp bump:major","release":"gulp publish:tag && gulp publish:npm","test":"echo \"no tests yet\" && exit 0"},"keywords":["react","react-component","tap","tappable","touch","hammer","hammerjs","mobile"],"gitHead":"9a8580a6a3fc87df77579603134d35a40a470617","bugs":{"url":"https://github.com/JedWatson/react-hammerjs/issues"},"homepage":"https://github.com/JedWatson/react-hammerjs#readme","_id":"react-hammerjs@0.4.5","_shasum":"8a59c88acda3e42e15d0382356298b060c48ef3e","_from":".","_npmVersion":"3.3.6","_nodeVersion":"5.0.0","_npmUser":{"name":"jedwatson","email":"jed.watson@me.com"},"maintainers":[{"name":"jedwatson","email":"jed.watson@me.com"}],"dist":{"shasum":"8a59c88acda3e42e15d0382356298b060c48ef3e","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/react-hammerjs/-/react-hammerjs-0.4.5.tgz"},"directories":{}},"0.4.6":{"name":"react-hammerjs","version":"0.4.6","description":"ReactJS / HammerJS integration. Support touch events in your React app.","main":"src/Hammer.js","author":{"name":"Jed Watson"},"license":"MIT","repository":{"type":"git","url":"git+https://github.com/JedWatson/react-hammerjs.git"},"dependencies":{"hammerjs":"^2.0.6"},"devDependencies":{"browserify":"^13.0.0","browserify-shim":"^3.8.12","chalk":"^1.1.3","del":"^2.2.0","gulp":"^3.9.1","gulp-bump":"^2.1.0","gulp-git":"^1.7.1","gulp-rename":"^1.2.2","gulp-streamify":"^1.0.2","gulp-uglify":"^1.5.3","gulp-util":"^3.0.7","merge-stream":"^1.0.0","react":"^15.0.1","react-dom":"^15.0.1","vinyl-source-stream":"^1.1.0"},"peerDependencies":{"react":"^0.14.3 || ^15.0.0"},"browserify-shim":{"react":"global:React"},"scripts":{"build":"NODE_ENV=production gulp build","bump":"gulp bump","bump:minor":"gulp bump:minor","bump:major":"gulp bump:major","release":"gulp publish:tag && gulp publish:npm","test":"echo \"no tests yet\" && exit 0"},"keywords":["react","react-component","tap","tappable","touch","hammer","hammerjs","mobile"],"gitHead":"26824b30cc0a575a95fc8c14fd9d48def4f5d3cd","bugs":{"url":"https://github.com/JedWatson/react-hammerjs/issues"},"homepage":"https://github.com/JedWatson/react-hammerjs#readme","_id":"react-hammerjs@0.4.6","_shasum":"ec7fb673b3c2c837b9c239038cf762d7fdf65a46","_from":".","_npmVersion":"2.14.12","_nodeVersion":"4.2.6","_npmUser":{"name":"jedwatson","email":"jed.watson@me.com"},"dist":{"shasum":"ec7fb673b3c2c837b9c239038cf762d7fdf65a46","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/react-hammerjs/-/react-hammerjs-0.4.6.tgz"},"maintainers":[{"name":"jedwatson","email":"jed.watson@me.com"}],"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/react-hammerjs-0.4.6.tgz_1460699492108_0.8551431561354548"},"directories":{}},"0.5.0":{"name":"react-hammerjs","version":"0.5.0","description":"ReactJS / HammerJS integration. Support touch events in your React app.","main":"src/Hammer.js","author":{"name":"Jed Watson"},"license":"MIT","repository":{"type":"git","url":"git+https://github.com/JedWatson/react-hammerjs.git"},"dependencies":{"hammerjs":"^2.0.8"},"devDependencies":{"browserify":"^13.0.1","browserify-shim":"^3.8.12","chalk":"^1.1.3","del":"^2.2.1","gulp":"^3.9.1","gulp-bump":"^2.2.0","gulp-git":"^1.8.0","gulp-rename":"^1.2.2","gulp-streamify":"^1.0.2","gulp-uglify":"^1.5.4","gulp-util":"^3.0.7","merge-stream":"^1.0.0","react":"^15.2.0","react-dom":"^15.2.0","vinyl-source-stream":"^1.1.0"},"peerDependencies":{"react":"^0.14.3 || ^15.0.0"},"browserify-shim":{"react":"global:React","react-dom":"global:ReactDOM"},"scripts":{"build":"NODE_ENV=production gulp build","bump":"gulp bump","bump:minor":"gulp bump:minor","bump:major":"gulp bump:major","release":"gulp publish:tag && gulp publish:npm","test":"echo \"no tests yet\" && exit 0"},"keywords":["react","react-component","tap","tappable","touch","hammer","hammerjs","mobile"],"gitHead":"f94ce24282f757d4112de01dee6d233b31725637","bugs":{"url":"https://github.com/JedWatson/react-hammerjs/issues"},"homepage":"https://github.com/JedWatson/react-hammerjs#readme","_id":"react-hammerjs@0.5.0","_shasum":"aa20e5c5f44d660f3e8e87ed11282f12173e77ae","_from":".","_npmVersion":"3.9.3","_nodeVersion":"6.2.1","_npmUser":{"name":"jedwatson","email":"jed.watson@me.com"},"dist":{"shasum":"aa20e5c5f44d660f3e8e87ed11282f12173e77ae","tarball":"http://nexus.dui88.com:8081/nexus/content/repositories/npm-registry/react-hammerjs/-/react-hammerjs-0.5.0.tgz"},"maintainers":[{"name":"jedwatson","email":"jed.watson@me.com"}],"_npmOperationalInternal":{"host":"packages-16-east.internal.npmjs.com","tmp":"tmp/react-hammerjs-0.5.0.tgz_1467986787397_0.48569112410768867"},"directories":{}}},"name":"react-hammerjs","time":{"modified":"2016-12-09T16:19:54.003Z","created":"2014-11-14T04:59:30.725Z","0.1.0":"2014-11-14T04:59:30.725Z","0.1.1":"2014-11-20T04:45:37.679Z","0.1.2":"2014-11-28T14:07:41.110Z","0.1.3":"2014-12-05T08:02:05.183Z","0.1.4":"2015-03-09T08:03:05.456Z","0.1.5":"2015-03-11T15:59:32.389Z","0.2.0":"2015-03-15T11:12:52.587Z","0.2.1":"2015-04-04T06:24:08.834Z","0.2.2":"2015-04-13T13:56:40.234Z","0.2.3":"2015-08-20T13:46:43.198Z","0.2.4":"2015-08-22T12:22:08.980Z","0.2.5":"2015-09-05T07:18:07.379Z","0.3.0":"2015-09-21T13:12:52.734Z","0.4.0":"2015-10-11T12:52:08.343Z","0.4.1":"2015-10-18T12:45:15.427Z","0.4.2":"2015-10-27T13:00:28.015Z","0.4.3":"2015-11-26T12:34:15.390Z","0.4.5":"2015-12-26T13:04:12.544Z","0.4.6":"2016-04-15T05:51:35.924Z","0.5.0":"2016-07-08T14:06:30.313Z"},"readmeFilename":"README.md","homepage":"https://github.com/JedWatson/react-hammerjs#readme"}