├── .eslintrc.js ├── .github └── workflows │ └── main.yml ├── .gitignore ├── LICENSE ├── README.md ├── __tests__ └── index.ts ├── example.js ├── jest.config.js ├── package.json ├── src ├── env.d.ts ├── index.ts └── interfaces.ts ├── tsconfig.json ├── tsconfig.test.json └── yarn.lock /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyscalpello/node-2fa/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyscalpello/node-2fa/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | desktop.ini 3 | .DS_Store 4 | .idea 5 | .vscode 6 | dist 7 | *.log 8 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyscalpello/node-2fa/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyscalpello/node-2fa/HEAD/README.md -------------------------------------------------------------------------------- /__tests__/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyscalpello/node-2fa/HEAD/__tests__/index.ts -------------------------------------------------------------------------------- /example.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyscalpello/node-2fa/HEAD/example.js -------------------------------------------------------------------------------- /jest.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyscalpello/node-2fa/HEAD/jest.config.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyscalpello/node-2fa/HEAD/package.json -------------------------------------------------------------------------------- /src/env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyscalpello/node-2fa/HEAD/src/env.d.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyscalpello/node-2fa/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/interfaces.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyscalpello/node-2fa/HEAD/src/interfaces.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyscalpello/node-2fa/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tsconfig.test.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyscalpello/node-2fa/HEAD/tsconfig.test.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jeremyscalpello/node-2fa/HEAD/yarn.lock --------------------------------------------------------------------------------