├── .gitignore ├── README.md ├── index.js ├── package.json └── test ├── index.html ├── index.js └── specs └── acceptance.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzarcon/animotion/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzarcon/animotion/HEAD/README.md -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzarcon/animotion/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzarcon/animotion/HEAD/package.json -------------------------------------------------------------------------------- /test/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzarcon/animotion/HEAD/test/index.html -------------------------------------------------------------------------------- /test/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzarcon/animotion/HEAD/test/index.js -------------------------------------------------------------------------------- /test/specs/acceptance.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/zzarcon/animotion/HEAD/test/specs/acceptance.js --------------------------------------------------------------------------------