├── .circleci └── config.yml ├── .github ├── ISSUE_TEMPLATE │ ├── bug-report----.md │ ├── feature-request----.md │ └── question---.md └── pull_request_template.md ├── .gitignore ├── .nowignore ├── demo.gif ├── favicon.png ├── index.ts ├── local └── index.ts ├── now.json ├── package.json ├── readme.md ├── test.ts ├── tsconfig.json └── types ├── chance └── index.d.ts ├── freddo └── index.d.ts ├── index.d.ts ├── serveMarked └── index.d.ts └── testListen └── index.d.ts /.circleci/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meeshkan/micro-jaymock/HEAD/.circleci/config.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug-report----.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meeshkan/micro-jaymock/HEAD/.github/ISSUE_TEMPLATE/bug-report----.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature-request----.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meeshkan/micro-jaymock/HEAD/.github/ISSUE_TEMPLATE/feature-request----.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/question---.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meeshkan/micro-jaymock/HEAD/.github/ISSUE_TEMPLATE/question---.md -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meeshkan/micro-jaymock/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | .nyc_output 3 | coverage 4 | *.js 5 | .now -------------------------------------------------------------------------------- /.nowignore: -------------------------------------------------------------------------------- 1 | local 2 | types 3 | test.ts -------------------------------------------------------------------------------- /demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meeshkan/micro-jaymock/HEAD/demo.gif -------------------------------------------------------------------------------- /favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meeshkan/micro-jaymock/HEAD/favicon.png -------------------------------------------------------------------------------- /index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meeshkan/micro-jaymock/HEAD/index.ts -------------------------------------------------------------------------------- /local/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meeshkan/micro-jaymock/HEAD/local/index.ts -------------------------------------------------------------------------------- /now.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meeshkan/micro-jaymock/HEAD/now.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meeshkan/micro-jaymock/HEAD/package.json -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meeshkan/micro-jaymock/HEAD/readme.md -------------------------------------------------------------------------------- /test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meeshkan/micro-jaymock/HEAD/test.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meeshkan/micro-jaymock/HEAD/tsconfig.json -------------------------------------------------------------------------------- /types/chance/index.d.ts: -------------------------------------------------------------------------------- 1 | declare module 'chance'; -------------------------------------------------------------------------------- /types/freddo/index.d.ts: -------------------------------------------------------------------------------- 1 | declare module '@meeshkanml/freddo'; -------------------------------------------------------------------------------- /types/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/meeshkan/micro-jaymock/HEAD/types/index.d.ts -------------------------------------------------------------------------------- /types/serveMarked/index.d.ts: -------------------------------------------------------------------------------- 1 | declare module 'serve-marked'; -------------------------------------------------------------------------------- /types/testListen/index.d.ts: -------------------------------------------------------------------------------- 1 | declare module 'test-listen'; --------------------------------------------------------------------------------