├── .gitignore ├── .npmignore ├── LICENSE ├── README.md ├── assets ├── .gitignore ├── autorotate.jpg ├── horizontal.jpg ├── small.jpg ├── transparent.png └── vertical.jpg ├── docker-compose.yml ├── index.js ├── package.json ├── test.js └── wercker.yml /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Turistforeningen/node-im-resize/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | /assets/ 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Turistforeningen/node-im-resize/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Turistforeningen/node-im-resize/HEAD/README.md -------------------------------------------------------------------------------- /assets/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Turistforeningen/node-im-resize/HEAD/assets/.gitignore -------------------------------------------------------------------------------- /assets/autorotate.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Turistforeningen/node-im-resize/HEAD/assets/autorotate.jpg -------------------------------------------------------------------------------- /assets/horizontal.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Turistforeningen/node-im-resize/HEAD/assets/horizontal.jpg -------------------------------------------------------------------------------- /assets/small.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Turistforeningen/node-im-resize/HEAD/assets/small.jpg -------------------------------------------------------------------------------- /assets/transparent.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Turistforeningen/node-im-resize/HEAD/assets/transparent.png -------------------------------------------------------------------------------- /assets/vertical.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Turistforeningen/node-im-resize/HEAD/assets/vertical.jpg -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Turistforeningen/node-im-resize/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Turistforeningen/node-im-resize/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Turistforeningen/node-im-resize/HEAD/package.json -------------------------------------------------------------------------------- /test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Turistforeningen/node-im-resize/HEAD/test.js -------------------------------------------------------------------------------- /wercker.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Turistforeningen/node-im-resize/HEAD/wercker.yml --------------------------------------------------------------------------------