├── .gitignore ├── .travis.yml ├── __tests__ └── index.js ├── index.js ├── language.json ├── lib └── greeting.js ├── license ├── package.json ├── readme.md └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bukinoshita/goot/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bukinoshita/goot/HEAD/.travis.yml -------------------------------------------------------------------------------- /__tests__/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bukinoshita/goot/HEAD/__tests__/index.js -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bukinoshita/goot/HEAD/index.js -------------------------------------------------------------------------------- /language.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bukinoshita/goot/HEAD/language.json -------------------------------------------------------------------------------- /lib/greeting.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bukinoshita/goot/HEAD/lib/greeting.js -------------------------------------------------------------------------------- /license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bukinoshita/goot/HEAD/license -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bukinoshita/goot/HEAD/package.json -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bukinoshita/goot/HEAD/readme.md -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bukinoshita/goot/HEAD/yarn.lock --------------------------------------------------------------------------------