├── .gitignore ├── LICENSE ├── README.md ├── docker-compose.yml ├── package.json ├── src └── index.coffee └── test └── index.coffee /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandastrike/fairmont/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandastrike/fairmont/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandastrike/fairmont/HEAD/README.md -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandastrike/fairmont/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandastrike/fairmont/HEAD/package.json -------------------------------------------------------------------------------- /src/index.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandastrike/fairmont/HEAD/src/index.coffee -------------------------------------------------------------------------------- /test/index.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/pandastrike/fairmont/HEAD/test/index.coffee --------------------------------------------------------------------------------