├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md ├── package.json ├── src └── index.js └── test ├── movies.js └── theaters.js /.gitignore: -------------------------------------------------------------------------------- 1 | npm-debug.log 2 | node_modules/ 3 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erunion/showtimes/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erunion/showtimes/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erunion/showtimes/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erunion/showtimes/HEAD/package.json -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erunion/showtimes/HEAD/src/index.js -------------------------------------------------------------------------------- /test/movies.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erunion/showtimes/HEAD/test/movies.js -------------------------------------------------------------------------------- /test/theaters.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/erunion/showtimes/HEAD/test/theaters.js --------------------------------------------------------------------------------