gitextract_bco3m_wf/ ├── .gitignore ├── .npmignore ├── .travis.yml ├── LICENSE ├── README.md ├── _config.yml ├── example/ │ ├── app/ │ │ ├── app.component.css │ │ ├── app.component.html │ │ ├── app.component.ts │ │ ├── app.module.ts │ │ └── index.ts │ ├── index.html │ ├── tsconfig.json │ └── webpack.config.js ├── jest.config.js ├── ng-package.json ├── package.json ├── public_api.ts ├── puppeteer_environment.js ├── setup.js ├── src/ │ ├── index.ts │ ├── popper-content.css │ ├── popper-content.ts │ ├── popper-directive.ts │ ├── popper-model.ts │ └── popper.module.ts ├── teardown.js ├── test/ │ ├── __tests__/ │ │ └── basic.test.js │ ├── app/ │ │ ├── app.component.css │ │ ├── app.component.html │ │ ├── app.component.ts │ │ ├── app.module.ts │ │ └── index.ts │ ├── index.html │ ├── tsconfig.json │ ├── utils.js │ └── webpack.config.js └── tsconfig.json