{"_id":"propagating-hammerjs","maintainers":[{"name":"josdejong","email":"wjosdejong@gmail.com"}],"keywords":["hammerjs","touch","gestures","event","propagation"],"dist-tags":{"latest":"3.0.0"},"author":{"name":"Jos de Jong"},"description":"Extend hammer.js with event propagation","readme":"# propagating-hammerjs\n\nExtend [hammer.js](https://hammerjs.github.io/) (v2) with event propagation.\n\nWe use the [@egjs/hammerjs](https://www.npmjs.com/package/@egjs/hammerjs) fork because [hammer.js](https://www.npmjs.com/package/hammerjs) is [not maintained anymore](https://github.com/hammerjs/hammer.js/graphs/code-frequency).\n\n## Features\n\n- Events emitted by hammer will propagate in order from child to parent\n  elements.\n- Events are extended with a function `event.stopPropagation()` to stop\n  propagation to parent elements.\n- Events are extended with a property `event.firstTarget` containing the\n  element where a gesture started.\n- Supports changing and rearranging the HTML DOM on the fly.\n- Load via commonjs, AMD, or as a plain old JavaScript file.\n\n## Install\n\n```sh\nnpm install @egjs/hammerjs propagating-hammerjs\n```\n\n## Load\n\n### Browser\n\n```html\n<!DOCTYPE html>\n<html>\n<head>\n  <script src=\"https://unpkg.com/@egjs/hammerjs@latest/dist/hammer.js\"></script>\n  <script src=\"https://unpkg.com/propagating-hammerjs@latest/propagating.js\"></script>\n  <script>\n    function init() {\n      var hammer = propagating(new Hammer(element));\n    }\n  </script>\n</head>\n<body>\n</body>\n</html>\n```\n\n### Commonjs (e.g. Node.js, Browserify)\n\n```js\nvar Hammer = require('@egjs/hammerjs');\nvar propagating = require('propagating-hammerjs');\n\nfunction init() {\n  var hammer = propagating(new Hammer(element));\n}\n```\n\n### ESM (e.g. ES6, typescript)\n\n```typescript\nimport Hammer from '@egjs/hammerjs';\nimport propagating from 'propagating-hammerjs';\n\nfunction init() {\n  const hammer = propagating(new Hammer(element));\n}\n```\n\n## Use\n\nTo extend individual hammer.js instances with event propagation:\n\n```js\nvar hammer = propagating(new Hammer(element));\n```\n\nTo extend the global hammer.js constructor\n\n```js\nHammer = propagating(Hammer);\n```\n\n## Examples\n\nHere a basic usage example.\nMore examples are available in the folder [/examples](./examples/).\n\n```html\n<!DOCTYPE html>\n<html>\n<head>\n  <script src=\"node_modules/@egjs/hammerjs/dist/hammer.js\"></script>\n  <script src=\"node_muludes/propagating-hammerjs/propagating.js\"></script>\n  <style>\n    div     {border: 1px solid black;}\n    #parent {width: 400px; height: 400px; background: lightgreen;}\n    #child  {width: 200px; height: 200px; background: yellow; margin: 10px;}\n  </style>\n</head>\n<body>\n\n<div id=\"parent\">\n  parent\n  <div id=\"child\">\n    child\n  </div>\n</div>\n\n<script>\n  var parent = document.getElementById('parent');\n  var hammer1 = propagating(new Hammer(parent))\n      .on('tap', function (event) {\n        alert('tap on parent');\n      });\n\n  var child = document.getElementById('child');\n  var hammer2 = propagating(new Hammer(child))\n      .on('tap', function (event) {\n        alert('tap on child');\n\n        // stop propagation from child to parent\n        event.stopPropagation();\n      });\n</script>\n</body>\n</html>\n```\n\n## API\n\nConstruction:\n\n```typescript\npropagating(hammer: Hammer.Manager, options?: {\n  preventDefault?: true | 'mouse' | 'touch' | 'pen'\n}): Hammer.Manager\n```\n\n### parameters\n\n- `hammer: Hammer.Manager` An hammer instance or the global hammer constructor.\n\n- `options: Object` An optional object with options. Available options:\n\n  - `preventDefault: true | 'mouse' | 'touch' | 'pen'`. Optional.\n    Enforce preventing the default browser behavior. Cannot be set to `false`.\n\n### returns\n\nReturns the same hammer instance with extended functionality.\n\n### events\n\nThe emitted [hammer.js events](http://hammerjs.github.io/api/#event-object) are\nextended with:\n\n- `event.stopPropagation()`\n\n  If called, the event will not further propagate the elements parents.\n\n- `event.firstTarget`\n\n  Contains the HTML element where a gesture started (where as `event.target`\n  contains the element where the pointer is right now).\n\n## Develop\n\nTo generate the UMD bundle for commonjs and browser, run:\n\n```sh\nnpm run build\n```\n\n## License\n\nMIT\n","repository":{"type":"git","url":"git+https://github.com/josdejong/propagating-hammerjs.git"},"bugs":{"url":"https://github.com/josdejong/propagating-hammerjs/issues"},"license":"MIT","versions":{"2.0.0":{"name":"propagating-hammerjs","version":"2.0.0","description":"Extend hammer.js with event propagation","main":"propagating.js","module":"./src/propagating.js","scripts":{"build":"rollup ./src/propagating.js --file propagating.js --format umd --output.name propagating","prepublishOnly":"npm run build"},"repository":{"type":"git","url":"git+https://github.com/josdejong/propagating-hammerjs.git"},"keywords":["hammerjs","touch","gestures","event","propagation"],"author":{"name":"Jos de Jong"},"license":"MIT","bugs":{"url":"https://github.com/josdejong/propagating-hammerjs/issues"},"homepage":"https://github.com/josdejong/propagating-hammerjs","devDependencies":{"rollup":"^2.29.0"},"peerDependencies":{"@egjs/hammerjs":"^2.0.17"},"gitHead":"2b021c27e98f682a32f6a7f9a5e95ab6d341d4fb","_id":"propagating-hammerjs@2.0.0","_nodeVersion":"14.13.0","_npmVersion":"6.14.8","dist":{"integrity":"sha512-rRI0IneGWrSySa/HVb6LGK/w6KheXs7dNNNliq5vBK6OtOIPU45Bb6kXB4JCrMmdMniGVmiSpt6gP4Bq39XJLQ==","shasum":"4738bceb9954a7012aa1555f442f38f90ddb9e0b","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/propagating-hammerjs/-/propagating-hammerjs-2.0.0.tgz","fileCount":10,"unpackedSize":29291,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfh1V9CRA9TVsSAnZWagAABccP/A7GJTAz3yXEVrNH25dK\nX6DFyj++0yCf+9+/SHv9MD+oEPlBd5qA3nb771Dv3GJnS6gSy4GaFkA6p5iB\nrHBFZXP4MdZ0kUTUEqXDgdBchQQeYk+xP6PG0ubbwLxKw/sJMI0We0sIVMCM\ncEstyKhRiLzUVl67I8qZjV3xTpB2sQqFcO41dWHAvXIAB5LaRF7+W1dc9cp5\nEIUsr+/Rr0wt4kR0sNvcfJdW/lhFEqMmr3i+06z8TSsZDw1F2vVy9z5bFoQK\nP6rxwWBfyAiVzn22PmkgkAtrufr7eBAE/oK9KV3yMIdEthMikGOFDoNVrGCq\nkC1cIBM0Bmhgy7TkowUAzM0VRIuOihYsNfcksMV76fjuea8IcG9Sg9m2k5mU\nWTEddIXnSDuasuvvvOkD2M8TrWZQzwpout3ua9FRNebC6mJg47eY8FGH5CIz\nKyLpfxBZuzR/ny/muLZ0p3nkiFCWukQaKEFGDI1ann7xOgvC9NMkG6+B+CtG\njAqhSwAKwbv3CekzMh4kfDqAG49YiGOm3NQxiDd40pKViJ/OwgPU9+rLj2A7\nI8ZKBifMDljOakKURHEK13++K3WqvEB5388+fS6DBsjZhZ0I8H17uVXpx+eV\nCF2i8eP/iD5E9rWBsJAe+5kSsGYZFoqpQmjmxq0xHc3+JwrHLaOq4KYF5imN\nPFhs\r\n=kv0i\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDO1LbTCcdrckynHD7h17c6iRDbBhoraS/KV/U7ZCmhUQIhAJusAcCZFrKutS2MbH8O+nuNc9pOogxwOB1tXU3u8Q4J"}]},"maintainers":[{"name":"josdejong","email":"wjosdejong@gmail.com"}],"_npmUser":{"name":"josdejong","email":"wjosdejong@gmail.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/propagating-hammerjs_2.0.0_1602704764609_0.6780987557549789"},"_hasShrinkwrap":false},"2.0.1":{"name":"propagating-hammerjs","version":"2.0.1","description":"Extend hammer.js with event propagation","main":"propagating.js","module":"./src/propagating.js","scripts":{"build":"rollup ./src/propagating.js --file propagating.js --format umd --output.name propagating","prepublishOnly":"npm run build"},"repository":{"type":"git","url":"git+https://github.com/josdejong/propagating-hammerjs.git"},"keywords":["hammerjs","touch","gestures","event","propagation"],"author":{"name":"Jos de Jong"},"license":"MIT","bugs":{"url":"https://github.com/josdejong/propagating-hammerjs/issues"},"homepage":"https://github.com/josdejong/propagating-hammerjs","devDependencies":{"rollup":"^2.29.0","@egjs/hammerjs":"^2.0.17"},"peerDependencies":{"@egjs/hammerjs":"^2.0.17"},"gitHead":"d5ec638ddb245f43e6b45058ee3ac814264e0d29","_id":"propagating-hammerjs@2.0.1","_nodeVersion":"14.13.0","_npmVersion":"6.14.8","dist":{"integrity":"sha512-PH3zG5whbSxMocphXJzVtvKr+vWAgfkqVvtuwjSJ/apmEACUoiw6auBAT5HYXpZOR0eGcTAfYG5Yl8h91O5Elg==","shasum":"2ba5d491d8734944cc0ace9ad2ae9660232cde5d","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/propagating-hammerjs/-/propagating-hammerjs-2.0.1.tgz","fileCount":10,"unpackedSize":29430,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfh1c9CRA9TVsSAnZWagAAfYIP/ArjAZ6ONJm5KdUPX+Ac\nPrgD1ubukdzsmGgh1KPQWitToAkMmeK0PeNVSM4nNo2BsI6kOuWR6fb/KQqq\nhdTXfc9jqg9jy4cuHccoCcqrZNHmtIoIh+59E62BqnSBfbNgPsSBG+60VZ7w\n5RLf5QE+XrwXGLYavekgvrV+YLMm1q4fh3AL83nz5p2rU/pWMcCnQGu04m9M\nlbyK8GGHuQNoq4c/I6GuJtY26gJ4SKxd6UT3cj5CfIz55nU2MW1P5swKJn4s\nt+e6i+Fxk08O/zGztFpNd1gDceU5Ay8VTfZvmv/2rJUiF2FTeFF7LUaKpPPw\nEdZ33tn7ejLaKpOG2VTSExJA4lHaGtlUnebQHWEwO+fcl20PvfMUKw+JM1VN\nMrEw3FHVPAyuPJc1u5eDLIu3YrEXPaOSQMVyPePbpLDLJZZ2GQDHn3gyGtsL\nXhQL0wbctt8yL+/t8NPLoTDSkpXDxf7/d5M7J3j6r9C8m1IDeOU99vR2GAxZ\nCYHI127K37R5erTCt1fCG29ti4rdChngrz+SyC+e12JbtD5o6eJ0jzoYfVf5\nf0Ytf4uhiRz5HtB0BKJ5vz8U4fUqkiEEKTrTeUUoR99s6dUHBxjGR3bO5rOL\nHjc1q4xotYQXlPPGX5pVqNZEcL0oS+cTnuwRJHif1KcB1E8LMId6IEIMRXPw\nr8Iz\r\n=wVDI\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQD1Kh7Z03B46KmFDKykjmtdU9FEzU76Spb42QYnaEMVOQIhAOR6qTjNPoycnyr8Llyx6+64e5VDOgNcufihHJkRywAW"}]},"maintainers":[{"name":"josdejong","email":"wjosdejong@gmail.com"}],"_npmUser":{"name":"josdejong","email":"wjosdejong@gmail.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/propagating-hammerjs_2.0.1_1602705213501_0.012852993539163027"},"_hasShrinkwrap":false},"1.4.7":{"name":"propagating-hammerjs","version":"1.4.7","description":"Extend hammer.js with event propagation","main":"propagating.js","scripts":{"test":"echo \"Error: no test specified\" && exit 1"},"repository":{"type":"git","url":"git+https://github.com/josdejong/propagating-hammerjs.git"},"keywords":["hammerjs","touch","gestures","event","propagation"],"author":{"name":"Jos de Jong"},"license":"MIT","bugs":{"url":"https://github.com/josdejong/propagating-hammerjs/issues"},"homepage":"https://github.com/josdejong/propagating-hammerjs","dependencies":{"hammerjs":"^2.0.8"},"gitHead":"7f3beafde9a931a8e65767af9a5b71e3ecf5bf91","_id":"propagating-hammerjs@1.4.7","_nodeVersion":"12.7.0","_npmVersion":"6.10.0","dist":{"integrity":"sha512-oW9Wd+W2Tp5uOz6Fh4mEU7p+FoyU85smLH/mPga83Loh0pHa6AH4ZHGywvwMk3TWP31l7iUsvJyW265p4Ipwrg==","shasum":"671ab1791a7f88b9dccce8fd8b14a9655950e7d6","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/propagating-hammerjs/-/propagating-hammerjs-1.4.7.tgz","fileCount":9,"unpackedSize":21388,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdPAmFCRA9TVsSAnZWagAADtIP+QHMuvOqEoS7g5MrpqJR\nLu9s+kEo6wc2lClQR/rwCkH48/36QG/mPM9jEyrf/ORp+UNl2/m3snwl+lJM\nzkD9HFpSW871hLFSzWoHKSqSl9LOlZCnTq8PKyKO0DvQkhegYa0icfi0f/6P\nNRFeicYuuRqyX8KH+7hVIntKVgtzbW8HSTj/98C2lujJ48TCp+1Gl2RjuYtf\nMPboq+DEkPUdfiA0x1PcKuAWuYtiqPX3RaoCSwcY5ZoebUaDJfPDIF8nEztl\n1pj1PA5uSFhQ70SRkozBHGBstItl+2cuIJzoMDgA0vAHi1xlH1dNfPE29MNP\nGg0/aLU4hRc3/xOkDUUKSADD5CXqXzPk08bKi/kLjHMsWEpcds/X4nhti+i/\nqJ+1SLd4dS052iy3X/K2rexV2+NnfXeiiUnAxs6MJJwf+Eb1pnC2O0MM5O6U\nlF7ixJsBd2mg2EtCNckfWW0tAOAfJLuXs8IMKE8yHSQBMmOz8XVDSkkrxt2s\n0tE/uYxMnN63CNMzOGxC8RtRXDcP1H404nqVV2APurDr0v6TR/9Ad55h+TLA\n50l4V7cu/cu4FpuXiPNbi8tCaBr+R/ZQXPcRUnNKj4iQ0OBsh/hue5lHI+dl\nh0XEBWo6ipMfiw2SwH7/+tey2Kju3NGHtRoqDVCIsOfshRIt4PLe7jhd/Ny5\nDxaT\r\n=szv+\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIDNPuj/slmJ3YM04AelCuCd6n6ruJRF64eHaYFhJTAPRAiEA1kyphY5FGTXFvQ7/DJ/cMXe4h6zQ9e8bmG2ZtE6b0hM="}]},"maintainers":[{"name":"josdejong","email":"wjosdejong@gmail.com"}],"_npmUser":{"name":"josdejong","email":"wjosdejong@gmail.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/propagating-hammerjs_1.4.7_1564215684631_0.7420167207346446"},"_hasShrinkwrap":false},"1.2.1":{"name":"propagating-hammerjs","version":"1.2.1","description":"Extend hammer.js with event propagation","main":"propagating.js","scripts":{"test":"echo \"Error: no test specified\" && exit 1"},"repository":{"type":"git","url":"https://github.com/josdejong/propagating-hammerjs.git"},"keywords":["hammerjs","touch","gestures","event","propagation"],"author":{"name":"Jos de Jong"},"license":"MIT","bugs":{"url":"https://github.com/josdejong/propagating-hammerjs/issues"},"homepage":"https://github.com/josdejong/propagating-hammerjs","dependencies":{"hammerjs":"^2.0.4"},"gitHead":"5ac9249ba4ac12774da44007665fb014297b085f","_id":"propagating-hammerjs@1.2.1","_shasum":"7fd7296a7d37903d0af90a17c4645e3c689abf7e","_from":".","_npmVersion":"1.4.28","_npmUser":{"name":"josdejong","email":"wjosdejong@gmail.com"},"maintainers":[{"name":"josdejong","email":"wjosdejong@gmail.com"}],"dist":{"shasum":"7fd7296a7d37903d0af90a17c4645e3c689abf7e","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/propagating-hammerjs/-/propagating-hammerjs-1.2.1.tgz","integrity":"sha512-GB3ZYBrpQWEjmOB0g6v1GgXv7dOY+Uu1KI/aRNzjFvv9Yjzk7CT7ReobuKnDm+ZOSYJnyseXSHvrjglYY/jQ9w==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIB7FNUqbGuckPvpU1aqOK6z/E3JreVj1dgHcjmyDJReQAiEAyBliNPwiSV027oMiejw4QcjFlYs6DbZDl5Z7D8IQkqQ="}]},"directories":{}},"1.3.0":{"name":"propagating-hammerjs","version":"1.3.0","description":"Extend hammer.js with event propagation","main":"propagating.js","scripts":{"test":"echo \"Error: no test specified\" && exit 1"},"repository":{"type":"git","url":"https://github.com/josdejong/propagating-hammerjs.git"},"keywords":["hammerjs","touch","gestures","event","propagation"],"author":{"name":"Jos de Jong"},"license":"MIT","bugs":{"url":"https://github.com/josdejong/propagating-hammerjs/issues"},"homepage":"https://github.com/josdejong/propagating-hammerjs","dependencies":{"hammerjs":"^2.0.4"},"gitHead":"3fe0263eeb630014efbb2f6c3946af4e8422b3e8","_id":"propagating-hammerjs@1.3.0","_shasum":"a018ecc590df210e56e0c1d845f6013577c4e91e","_from":".","_npmVersion":"1.4.28","_npmUser":{"name":"josdejong","email":"wjosdejong@gmail.com"},"maintainers":[{"name":"josdejong","email":"wjosdejong@gmail.com"}],"dist":{"shasum":"a018ecc590df210e56e0c1d845f6013577c4e91e","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/propagating-hammerjs/-/propagating-hammerjs-1.3.0.tgz","integrity":"sha512-jxULweXMB5CF8YtLjmtLsHL1A/e2qCmwgdj13l8u9Zf3kGsakXs0XV09NFrr/NWUu8MqP8NoSogf6SZ4gvmyJw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIHfWBx2C3vNGb9DUW3Jmwhsg7a+ObZUM/EZ9mMM3VYXYAiEA2juSViIK7CCyJjZ1SsohYTnPxkKpQArXmISyPjgZeTY="}]},"directories":{}},"1.2.2":{"name":"propagating-hammerjs","version":"1.2.2","description":"Extend hammer.js with event propagation","main":"propagating.js","scripts":{"test":"echo \"Error: no test specified\" && exit 1"},"repository":{"type":"git","url":"https://github.com/josdejong/propagating-hammerjs.git"},"keywords":["hammerjs","touch","gestures","event","propagation"],"author":{"name":"Jos de Jong"},"license":"MIT","bugs":{"url":"https://github.com/josdejong/propagating-hammerjs/issues"},"homepage":"https://github.com/josdejong/propagating-hammerjs","dependencies":{"hammerjs":"^2.0.4"},"gitHead":"fe0313ade043332d0e2764078815722d652bb143","_id":"propagating-hammerjs@1.2.2","_shasum":"33e233c6bacde304e2d3a65e7472e25d1cc6028e","_from":".","_npmVersion":"1.4.28","_npmUser":{"name":"josdejong","email":"wjosdejong@gmail.com"},"maintainers":[{"name":"josdejong","email":"wjosdejong@gmail.com"}],"dist":{"shasum":"33e233c6bacde304e2d3a65e7472e25d1cc6028e","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/propagating-hammerjs/-/propagating-hammerjs-1.2.2.tgz","integrity":"sha512-Zg4frZ9zuvh7e3p6PPnWmC05VBI2qKdyZfG+7kByjZFMveQUigtBRxtKJ28TOYp/udYNm7s8Oe5X096ZngMU8w==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQD+Ael/yuv1YAA63f8NFdsJep13A/8RB3PjcEtls6M5hAIhAN8ZJQuaFoHdAvGWwcKDrYLWv1eEhXSjQm5Ci3ljs8mD"}]},"directories":{}},"1.4.0":{"name":"propagating-hammerjs","version":"1.4.0","description":"Extend hammer.js with event propagation","main":"propagating.js","scripts":{"test":"echo \"Error: no test specified\" && exit 1"},"repository":{"type":"git","url":"https://github.com/josdejong/propagating-hammerjs.git"},"keywords":["hammerjs","touch","gestures","event","propagation"],"author":{"name":"Jos de Jong"},"license":"MIT","bugs":{"url":"https://github.com/josdejong/propagating-hammerjs/issues"},"homepage":"https://github.com/josdejong/propagating-hammerjs","dependencies":{"hammerjs":"^2.0.4"},"gitHead":"30e9a043d55fdb31e7c4397021a71b30bee1dcae","_id":"propagating-hammerjs@1.4.0","_shasum":"32c07f1cc2212ca297f08040ab19a50003f7fccb","_from":".","_npmVersion":"1.4.28","_npmUser":{"name":"josdejong","email":"wjosdejong@gmail.com"},"maintainers":[{"name":"josdejong","email":"wjosdejong@gmail.com"}],"dist":{"shasum":"32c07f1cc2212ca297f08040ab19a50003f7fccb","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/propagating-hammerjs/-/propagating-hammerjs-1.4.0.tgz","integrity":"sha512-yuxhL2TQIDPT95bazyJlZkkNXxW7ncRsU7aXZl5aEmnVTRsFZIQONKo1MKJPRtt3zqdtL1N73y+m02l+XFu1Nw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIHIbNWjrQbrHhabGLS1XXDV1XIH2QyyWGda7nuF7L/ZTAiEAmWK+uusLjgtRfuytKzpd6qnGzXopQGtTnxH5niuaR9E="}]},"directories":{}},"1.4.1":{"name":"propagating-hammerjs","version":"1.4.1","description":"Extend hammer.js with event propagation","main":"propagating.js","scripts":{"test":"echo \"Error: no test specified\" && exit 1"},"repository":{"type":"git","url":"https://github.com/josdejong/propagating-hammerjs.git"},"keywords":["hammerjs","touch","gestures","event","propagation"],"author":{"name":"Jos de Jong"},"license":"MIT","bugs":{"url":"https://github.com/josdejong/propagating-hammerjs/issues"},"homepage":"https://github.com/josdejong/propagating-hammerjs","dependencies":{"hammerjs":"^2.0.4"},"gitHead":"09e09633b214384c1942dd4959a5ab99636e2b69","_id":"propagating-hammerjs@1.4.1","_shasum":"1ab2bf17d8d9c73888480a778696cd7d5271ff8b","_from":".","_npmVersion":"1.4.28","_npmUser":{"name":"josdejong","email":"wjosdejong@gmail.com"},"maintainers":[{"name":"josdejong","email":"wjosdejong@gmail.com"}],"dist":{"shasum":"1ab2bf17d8d9c73888480a778696cd7d5271ff8b","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/propagating-hammerjs/-/propagating-hammerjs-1.4.1.tgz","integrity":"sha512-zcSR8VvUGH2QgIy9lPKVabkYwVx6JXlQuO/uOji+HVVem65p0JYC3y+DWdNlPwLdJdsQn+9B1BIm9tvRUaT06A==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIDawwaCvfOnO2MrZTEGUleBgKO7Cl5dFIMtrPWf3PH48AiEA5Cgj2quyDjevUp7YJFRgfS2Z6w2AjBxaeQo/QDQe5bo="}]},"directories":{}},"1.5.0":{"name":"propagating-hammerjs","version":"1.5.0","description":"Extend hammer.js with event propagation","main":"propagating.js","module":"./src/propagating.js","scripts":{"build":"rollup ./src/propagating.js --file propagating.js --format umd --output.name propagating","prepublishOnly":"npm run build"},"repository":{"type":"git","url":"git+https://github.com/josdejong/propagating-hammerjs.git"},"keywords":["hammerjs","touch","gestures","event","propagation"],"author":{"name":"Jos de Jong"},"license":"MIT","bugs":{"url":"https://github.com/josdejong/propagating-hammerjs/issues"},"homepage":"https://github.com/josdejong/propagating-hammerjs","devDependencies":{"rollup":"^2.29.0"},"dependencies":{"hammerjs":"^2.0.8"},"gitHead":"5c938654ef848b797a6a97688ab22efeb22e070c","_id":"propagating-hammerjs@1.5.0","_nodeVersion":"14.13.0","_npmVersion":"6.14.8","dist":{"integrity":"sha512-3PUXWmomwutoZfydC+lJwK1bKCh6sK6jZGB31RUX6+4EXzsbkDZrK4/sVR7gBrvJaEIwpTVyxQUAd29FKkmVdw==","shasum":"223d58465489b64879fb0cef2c99ba92b294c239","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/propagating-hammerjs/-/propagating-hammerjs-1.5.0.tgz","fileCount":10,"unpackedSize":28700,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJfh0FNCRA9TVsSAnZWagAA7v8P/jsR82yd08DQfH33dtXL\nKsRER7vvvtFo5ooXHecZz01DbH+DrlPyXOv9v9o2hwY0/y1nFmZtJypPv9vv\nnhrmq257zfXf8m0B/dwi3HuYFpNe+1EYnyDiyeyVKF6rifeKau0hY8GELAhX\naSBLrsPZWZEOCvvRmEzW8KIrM4znJrSRUmN8LFTk2mkQqKmFuRR5zyoo5v+r\n7mNSGBudCY5Z0ENtGA2630T2jYLdIrfDkqJZxlU/8NQ20abbb9415SLbS9yx\nacMQO5YNSWyuUDgLyRLelkTaUPp/0X7e68jsFVltelFf1pFeW/WZHQHNLgBg\nXUIUUTLLlR2yPcoFgLB+vZ1iopksyjcUUw25V3B5vN9ZmIIFQQdc90mA3jtP\nLGeo3Q04YhuiFhsmkHJlw00SeNAzZbnMW6R10YRyu3lCAcJ++AatXDJBSr7q\nNaecb3oDKKkgQG6zkvEhYfrNTbwCq/OeFdnTkQzCnoor4MDtJPtCQrAgUyRT\nf0YBsQUj3jQYzfdFFgu0iL1DL2oVUCttIUZvp4TUvDr72oxaiDLx4Zu58MSs\nEzVNYXBUY3lq6jaiGubh9cFY1XWROcBNNASQ7DBZX30Q9fOnfY2nupJeKmqj\neRqLZ574yvA/O2VVtweHKdaMs9V5w+IxZAig55MCDfhDy9Coxo1PhgjX4AUS\nAO/8\r\n=uleO\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIBimESg1vtGOqIaQAYCk4EGrh32LfyiyyP5KlTm/BQNQAiEA67PekRmIgM06PI83IB8/ucnS2bON6r60Fg54bM05bqQ="}]},"maintainers":[{"name":"josdejong","email":"wjosdejong@gmail.com"}],"_npmUser":{"name":"josdejong","email":"wjosdejong@gmail.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/propagating-hammerjs_1.5.0_1602699597444_0.6479720702878331"},"_hasShrinkwrap":false},"1.4.2":{"name":"propagating-hammerjs","version":"1.4.2","description":"Extend hammer.js with event propagation","main":"propagating.js","scripts":{"test":"echo \"Error: no test specified\" && exit 1"},"repository":{"type":"git","url":"https://github.com/josdejong/propagating-hammerjs.git"},"keywords":["hammerjs","touch","gestures","event","propagation"],"author":{"name":"Jos de Jong"},"license":"MIT","bugs":{"url":"https://github.com/josdejong/propagating-hammerjs/issues"},"homepage":"https://github.com/josdejong/propagating-hammerjs","dependencies":{"hammerjs":"^2.0.4"},"gitHead":"386acbad7e9240f9d372d9e25e84bd99d99301cf","_id":"propagating-hammerjs@1.4.2","_shasum":"6d13fa2b63354b1299589f130e97c0ca0c37115b","_from":".","_npmVersion":"1.4.28","_npmUser":{"name":"josdejong","email":"wjosdejong@gmail.com"},"maintainers":[{"name":"josdejong","email":"wjosdejong@gmail.com"}],"dist":{"shasum":"6d13fa2b63354b1299589f130e97c0ca0c37115b","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/propagating-hammerjs/-/propagating-hammerjs-1.4.2.tgz","integrity":"sha512-XNH6mOXH/FcOUkpHxW+3OVzO+yuTkMvl7AZSssYvT55XJ1g72s6xmb57o8USIJp4ReiW4LIEq7uzzh8MqMmHzQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIGbtvIVfm0FUfdxl3XIbBg7T6jmYQmM9Q9dHP/ZqhUgYAiEA9w1ExFpU7aA8JO5sgkj+Mel2r8F2YIK2olJozFJs7yo="}]},"directories":{}},"3.0.0":{"name":"propagating-hammerjs","version":"3.0.0","description":"Extend hammer.js with event propagation","main":"propagating.js","module":"./src/propagating.js","scripts":{"build":"rollup ./src/propagating.js --file propagating.js --format umd --output.name propagating","prepublishOnly":"npm run build"},"repository":{"type":"git","url":"git+https://github.com/josdejong/propagating-hammerjs.git"},"keywords":["hammerjs","touch","gestures","event","propagation"],"author":{"name":"Jos de Jong"},"license":"MIT","bugs":{"url":"https://github.com/josdejong/propagating-hammerjs/issues"},"homepage":"https://github.com/josdejong/propagating-hammerjs","devDependencies":{"rollup":"^4.9.6","@egjs/hammerjs":"^2.0.17"},"peerDependencies":{"@egjs/hammerjs":"^2.0.17"},"_id":"propagating-hammerjs@3.0.0","gitHead":"94e7b6aef667e9eb9a6012367e1f495655244f6f","_nodeVersion":"20.5.0","_npmVersion":"9.8.0","dist":{"integrity":"sha512-FJTclGll0ysatpF9rKO4jwobyaVDitPb0g/bGlufqqtXPQX8mxf8IXilnIK2iYRMPkVlYeFNhPTrspF9CM1stg==","shasum":"47c644e38340eb4e8aa87e55ee5ddbc8f9982566","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/propagating-hammerjs/-/propagating-hammerjs-3.0.0.tgz","fileCount":10,"unpackedSize":29694,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIGt+tlTMewzCiVgyGP5oJhk5LsxfNxfpbsvftyvj3t5+AiEAs4+D0VCNLIkaIiQCWZZOdskYQpgWbOqTqXu/SgDJZ9E="}]},"_npmUser":{"name":"josdejong","email":"wjosdejong@gmail.com"},"directories":{},"maintainers":[{"name":"josdejong","email":"wjosdejong@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/propagating-hammerjs_3.0.0_1706171577748_0.6469171662669115"},"_hasShrinkwrap":false},"1.4.3":{"name":"propagating-hammerjs","version":"1.4.3","description":"Extend hammer.js with event propagation","main":"propagating.js","scripts":{"test":"echo \"Error: no test specified\" && exit 1"},"repository":{"type":"git","url":"https://github.com/josdejong/propagating-hammerjs.git"},"keywords":["hammerjs","touch","gestures","event","propagation"],"author":{"name":"Jos de Jong"},"license":"MIT","bugs":{"url":"https://github.com/josdejong/propagating-hammerjs/issues"},"homepage":"https://github.com/josdejong/propagating-hammerjs","dependencies":{"hammerjs":"^2.0.4"},"gitHead":"18c2c0ea072af99d6752894772d14e8645f4205b","_id":"propagating-hammerjs@1.4.3","_shasum":"41e2ad26a2c77b9129b2ff6880110bb018e9348c","_from":".","_npmVersion":"1.4.28","_npmUser":{"name":"josdejong","email":"wjosdejong@gmail.com"},"maintainers":[{"name":"josdejong","email":"wjosdejong@gmail.com"}],"dist":{"shasum":"41e2ad26a2c77b9129b2ff6880110bb018e9348c","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/propagating-hammerjs/-/propagating-hammerjs-1.4.3.tgz","integrity":"sha512-fAQnZGiA+A7GukzAXt/x+W+T6cGcWM5kOcS4g8F5p29hiNd0u1x2o3ZaQ8Ta9BGc33n2V/PU/JeaZX+P/TFBfA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIC1wx0rT/+6Aar4jpWHxS5UF/mZ4UynfsdHTd7C36hV/AiEA7ceB0uheohmJorHlNPLEshXPYKQAiRiJ0ha8GPi3Pmk="}]},"directories":{}},"1.4.4":{"name":"propagating-hammerjs","version":"1.4.4","description":"Extend hammer.js with event propagation","main":"propagating.js","scripts":{"test":"echo \"Error: no test specified\" && exit 1"},"repository":{"type":"git","url":"git+https://github.com/josdejong/propagating-hammerjs.git"},"keywords":["hammerjs","touch","gestures","event","propagation"],"author":{"name":"Jos de Jong"},"license":"MIT","bugs":{"url":"https://github.com/josdejong/propagating-hammerjs/issues"},"homepage":"https://github.com/josdejong/propagating-hammerjs","dependencies":{"hammerjs":"^2.0.6"},"gitHead":"46907363120c17d7c24acee08f98f24e81052630","_id":"propagating-hammerjs@1.4.4","_shasum":"fb7491de4f9f21d0bcb0e981986b307e7d6c0ce6","_from":".","_npmVersion":"2.14.12","_nodeVersion":"4.2.4","_npmUser":{"name":"josdejong","email":"wjosdejong@gmail.com"},"dist":{"shasum":"fb7491de4f9f21d0bcb0e981986b307e7d6c0ce6","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/propagating-hammerjs/-/propagating-hammerjs-1.4.4.tgz","integrity":"sha512-YilQhUdXNj3Bv63tlQWpDERQnpcQ+0307B/xlq7Ecju64W2JWld60ZAxuPcC8WESoFjcSyaHFzB4x5cBBDOAtA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDAzA9TtlB/NsL6cuDLC5Rf0nkfMXlfSBuBwRUAz6tHJwIhAOEHsdUgAy/2n8pdBmPSJoCFramuM8p9kK/+WiFTDflB"}]},"maintainers":[{"name":"josdejong","email":"wjosdejong@gmail.com"}],"directories":{}},"1.4.5":{"name":"propagating-hammerjs","version":"1.4.5","description":"Extend hammer.js with event propagation","main":"propagating.js","scripts":{"test":"echo \"Error: no test specified\" && exit 1"},"repository":{"type":"git","url":"git+https://github.com/josdejong/propagating-hammerjs.git"},"keywords":["hammerjs","touch","gestures","event","propagation"],"author":{"name":"Jos de Jong"},"license":"MIT","bugs":{"url":"https://github.com/josdejong/propagating-hammerjs/issues"},"homepage":"https://github.com/josdejong/propagating-hammerjs","dependencies":{"hammerjs":"^2.0.6"},"gitHead":"b6956ab6ac40e026e8de96f41de39b705d25ab2c","_id":"propagating-hammerjs@1.4.5","_shasum":"6d0a6a1eeb9d2f5b9ccc229faf6039a67e18f990","_from":".","_npmVersion":"3.3.12","_nodeVersion":"5.4.0","_npmUser":{"name":"josdejong","email":"wjosdejong@gmail.com"},"dist":{"shasum":"6d0a6a1eeb9d2f5b9ccc229faf6039a67e18f990","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/propagating-hammerjs/-/propagating-hammerjs-1.4.5.tgz","integrity":"sha512-2KD9+tz9vJ40Uev8aOcGb4/2TT15//G0W1nzuZlI+2/PFtE+xJUo5RkihLfuwkUNkZGVrbxRR4BWiIieeW341w==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIHfaqK8Sk9R5/f4atg7QLBPsF6qaphcLs0xJZKk6nhISAiALDh5AoHnX0TcwP3Pnnv6UZmC7r3vj4f8Q66BikGHp9A=="}]},"maintainers":[{"name":"josdejong","email":"wjosdejong@gmail.com"}],"directories":{}},"1.4.6":{"name":"propagating-hammerjs","version":"1.4.6","description":"Extend hammer.js with event propagation","main":"propagating.js","scripts":{"test":"echo \"Error: no test specified\" && exit 1"},"repository":{"type":"git","url":"git+https://github.com/josdejong/propagating-hammerjs.git"},"keywords":["hammerjs","touch","gestures","event","propagation"],"author":{"name":"Jos de Jong"},"license":"MIT","bugs":{"url":"https://github.com/josdejong/propagating-hammerjs/issues"},"homepage":"https://github.com/josdejong/propagating-hammerjs","dependencies":{"hammerjs":"^2.0.6"},"gitHead":"c85b62ac18851ad3f73b2cc429aaed9d17406d06","_id":"propagating-hammerjs@1.4.6","_shasum":"fed00e9b00767ffd42d14f5b531bc493eb672e37","_from":".","_npmVersion":"3.6.0","_nodeVersion":"5.7.1","_npmUser":{"name":"josdejong","email":"wjosdejong@gmail.com"},"dist":{"shasum":"fed00e9b00767ffd42d14f5b531bc493eb672e37","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/propagating-hammerjs/-/propagating-hammerjs-1.4.6.tgz","integrity":"sha512-AfNb5zskXxxhHx9msjt+CVR5GfsFKvMSp1rl7P/P1pPC3NBbWlXIddfLmHpySX2Tru9hSnXRp1YZm4bY9TxyAg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDn+t+P18StQEJg7MkkOlzCKXYTrTflvdvvtouXPprNMwIhAJHwJprGUHwGtjb0V9Tycd8ysGQVKgNiqSOlCMwSuNGl"}]},"maintainers":[{"name":"josdejong","email":"wjosdejong@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/propagating-hammerjs-1.4.6.tgz_1457169834503_0.6200259372126311"},"directories":{}},"1.0.0":{"name":"propagating-hammerjs","version":"1.0.0","description":"Extend hammer.js with event propagation","main":"propagating.js","scripts":{"test":"echo \"Error: no test specified\" && exit 1"},"repository":{"type":"git","url":"https://github.com/josdejong/propagating-hammerjs.git"},"keywords":["hammerjs","touch","gestures","event","propagation"],"author":{"name":"Jos de Jong"},"license":"MIT","bugs":{"url":"https://github.com/josdejong/propagating-hammerjs/issues"},"homepage":"https://github.com/josdejong/propagating-hammerjs","dependencies":{"hammerjs":"^2.0.4"},"gitHead":"91d400a043e8a6d40dd58400fa8c748646c8f9b7","_id":"propagating-hammerjs@1.0.0","_shasum":"c4e9f4bdb22909dbfc324e61fc1a0b7f37e1b3be","_from":".","_npmVersion":"1.4.28","_npmUser":{"name":"josdejong","email":"wjosdejong@gmail.com"},"maintainers":[{"name":"josdejong","email":"wjosdejong@gmail.com"}],"dist":{"shasum":"c4e9f4bdb22909dbfc324e61fc1a0b7f37e1b3be","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/propagating-hammerjs/-/propagating-hammerjs-1.0.0.tgz","integrity":"sha512-egy9jdoa8942YKTzcuwBdYPRe7ZJhodZ0y6sOYwu8fhDPU99jwU8McCNdZ+HkbPSbIg/0iAJjhRzJyLN9j3Z0Q==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCICcGilb+EAWFU94L1IpkyWWNEjo+5BeFjoHQ+41WAsK1AiB4ocKFYkmSF/air7PtWTxHcQmkrnhDhB/+Hdq3ZelE2w=="}]},"directories":{}},"1.1.0":{"name":"propagating-hammerjs","version":"1.1.0","description":"Extend hammer.js with event propagation","main":"propagating.js","scripts":{"test":"echo \"Error: no test specified\" && exit 1"},"repository":{"type":"git","url":"https://github.com/josdejong/propagating-hammerjs.git"},"keywords":["hammerjs","touch","gestures","event","propagation"],"author":{"name":"Jos de Jong"},"license":"MIT","bugs":{"url":"https://github.com/josdejong/propagating-hammerjs/issues"},"homepage":"https://github.com/josdejong/propagating-hammerjs","dependencies":{"hammerjs":"^2.0.4"},"gitHead":"9c34d065e0acb5fd833d497a9f73b40dd5cbf9f2","_id":"propagating-hammerjs@1.1.0","_shasum":"31181d8ed0957770d3f4c412d47bfb0cf3c9fa57","_from":".","_npmVersion":"1.4.28","_npmUser":{"name":"josdejong","email":"wjosdejong@gmail.com"},"maintainers":[{"name":"josdejong","email":"wjosdejong@gmail.com"}],"dist":{"shasum":"31181d8ed0957770d3f4c412d47bfb0cf3c9fa57","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/propagating-hammerjs/-/propagating-hammerjs-1.1.0.tgz","integrity":"sha512-VgokQPeGgfriphsO10jObIZ2y+AV74wdxQRmsoGOu2an3QehpoV6L0V7vATUVL1go+gPSE/Vxmh98b/wkP3x4g==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDknVT8+1p1ykcWRH1veynwSkcHtNC5mDHU2s6IcImgUAIhAPqRB3LE0rkZFr7NzQ2uJVCbLXXAlBoiUNKcpHM1cCHU"}]},"directories":{}},"1.1.1":{"name":"propagating-hammerjs","version":"1.1.1","description":"Extend hammer.js with event propagation","main":"propagating.js","scripts":{"test":"echo \"Error: no test specified\" && exit 1"},"repository":{"type":"git","url":"https://github.com/josdejong/propagating-hammerjs.git"},"keywords":["hammerjs","touch","gestures","event","propagation"],"author":{"name":"Jos de Jong"},"license":"MIT","bugs":{"url":"https://github.com/josdejong/propagating-hammerjs/issues"},"homepage":"https://github.com/josdejong/propagating-hammerjs","dependencies":{"hammerjs":"^2.0.4"},"gitHead":"06f5e9987e4a97fb20e83bc8d37aee69794f35a4","_id":"propagating-hammerjs@1.1.1","_shasum":"537a47b6b78d5680fd7fde67b56a9826baf8c70f","_from":".","_npmVersion":"1.4.28","_npmUser":{"name":"josdejong","email":"wjosdejong@gmail.com"},"maintainers":[{"name":"josdejong","email":"wjosdejong@gmail.com"}],"dist":{"shasum":"537a47b6b78d5680fd7fde67b56a9826baf8c70f","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/propagating-hammerjs/-/propagating-hammerjs-1.1.1.tgz","integrity":"sha512-BbfQ7XyEgFY5cQbz23SdGeLYWlE9xqO8/ItSUdyX4rFLXWd6wXqXoanDLptUQRinhwI9FTz7iKhPwYUR/5YbuA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCVwOo3GyI/SXHhAFCmKHNK5vyUmfe8Y06ENbOHWFAXwAIgY6AVtr0jVqBxGcxfAz75eP6de90UeTZ3DMfVofFRRxo="}]},"directories":{}},"1.2.0":{"name":"propagating-hammerjs","version":"1.2.0","description":"Extend hammer.js with event propagation","main":"propagating.js","scripts":{"test":"echo \"Error: no test specified\" && exit 1"},"repository":{"type":"git","url":"https://github.com/josdejong/propagating-hammerjs.git"},"keywords":["hammerjs","touch","gestures","event","propagation"],"author":{"name":"Jos de Jong"},"license":"MIT","bugs":{"url":"https://github.com/josdejong/propagating-hammerjs/issues"},"homepage":"https://github.com/josdejong/propagating-hammerjs","dependencies":{"hammerjs":"^2.0.4"},"gitHead":"9ebd27c95604f51ecfaf01952a8f20ff3cfb6db3","_id":"propagating-hammerjs@1.2.0","_shasum":"db9227c8cebfa57a70277766ae9b985d3a8c4089","_from":".","_npmVersion":"1.4.28","_npmUser":{"name":"josdejong","email":"wjosdejong@gmail.com"},"maintainers":[{"name":"josdejong","email":"wjosdejong@gmail.com"}],"dist":{"shasum":"db9227c8cebfa57a70277766ae9b985d3a8c4089","tarball":"https://nexus.nspop.dk/nexus/repository/nsp-npm/propagating-hammerjs/-/propagating-hammerjs-1.2.0.tgz","integrity":"sha512-2Ue7DEUXGsWJAPdHnqiIKuNjIe8CKi4rByzwg1z5kAbXcFtPGm5xq9XO0l7Pq+4no0TX3S8h7niWo62nRT6HhQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQC9os/Lf6gAGMTZc95qZO4Ko0TK3YfYPOjaSeiVzcnV+gIhAPgoRi/4v1+l/lfUI6gDtGoLc+I990/qRcVbP0HemqGW"}]},"directories":{}}},"name":"propagating-hammerjs","time":{"2.0.0":"2020-10-14T19:46:04.747Z","2.0.1":"2020-10-14T19:53:33.646Z","created":"2014-12-30T15:26:57.397Z","1.4.7":"2019-07-27T08:21:24.732Z","1.2.1":"2015-01-29T10:56:22.534Z","1.3.0":"2015-04-14T12:33:48.985Z","1.2.2":"2015-02-09T13:05:18.438Z","1.4.0":"2015-04-17T09:48:32.261Z","1.4.1":"2015-04-20T09:59:05.571Z","1.5.0":"2020-10-14T18:19:57.569Z","1.4.2":"2015-06-02T13:35:30.605Z","3.0.0":"2024-01-25T08:32:57.924Z","1.4.3":"2015-06-04T10:40:30.887Z","1.4.4":"2016-01-04T14:43:47.614Z","1.4.5":"2016-01-13T10:17:41.948Z","1.4.6":"2016-03-05T09:23:57.468Z","modified":"2025-05-07T15:10:51.713Z","1.0.0":"2014-12-30T15:26:57.397Z","1.1.0":"2014-12-30T16:05:55.838Z","1.1.1":"2015-01-02T08:42:16.777Z","1.2.0":"2015-01-05T09:17:12.740Z"},"readmeFilename":"README.md","homepage":"https://github.com/josdejong/propagating-hammerjs"}