├── .babelrc ├── .eslintrc ├── .github ├── ISSUE_TEMPLATE.md └── PULL_REQUEST_TEMPLATE.md ├── .gitignore ├── .npmignore ├── CONTRIBUTING.md ├── LICENCE.txt ├── README.md ├── dist └── typemate.js ├── package.json ├── src └── typemate.js ├── tests.js ├── tests.json └── webpack.config.js /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andy-set-studio/typemate/HEAD/.babelrc -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andy-set-studio/typemate/HEAD/.eslintrc -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andy-set-studio/typemate/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andy-set-studio/typemate/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andy-set-studio/typemate/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | tests.* -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andy-set-studio/typemate/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENCE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andy-set-studio/typemate/HEAD/LICENCE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andy-set-studio/typemate/HEAD/README.md -------------------------------------------------------------------------------- /dist/typemate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andy-set-studio/typemate/HEAD/dist/typemate.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andy-set-studio/typemate/HEAD/package.json -------------------------------------------------------------------------------- /src/typemate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andy-set-studio/typemate/HEAD/src/typemate.js -------------------------------------------------------------------------------- /tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andy-set-studio/typemate/HEAD/tests.js -------------------------------------------------------------------------------- /tests.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andy-set-studio/typemate/HEAD/tests.json -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Andy-set-studio/typemate/HEAD/webpack.config.js --------------------------------------------------------------------------------