├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md ├── example.js ├── package.json ├── reviews.json └── tests └── reviews.test.js /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nas5w/imdb-data/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nas5w/imdb-data/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nas5w/imdb-data/HEAD/README.md -------------------------------------------------------------------------------- /example.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nas5w/imdb-data/HEAD/example.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nas5w/imdb-data/HEAD/package.json -------------------------------------------------------------------------------- /reviews.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nas5w/imdb-data/HEAD/reviews.json -------------------------------------------------------------------------------- /tests/reviews.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nas5w/imdb-data/HEAD/tests/reviews.test.js --------------------------------------------------------------------------------