├── .gitignore ├── .npmignore ├── .travis.yml ├── LICENSE ├── README.MD ├── index.ts ├── package.json ├── src ├── owl-carousel.component.ts └── owl-child.component.ts ├── tsconfig.json └── tslint.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mujtaba01/ngx-owl-carousel/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mujtaba01/ngx-owl-carousel/HEAD/.npmignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mujtaba01/ngx-owl-carousel/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mujtaba01/ngx-owl-carousel/HEAD/LICENSE -------------------------------------------------------------------------------- /README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mujtaba01/ngx-owl-carousel/HEAD/README.MD -------------------------------------------------------------------------------- /index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mujtaba01/ngx-owl-carousel/HEAD/index.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mujtaba01/ngx-owl-carousel/HEAD/package.json -------------------------------------------------------------------------------- /src/owl-carousel.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mujtaba01/ngx-owl-carousel/HEAD/src/owl-carousel.component.ts -------------------------------------------------------------------------------- /src/owl-child.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mujtaba01/ngx-owl-carousel/HEAD/src/owl-child.component.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mujtaba01/ngx-owl-carousel/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mujtaba01/ngx-owl-carousel/HEAD/tslint.json --------------------------------------------------------------------------------