├── .githooks └── pre-commit ├── .github ├── release.yml └── workflows │ └── test.yml ├── .gitignore ├── .mocharc.json ├── LICENSE ├── README.md ├── package.json ├── src └── express-lazy-router.ts ├── test ├── express-lazy-router.test.ts └── tsconfig.json ├── tsconfig.json ├── tsconfig.module.json └── yarn.lock /.githooks/pre-commit: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | npx --no-install lint-staged 3 | -------------------------------------------------------------------------------- /.github/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azu/express-lazy-router/HEAD/.github/release.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azu/express-lazy-router/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azu/express-lazy-router/HEAD/.gitignore -------------------------------------------------------------------------------- /.mocharc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azu/express-lazy-router/HEAD/.mocharc.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azu/express-lazy-router/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azu/express-lazy-router/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azu/express-lazy-router/HEAD/package.json -------------------------------------------------------------------------------- /src/express-lazy-router.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azu/express-lazy-router/HEAD/src/express-lazy-router.ts -------------------------------------------------------------------------------- /test/express-lazy-router.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azu/express-lazy-router/HEAD/test/express-lazy-router.test.ts -------------------------------------------------------------------------------- /test/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azu/express-lazy-router/HEAD/test/tsconfig.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azu/express-lazy-router/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tsconfig.module.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azu/express-lazy-router/HEAD/tsconfig.module.json -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/azu/express-lazy-router/HEAD/yarn.lock --------------------------------------------------------------------------------