├── .babelrc ├── .eslintignore ├── .eslintrc.js ├── .gitignore ├── .npmignore ├── .size-limit ├── .travis.yml ├── CHANGELOG.md ├── LICENSE ├── README.md ├── package.json ├── prettier.config.js ├── rollup.config.js ├── src ├── index.js ├── index.test.js └── supports.js ├── test ├── createDOM.js ├── mocha.opts └── setup.js └── yarn.lock /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oliviertassinari/react-event-listener/HEAD/.babelrc -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | dist/ 3 | -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oliviertassinari/react-event-listener/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oliviertassinari/react-event-listener/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oliviertassinari/react-event-listener/HEAD/.npmignore -------------------------------------------------------------------------------- /.size-limit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oliviertassinari/react-event-listener/HEAD/.size-limit -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oliviertassinari/react-event-listener/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oliviertassinari/react-event-listener/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oliviertassinari/react-event-listener/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oliviertassinari/react-event-listener/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oliviertassinari/react-event-listener/HEAD/package.json -------------------------------------------------------------------------------- /prettier.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oliviertassinari/react-event-listener/HEAD/prettier.config.js -------------------------------------------------------------------------------- /rollup.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oliviertassinari/react-event-listener/HEAD/rollup.config.js -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oliviertassinari/react-event-listener/HEAD/src/index.js -------------------------------------------------------------------------------- /src/index.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oliviertassinari/react-event-listener/HEAD/src/index.test.js -------------------------------------------------------------------------------- /src/supports.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oliviertassinari/react-event-listener/HEAD/src/supports.js -------------------------------------------------------------------------------- /test/createDOM.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oliviertassinari/react-event-listener/HEAD/test/createDOM.js -------------------------------------------------------------------------------- /test/mocha.opts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oliviertassinari/react-event-listener/HEAD/test/mocha.opts -------------------------------------------------------------------------------- /test/setup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oliviertassinari/react-event-listener/HEAD/test/setup.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oliviertassinari/react-event-listener/HEAD/yarn.lock --------------------------------------------------------------------------------