├── .gitignore ├── .travis.yml ├── Cakefile ├── README.md ├── bin └── test ├── lib └── nodecr.js ├── package.json ├── src └── nodecr.coffee └── test ├── image.png └── test.js /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joscha/nodecr/HEAD/.travis.yml -------------------------------------------------------------------------------- /Cakefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joscha/nodecr/HEAD/Cakefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joscha/nodecr/HEAD/README.md -------------------------------------------------------------------------------- /bin/test: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env sh 2 | 3 | npm test -------------------------------------------------------------------------------- /lib/nodecr.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joscha/nodecr/HEAD/lib/nodecr.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joscha/nodecr/HEAD/package.json -------------------------------------------------------------------------------- /src/nodecr.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joscha/nodecr/HEAD/src/nodecr.coffee -------------------------------------------------------------------------------- /test/image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joscha/nodecr/HEAD/test/image.png -------------------------------------------------------------------------------- /test/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/joscha/nodecr/HEAD/test/test.js --------------------------------------------------------------------------------