├── .babelrc ├── .eslintrc.json ├── .gitignore ├── .prettierignore ├── .prettierrc.json ├── package.json ├── readme.md ├── src ├── botcheck.ts ├── test.ts └── types.d.ts └── tsconfig.json /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prescience-data/puppeteer-botcheck/HEAD/.babelrc -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prescience-data/puppeteer-botcheck/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prescience-data/puppeteer-botcheck/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- 1 | # Ignore artifacts: 2 | build 3 | logs 4 | storage 5 | vendor -------------------------------------------------------------------------------- /.prettierrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prescience-data/puppeteer-botcheck/HEAD/.prettierrc.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prescience-data/puppeteer-botcheck/HEAD/package.json -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prescience-data/puppeteer-botcheck/HEAD/readme.md -------------------------------------------------------------------------------- /src/botcheck.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prescience-data/puppeteer-botcheck/HEAD/src/botcheck.ts -------------------------------------------------------------------------------- /src/test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prescience-data/puppeteer-botcheck/HEAD/src/test.ts -------------------------------------------------------------------------------- /src/types.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prescience-data/puppeteer-botcheck/HEAD/src/types.d.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/prescience-data/puppeteer-botcheck/HEAD/tsconfig.json --------------------------------------------------------------------------------