├── .gitignore ├── LICENSE ├── README.md ├── index.js ├── package.json └── src ├── Core └── Core.js └── Github └── Github.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gruppio/SlackWebhooksGithubCrawler/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gruppio/SlackWebhooksGithubCrawler/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gruppio/SlackWebhooksGithubCrawler/HEAD/README.md -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gruppio/SlackWebhooksGithubCrawler/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gruppio/SlackWebhooksGithubCrawler/HEAD/package.json -------------------------------------------------------------------------------- /src/Core/Core.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gruppio/SlackWebhooksGithubCrawler/HEAD/src/Core/Core.js -------------------------------------------------------------------------------- /src/Github/Github.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gruppio/SlackWebhooksGithubCrawler/HEAD/src/Github/Github.js --------------------------------------------------------------------------------