├── .babelrc ├── .gitignore ├── license.md ├── main.js ├── package.json ├── readme.md ├── test-server.js ├── webpack.config.js └── yarn.lock /.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "plugins": ["transform-async-to-generator"] 3 | } 4 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f0rr0/koa-jsonwebtoken/HEAD/.gitignore -------------------------------------------------------------------------------- /license.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f0rr0/koa-jsonwebtoken/HEAD/license.md -------------------------------------------------------------------------------- /main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f0rr0/koa-jsonwebtoken/HEAD/main.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f0rr0/koa-jsonwebtoken/HEAD/package.json -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f0rr0/koa-jsonwebtoken/HEAD/readme.md -------------------------------------------------------------------------------- /test-server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f0rr0/koa-jsonwebtoken/HEAD/test-server.js -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f0rr0/koa-jsonwebtoken/HEAD/webpack.config.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/f0rr0/koa-jsonwebtoken/HEAD/yarn.lock --------------------------------------------------------------------------------