├── .babelrc ├── .editorconfig ├── .github └── demo.gif ├── .gitignore ├── .npmignore ├── LICENSE ├── README.md ├── package.json └── src ├── index.js └── passandoNaTv.js /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipemfp/passando-na-tv/HEAD/.babelrc -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipemfp/passando-na-tv/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipemfp/passando-na-tv/HEAD/.github/demo.gif -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipemfp/passando-na-tv/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | src/ 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipemfp/passando-na-tv/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipemfp/passando-na-tv/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipemfp/passando-na-tv/HEAD/package.json -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipemfp/passando-na-tv/HEAD/src/index.js -------------------------------------------------------------------------------- /src/passandoNaTv.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/felipemfp/passando-na-tv/HEAD/src/passandoNaTv.js --------------------------------------------------------------------------------