├── .editorconfig ├── .eslintrc.js ├── .gitignore ├── .npmignore ├── .travis.yml ├── LICENSE ├── README.md ├── app.js ├── data ├── mostCommon1000.txt ├── nonNumericPasswords.txt └── passwords.txt ├── demo.gif └── package.json /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/balzss/cli-typer/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/balzss/cli-typer/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | package-lock.json 3 | -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | demo.gif 2 | 3 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/balzss/cli-typer/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/balzss/cli-typer/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/balzss/cli-typer/HEAD/README.md -------------------------------------------------------------------------------- /app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/balzss/cli-typer/HEAD/app.js -------------------------------------------------------------------------------- /data/mostCommon1000.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/balzss/cli-typer/HEAD/data/mostCommon1000.txt -------------------------------------------------------------------------------- /data/nonNumericPasswords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/balzss/cli-typer/HEAD/data/nonNumericPasswords.txt -------------------------------------------------------------------------------- /data/passwords.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/balzss/cli-typer/HEAD/data/passwords.txt -------------------------------------------------------------------------------- /demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/balzss/cli-typer/HEAD/demo.gif -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/balzss/cli-typer/HEAD/package.json --------------------------------------------------------------------------------