gitextract_25sgzoeb/ ├── .brackets.json ├── .editorconfig ├── .eslintrc.yml ├── .gitattributes ├── .github/ │ ├── funding.yml │ └── workflows/ │ └── ci.yml ├── .gitignore ├── .npmignore ├── .npmrc ├── LICENSE ├── README.md ├── bin/ │ └── on_failure.sh ├── build/ │ ├── .eslintrc.yml │ ├── build.js │ └── serve.js ├── fixtures/ │ ├── debug.html │ ├── page.browserify.html │ ├── page.html │ ├── page.minified.html │ └── page.module.html ├── index.html ├── package.json ├── src/ │ └── confetti.js └── test/ ├── .eslintrc.yml ├── index.test.js └── ssr.test.js