├── .eslintrc.json ├── .gitignore ├── README.md ├── app └── hello.js ├── package.json ├── server.js └── test ├── example.js └── mocks └── server.js /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abiee/es6-hapijs/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abiee/es6-hapijs/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abiee/es6-hapijs/HEAD/README.md -------------------------------------------------------------------------------- /app/hello.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abiee/es6-hapijs/HEAD/app/hello.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abiee/es6-hapijs/HEAD/package.json -------------------------------------------------------------------------------- /server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abiee/es6-hapijs/HEAD/server.js -------------------------------------------------------------------------------- /test/example.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abiee/es6-hapijs/HEAD/test/example.js -------------------------------------------------------------------------------- /test/mocks/server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/abiee/es6-hapijs/HEAD/test/mocks/server.js --------------------------------------------------------------------------------