├── .gitignore ├── LICENSE ├── README.md ├── contrib ├── demo.gif ├── normal.png └── screenshot.png ├── package.json ├── src └── app.coffee └── tests └── tests.coffee /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | node_modules/ 3 | build/*.js 4 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuducos/UOLEsportesSexista/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuducos/UOLEsportesSexista/HEAD/README.md -------------------------------------------------------------------------------- /contrib/demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuducos/UOLEsportesSexista/HEAD/contrib/demo.gif -------------------------------------------------------------------------------- /contrib/normal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuducos/UOLEsportesSexista/HEAD/contrib/normal.png -------------------------------------------------------------------------------- /contrib/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuducos/UOLEsportesSexista/HEAD/contrib/screenshot.png -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuducos/UOLEsportesSexista/HEAD/package.json -------------------------------------------------------------------------------- /src/app.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuducos/UOLEsportesSexista/HEAD/src/app.coffee -------------------------------------------------------------------------------- /tests/tests.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/cuducos/UOLEsportesSexista/HEAD/tests/tests.coffee --------------------------------------------------------------------------------