├── README.md ├── .gitmodules ├── .gitignore ├── package.js └── smart.json /README.md: -------------------------------------------------------------------------------- 1 | meteor-animate-css 2 | ================== 3 | 4 | animate.css packaged for meteor -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- 1 | [submodule "lib/animate.css"] 2 | path = lib/animate.css 3 | url = https://github.com/daneden/animate.css.git 4 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | lib-cov 2 | *.seed 3 | *.log 4 | *.csv 5 | *.dat 6 | *.out 7 | *.pid 8 | *.gz 9 | 10 | pids 11 | logs 12 | results 13 | 14 | npm-debug.log 15 | -------------------------------------------------------------------------------- /package.js: -------------------------------------------------------------------------------- 1 | Package.describe({ 2 | summary: "Animate.css packaged for meteor" 3 | }); 4 | 5 | Package.on_use(function (api) { 6 | api.add_files("lib/animate.css/animate.css", "client"); 7 | }); 8 | -------------------------------------------------------------------------------- /smart.json: -------------------------------------------------------------------------------- 1 | { 2 | "name": "animate-css", 3 | "description": "Animate.css packaged for meteor", 4 | "homepage": "https://github.com/nate-strauser/meteor-animate-css", 5 | "author": "Nate Strauser", 6 | "version": "2.1.0", 7 | "git": "https://github.com/nate-strauser/meteor-animate-css.git" 8 | } 9 | --------------------------------------------------------------------------------