├── .editorconfig ├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md ├── index.js ├── package.json └── test ├── index.js ├── mock.js ├── no-callback.js └── sync.js /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mastilver/express-annotation/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mastilver/express-annotation/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mastilver/express-annotation/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mastilver/express-annotation/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mastilver/express-annotation/HEAD/README.md -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mastilver/express-annotation/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mastilver/express-annotation/HEAD/package.json -------------------------------------------------------------------------------- /test/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mastilver/express-annotation/HEAD/test/index.js -------------------------------------------------------------------------------- /test/mock.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mastilver/express-annotation/HEAD/test/mock.js -------------------------------------------------------------------------------- /test/no-callback.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mastilver/express-annotation/HEAD/test/no-callback.js -------------------------------------------------------------------------------- /test/sync.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mastilver/express-annotation/HEAD/test/sync.js --------------------------------------------------------------------------------