├── .dockerignore ├── .eslintrc.js ├── .gitignore ├── .npmignore ├── .travis.yml ├── Dockerfile ├── LICENSE ├── README.md ├── cat.jpg ├── package.json ├── smartcrop-cli.js └── test.sh /.dockerignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwagner/smartcrop-cli/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | *.jpg 3 | images/ 4 | -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | images/ 2 | etc/ 3 | *.jpg 4 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwagner/smartcrop-cli/HEAD/.travis.yml -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwagner/smartcrop-cli/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwagner/smartcrop-cli/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwagner/smartcrop-cli/HEAD/README.md -------------------------------------------------------------------------------- /cat.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwagner/smartcrop-cli/HEAD/cat.jpg -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwagner/smartcrop-cli/HEAD/package.json -------------------------------------------------------------------------------- /smartcrop-cli.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwagner/smartcrop-cli/HEAD/smartcrop-cli.js -------------------------------------------------------------------------------- /test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jwagner/smartcrop-cli/HEAD/test.sh --------------------------------------------------------------------------------