├── .gitignore ├── .travis.yml ├── CHANGELOG.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── lib ├── auth.ts ├── codes.ts ├── json-routes.ts ├── maka-rest.ts └── route.ts ├── package.js ├── test ├── api_tests.coffee ├── authentication_tests.coffee ├── route_unit_tests.coffee └── user_hook_tests.coffee └── tsconfig.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maka-io/maka-rest/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maka-io/maka-rest/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maka-io/maka-rest/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maka-io/maka-rest/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maka-io/maka-rest/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maka-io/maka-rest/HEAD/README.md -------------------------------------------------------------------------------- /lib/auth.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maka-io/maka-rest/HEAD/lib/auth.ts -------------------------------------------------------------------------------- /lib/codes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maka-io/maka-rest/HEAD/lib/codes.ts -------------------------------------------------------------------------------- /lib/json-routes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maka-io/maka-rest/HEAD/lib/json-routes.ts -------------------------------------------------------------------------------- /lib/maka-rest.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maka-io/maka-rest/HEAD/lib/maka-rest.ts -------------------------------------------------------------------------------- /lib/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maka-io/maka-rest/HEAD/lib/route.ts -------------------------------------------------------------------------------- /package.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maka-io/maka-rest/HEAD/package.js -------------------------------------------------------------------------------- /test/api_tests.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maka-io/maka-rest/HEAD/test/api_tests.coffee -------------------------------------------------------------------------------- /test/authentication_tests.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maka-io/maka-rest/HEAD/test/authentication_tests.coffee -------------------------------------------------------------------------------- /test/route_unit_tests.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maka-io/maka-rest/HEAD/test/route_unit_tests.coffee -------------------------------------------------------------------------------- /test/user_hook_tests.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maka-io/maka-rest/HEAD/test/user_hook_tests.coffee -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/maka-io/maka-rest/HEAD/tsconfig.json --------------------------------------------------------------------------------