├── .eslintrc ├── .gitignore ├── .npmignore ├── LICENSE.md ├── README.md ├── TODO.md ├── docs ├── bundle.js └── index.html ├── example.rollup.config.js ├── example ├── index.html └── index.js ├── lib └── umd.js ├── package.json ├── rollup.config.js ├── src └── index.js └── test.js /.eslintrc: -------------------------------------------------------------------------------- 1 | { 2 | "extends": ["standard"] 3 | } 4 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | *.log 3 | .DS_Store 4 | example/bundle.js 5 | -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rolyatmax/spring-animator/HEAD/.npmignore -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rolyatmax/spring-animator/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rolyatmax/spring-animator/HEAD/README.md -------------------------------------------------------------------------------- /TODO.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rolyatmax/spring-animator/HEAD/TODO.md -------------------------------------------------------------------------------- /docs/bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rolyatmax/spring-animator/HEAD/docs/bundle.js -------------------------------------------------------------------------------- /docs/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rolyatmax/spring-animator/HEAD/docs/index.html -------------------------------------------------------------------------------- /example.rollup.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rolyatmax/spring-animator/HEAD/example.rollup.config.js -------------------------------------------------------------------------------- /example/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rolyatmax/spring-animator/HEAD/example/index.html -------------------------------------------------------------------------------- /example/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rolyatmax/spring-animator/HEAD/example/index.js -------------------------------------------------------------------------------- /lib/umd.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rolyatmax/spring-animator/HEAD/lib/umd.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rolyatmax/spring-animator/HEAD/package.json -------------------------------------------------------------------------------- /rollup.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rolyatmax/spring-animator/HEAD/rollup.config.js -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rolyatmax/spring-animator/HEAD/src/index.js -------------------------------------------------------------------------------- /test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rolyatmax/spring-animator/HEAD/test.js --------------------------------------------------------------------------------