├── .babelrc ├── .editorconfig ├── .gitignore ├── .jshintrc ├── .npmignore ├── .travis.yml ├── LICENSE ├── README.md ├── Test.fmp12 ├── env.example ├── package.json ├── src ├── auto │ ├── hooks │ │ └── index.js │ └── index.js ├── fms │ └── FMServerClient │ │ ├── FileMakerServerError.js │ │ ├── formaterWithValues.js │ │ └── index.js ├── index.js ├── middleware │ └── basicAuth.js └── script │ ├── hooks │ └── index.js │ └── index.js └── test ├── index.test.js ├── test-app.js └── test-rest.js /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proofgeist/feathers-filemaker/HEAD/.babelrc -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proofgeist/feathers-filemaker/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proofgeist/feathers-filemaker/HEAD/.gitignore -------------------------------------------------------------------------------- /.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proofgeist/feathers-filemaker/HEAD/.jshintrc -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proofgeist/feathers-filemaker/HEAD/.npmignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proofgeist/feathers-filemaker/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proofgeist/feathers-filemaker/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proofgeist/feathers-filemaker/HEAD/README.md -------------------------------------------------------------------------------- /Test.fmp12: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proofgeist/feathers-filemaker/HEAD/Test.fmp12 -------------------------------------------------------------------------------- /env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proofgeist/feathers-filemaker/HEAD/env.example -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proofgeist/feathers-filemaker/HEAD/package.json -------------------------------------------------------------------------------- /src/auto/hooks/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proofgeist/feathers-filemaker/HEAD/src/auto/hooks/index.js -------------------------------------------------------------------------------- /src/auto/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proofgeist/feathers-filemaker/HEAD/src/auto/index.js -------------------------------------------------------------------------------- /src/fms/FMServerClient/FileMakerServerError.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proofgeist/feathers-filemaker/HEAD/src/fms/FMServerClient/FileMakerServerError.js -------------------------------------------------------------------------------- /src/fms/FMServerClient/formaterWithValues.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proofgeist/feathers-filemaker/HEAD/src/fms/FMServerClient/formaterWithValues.js -------------------------------------------------------------------------------- /src/fms/FMServerClient/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proofgeist/feathers-filemaker/HEAD/src/fms/FMServerClient/index.js -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proofgeist/feathers-filemaker/HEAD/src/index.js -------------------------------------------------------------------------------- /src/middleware/basicAuth.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proofgeist/feathers-filemaker/HEAD/src/middleware/basicAuth.js -------------------------------------------------------------------------------- /src/script/hooks/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proofgeist/feathers-filemaker/HEAD/src/script/hooks/index.js -------------------------------------------------------------------------------- /src/script/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proofgeist/feathers-filemaker/HEAD/src/script/index.js -------------------------------------------------------------------------------- /test/index.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proofgeist/feathers-filemaker/HEAD/test/index.test.js -------------------------------------------------------------------------------- /test/test-app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proofgeist/feathers-filemaker/HEAD/test/test-app.js -------------------------------------------------------------------------------- /test/test-rest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/proofgeist/feathers-filemaker/HEAD/test/test-rest.js --------------------------------------------------------------------------------