├── .babelrc ├── .eslintignore ├── .eslintrc ├── .gitignore ├── .npmignore ├── CHANGELOG.md ├── LICENSE.md ├── Makefile ├── README.md ├── circle.yml ├── docs ├── API.md └── Guide.md ├── package.json ├── registerWithOptions.js ├── src ├── Actions.js ├── Cat.js ├── Store.js ├── Translate.js ├── index.js ├── utils.js └── waitFor.js ├── test ├── action.js ├── cat.js ├── store.js ├── translate.js ├── utils.js └── waitFor.js └── webpack.config.js /.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "stage": 0 3 | } 4 | -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThunderCatsJS/thundercats/HEAD/.eslintignore -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThunderCatsJS/thundercats/HEAD/.eslintrc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThunderCatsJS/thundercats/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThunderCatsJS/thundercats/HEAD/.npmignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThunderCatsJS/thundercats/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThunderCatsJS/thundercats/HEAD/LICENSE.md -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThunderCatsJS/thundercats/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | UNMAINTAINED 2 | -------------------------------------------------------------------------------- /circle.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThunderCatsJS/thundercats/HEAD/circle.yml -------------------------------------------------------------------------------- /docs/API.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThunderCatsJS/thundercats/HEAD/docs/API.md -------------------------------------------------------------------------------- /docs/Guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThunderCatsJS/thundercats/HEAD/docs/Guide.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThunderCatsJS/thundercats/HEAD/package.json -------------------------------------------------------------------------------- /registerWithOptions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThunderCatsJS/thundercats/HEAD/registerWithOptions.js -------------------------------------------------------------------------------- /src/Actions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThunderCatsJS/thundercats/HEAD/src/Actions.js -------------------------------------------------------------------------------- /src/Cat.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThunderCatsJS/thundercats/HEAD/src/Cat.js -------------------------------------------------------------------------------- /src/Store.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThunderCatsJS/thundercats/HEAD/src/Store.js -------------------------------------------------------------------------------- /src/Translate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThunderCatsJS/thundercats/HEAD/src/Translate.js -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThunderCatsJS/thundercats/HEAD/src/index.js -------------------------------------------------------------------------------- /src/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThunderCatsJS/thundercats/HEAD/src/utils.js -------------------------------------------------------------------------------- /src/waitFor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThunderCatsJS/thundercats/HEAD/src/waitFor.js -------------------------------------------------------------------------------- /test/action.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThunderCatsJS/thundercats/HEAD/test/action.js -------------------------------------------------------------------------------- /test/cat.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThunderCatsJS/thundercats/HEAD/test/cat.js -------------------------------------------------------------------------------- /test/store.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThunderCatsJS/thundercats/HEAD/test/store.js -------------------------------------------------------------------------------- /test/translate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThunderCatsJS/thundercats/HEAD/test/translate.js -------------------------------------------------------------------------------- /test/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThunderCatsJS/thundercats/HEAD/test/utils.js -------------------------------------------------------------------------------- /test/waitFor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThunderCatsJS/thundercats/HEAD/test/waitFor.js -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ThunderCatsJS/thundercats/HEAD/webpack.config.js --------------------------------------------------------------------------------