├── .eslintrc.js ├── .gitignore ├── .travis.yml ├── LICENSE.md ├── README.md ├── cli.js ├── domains.json ├── domains_generator.js ├── index.js ├── package.json ├── registrobr.png └── test.js /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftonato/registrobr/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftonato/registrobr/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftonato/registrobr/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftonato/registrobr/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftonato/registrobr/HEAD/README.md -------------------------------------------------------------------------------- /cli.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftonato/registrobr/HEAD/cli.js -------------------------------------------------------------------------------- /domains.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftonato/registrobr/HEAD/domains.json -------------------------------------------------------------------------------- /domains_generator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftonato/registrobr/HEAD/domains_generator.js -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftonato/registrobr/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftonato/registrobr/HEAD/package.json -------------------------------------------------------------------------------- /registrobr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftonato/registrobr/HEAD/registrobr.png -------------------------------------------------------------------------------- /test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ftonato/registrobr/HEAD/test.js --------------------------------------------------------------------------------