├── .gitignore ├── LICENSE ├── README.md ├── icon2.png ├── icon_green.png ├── package.json ├── src └── index.js ├── tests ├── index.html └── index.js └── videos ├── 1.gif ├── 2.gif └── 3.gif /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzarcon/growy/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzarcon/growy/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzarcon/growy/HEAD/README.md -------------------------------------------------------------------------------- /icon2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzarcon/growy/HEAD/icon2.png -------------------------------------------------------------------------------- /icon_green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzarcon/growy/HEAD/icon_green.png -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzarcon/growy/HEAD/package.json -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzarcon/growy/HEAD/src/index.js -------------------------------------------------------------------------------- /tests/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzarcon/growy/HEAD/tests/index.html -------------------------------------------------------------------------------- /tests/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzarcon/growy/HEAD/tests/index.js -------------------------------------------------------------------------------- /videos/1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzarcon/growy/HEAD/videos/1.gif -------------------------------------------------------------------------------- /videos/2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzarcon/growy/HEAD/videos/2.gif -------------------------------------------------------------------------------- /videos/3.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzarcon/growy/HEAD/videos/3.gif --------------------------------------------------------------------------------