├── .babelrc ├── .coveralls.yml ├── .eslintignore ├── .eslintrc.js ├── .gitignore ├── .npmignore ├── .nvmrc ├── .travis.yml ├── README.md ├── package.json ├── src └── AnimationFrameComponent.jsx └── test ├── AnimationFrameComponentTests.jsx ├── init.js └── mocha.opts /.babelrc: -------------------------------------------------------------------------------- 1 | { 2 | "presets": ["react", "env"] 3 | } 4 | -------------------------------------------------------------------------------- /.coveralls.yml: -------------------------------------------------------------------------------- 1 | service_name: travis-ci -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- 1 | *.transpiled.js -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesseanwright/react-animation-frame/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | dist 2 | *.transpiled.js 3 | node_modules 4 | coverage 5 | .nyc_output -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesseanwright/react-animation-frame/HEAD/.npmignore -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | v8.6.0 2 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesseanwright/react-animation-frame/HEAD/.travis.yml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesseanwright/react-animation-frame/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesseanwright/react-animation-frame/HEAD/package.json -------------------------------------------------------------------------------- /src/AnimationFrameComponent.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesseanwright/react-animation-frame/HEAD/src/AnimationFrameComponent.jsx -------------------------------------------------------------------------------- /test/AnimationFrameComponentTests.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesseanwright/react-animation-frame/HEAD/test/AnimationFrameComponentTests.jsx -------------------------------------------------------------------------------- /test/init.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jamesseanwright/react-animation-frame/HEAD/test/init.js -------------------------------------------------------------------------------- /test/mocha.opts: -------------------------------------------------------------------------------- 1 | test/*.jsx 2 | --require test/init --------------------------------------------------------------------------------