├── .gitignore ├── .npmignore ├── LICENSE ├── Logo ├── HAPI-128.png ├── HAPI-64.png └── HAPI.ai ├── README.md ├── hapi.js └── package.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jheising/HAPI/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | Logo -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jheising/HAPI/HEAD/LICENSE -------------------------------------------------------------------------------- /Logo/HAPI-128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jheising/HAPI/HEAD/Logo/HAPI-128.png -------------------------------------------------------------------------------- /Logo/HAPI-64.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jheising/HAPI/HEAD/Logo/HAPI-64.png -------------------------------------------------------------------------------- /Logo/HAPI.ai: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jheising/HAPI/HEAD/Logo/HAPI.ai -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jheising/HAPI/HEAD/README.md -------------------------------------------------------------------------------- /hapi.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jheising/HAPI/HEAD/hapi.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jheising/HAPI/HEAD/package.json --------------------------------------------------------------------------------