gitextract_o2bcdwhj/ ├── .editorconfig ├── .gitignore ├── .npmrc ├── .travis.yml ├── cli/ │ ├── index.js │ └── scripts/ │ ├── create.js │ ├── log.js │ ├── manager.js │ └── template.js ├── docs/ │ ├── CNAME │ ├── assets/ │ │ ├── css/ │ │ │ └── main.css │ │ └── favicons/ │ │ ├── browserconfig.xml │ │ └── site.webmanifest │ └── index.html ├── license.md ├── package.json ├── readme.md ├── templates/ │ ├── js/ │ │ ├── _babelrc │ │ ├── _editorconfig │ │ ├── _gitignore │ │ ├── _npmrc │ │ ├── _package │ │ ├── example/ │ │ │ └── index.html │ │ ├── license.md │ │ ├── readme.md │ │ ├── rollup.config.js │ │ └── src/ │ │ ├── main.js │ │ ├── my-library.js │ │ └── my-library.test.js │ └── ts/ │ ├── _babelrc │ ├── _editorconfig │ ├── _gitignore │ ├── _npmrc │ ├── _package │ ├── example/ │ │ └── index.html │ ├── license.md │ ├── readme.md │ ├── rollup.config.js │ ├── src/ │ │ ├── main.ts │ │ ├── my-library.test.ts │ │ └── my-library.ts │ ├── tsconfig.app.json │ └── tsconfig.json └── tests/ └── index.test.js