├── .eslintrc ├── .gitignore ├── .travis.yml ├── CHANGELOG.md ├── LICENSE ├── README.md ├── jest.config.js ├── package.json ├── repo-analyzer.png └── src ├── elastic.js ├── index.js └── reporters.js /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feedzai/repo-analyzer/HEAD/.eslintrc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feedzai/repo-analyzer/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feedzai/repo-analyzer/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feedzai/repo-analyzer/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feedzai/repo-analyzer/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feedzai/repo-analyzer/HEAD/README.md -------------------------------------------------------------------------------- /jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feedzai/repo-analyzer/HEAD/jest.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feedzai/repo-analyzer/HEAD/package.json -------------------------------------------------------------------------------- /repo-analyzer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feedzai/repo-analyzer/HEAD/repo-analyzer.png -------------------------------------------------------------------------------- /src/elastic.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feedzai/repo-analyzer/HEAD/src/elastic.js -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feedzai/repo-analyzer/HEAD/src/index.js -------------------------------------------------------------------------------- /src/reporters.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feedzai/repo-analyzer/HEAD/src/reporters.js --------------------------------------------------------------------------------