├── .gitignore ├── LICENSE ├── index.js ├── package.json └── readme.md /.gitignore: -------------------------------------------------------------------------------- 1 | .idea 2 | node_modules 3 | out 4 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techchrism/valorant-log-endpoint-scraper/HEAD/LICENSE -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techchrism/valorant-log-endpoint-scraper/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techchrism/valorant-log-endpoint-scraper/HEAD/package.json -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/techchrism/valorant-log-endpoint-scraper/HEAD/readme.md --------------------------------------------------------------------------------