gitextract_0s2q98dy/ ├── .babelrc ├── .editorconfig ├── .eslintrc.json ├── .gitignore ├── .npmignore ├── .travis.yml ├── README.md ├── ava.config.js ├── examples/ │ ├── browser/ │ │ ├── .babelrc │ │ ├── .gitignore │ │ ├── index.html │ │ ├── index.js │ │ ├── package.json │ │ └── webpack.config.js │ ├── browser-media-ajax/ │ │ ├── .babelrc │ │ ├── .gitignore │ │ ├── index.html │ │ ├── index.js │ │ ├── package.json │ │ └── webpack.config.js │ ├── browser-media-file-input/ │ │ ├── .babelrc │ │ ├── .gitignore │ │ ├── index.html │ │ ├── index.js │ │ ├── package.json │ │ └── webpack.config.js │ └── server/ │ └── server.js ├── husky.config.js ├── package.json ├── src/ │ ├── exporter.js │ ├── index.js │ └── template.js ├── templates/ │ └── template.sql └── test/ ├── _helpers.js ├── exporter.js ├── fixtures/ │ └── output.apkg └── test.js