jpeg-autorotate
Version:
Rotate JPEG images based on EXIF orientation
58 lines (57 loc) • 1.24 kB
JSON
{
"name": "jpeg-autorotate",
"version": "8.0.1",
"description": "Rotate JPEG images based on EXIF orientation",
"author": "Johan Satgé",
"bin": {
"jpeg-autorotate": "./src/cli.js"
},
"scripts": {
"checkstyle": "eslint .",
"test": "nyc --reporter=text mocha test/*.spec.js && rm -r .nyc_output",
"test-ci": "nyc --reporter=lcov mocha test/*.spec.js && codecov"
},
"files": [
"src/**/*.js",
"package.json",
"readme.md",
"license.md"
],
"main": "src/main.js",
"repository": {
"type": "git",
"url": "https://github.com/johansatge/jpeg-autorotate"
},
"bugs": {
"url": "https://github.com/johansatge/jpeg-autorotate/issues"
},
"keywords": [
"jpeg",
"rotate",
"autorotate",
"orientation",
"exif",
"thumbnail",
"cli"
],
"dependencies": {
"glob": "^7.2.0",
"jpeg-js": "^0.4.3",
"piexifjs": "^1.0.6",
"yargs-parser": "^20.2.9"
},
"devDependencies": {
"chai": "^4.3.4",
"codecov": "^3.8.3",
"eslint": "^8.2.0",
"eslint-plugin-prettier": "^4.0.0",
"mocha": "^9.1.3",
"nyc": "^15.1.0",
"prettier": "^2.4.1"
},
"engines": {
"node": ">=12"
},
"preferGlobal": true,
"license": "MIT"
}