├── .gitignore ├── .npmignore ├── Cakefile ├── README.md ├── bin └── cli ├── file.png ├── index.js ├── package.json └── src ├── command.coffee ├── flickr.coffee └── png.coffee /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardobeat/filr/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardobeat/filr/HEAD/.npmignore -------------------------------------------------------------------------------- /Cakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardobeat/filr/HEAD/Cakefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardobeat/filr/HEAD/README.md -------------------------------------------------------------------------------- /bin/cli: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env node 2 | 3 | require('../lib/command').run() -------------------------------------------------------------------------------- /file.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardobeat/filr/HEAD/file.png -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardobeat/filr/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardobeat/filr/HEAD/package.json -------------------------------------------------------------------------------- /src/command.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardobeat/filr/HEAD/src/command.coffee -------------------------------------------------------------------------------- /src/flickr.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardobeat/filr/HEAD/src/flickr.coffee -------------------------------------------------------------------------------- /src/png.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ricardobeat/filr/HEAD/src/png.coffee --------------------------------------------------------------------------------