├── .babelrc ├── .editorconfig ├── .eslintignore ├── .eslintrc ├── .gitignore ├── LICENSE ├── README.md ├── example ├── demo.jsx ├── index.html ├── package.json └── yarn.lock ├── gulpfile.babel.js ├── package.json ├── src ├── AnimatedNumber.jsx └── index.js └── yarn.lock /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameyms/react-animated-number/HEAD/.babelrc -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameyms/react-animated-number/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- 1 | # Transpiled javascript 2 | build/ 3 | -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameyms/react-animated-number/HEAD/.eslintrc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameyms/react-animated-number/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameyms/react-animated-number/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameyms/react-animated-number/HEAD/README.md -------------------------------------------------------------------------------- /example/demo.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameyms/react-animated-number/HEAD/example/demo.jsx -------------------------------------------------------------------------------- /example/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameyms/react-animated-number/HEAD/example/index.html -------------------------------------------------------------------------------- /example/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameyms/react-animated-number/HEAD/example/package.json -------------------------------------------------------------------------------- /example/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameyms/react-animated-number/HEAD/example/yarn.lock -------------------------------------------------------------------------------- /gulpfile.babel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameyms/react-animated-number/HEAD/gulpfile.babel.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameyms/react-animated-number/HEAD/package.json -------------------------------------------------------------------------------- /src/AnimatedNumber.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameyms/react-animated-number/HEAD/src/AnimatedNumber.jsx -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameyms/react-animated-number/HEAD/src/index.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ameyms/react-animated-number/HEAD/yarn.lock --------------------------------------------------------------------------------