gitextract_x7598i5z/ ├── .editorconfig ├── .github/ │ ├── ISSUE_TEMPLATE/ │ │ ├── bug_report.yml │ │ ├── config.yml │ │ └── feature_request.yml │ └── ISSUE_TEMPLATE.md ├── .gitignore ├── .nvmrc ├── LICENSE ├── README.md ├── angular.json ├── browserslist ├── e2e/ │ ├── protractor.conf.js │ ├── src/ │ │ ├── app.e2e-spec.ts │ │ └── app.po.ts │ └── tsconfig.e2e.json ├── package.json ├── projects/ │ └── ngx-filepond/ │ ├── README.md │ ├── ng-package.json │ ├── package.json │ ├── src/ │ │ ├── lib/ │ │ │ ├── ngx-filepond.component.css │ │ │ ├── ngx-filepond.component.html │ │ │ ├── ngx-filepond.component.spec.ts │ │ │ ├── ngx-filepond.component.ts │ │ │ └── ngx-filepond.module.ts │ │ └── public-api.ts │ ├── tsconfig.lib.json │ ├── tsconfig.lib.prod.json │ └── tsconfig.spec.json ├── tsconfig.json └── tslint.json