package.json 1.24 KB
{
  "name": "jpeg-autorotate",
  "version": "7.1.1",
  "description": "Rotates 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": {
    "colors": "^1.4.0",
    "glob": "^7.1.6",
    "jpeg-js": "^0.4.2",
    "piexifjs": "^1.0.6",
    "yargs-parser": "^20.2.1"
  },
  "devDependencies": {
    "chai": "^4.1.2",
    "codecov": "^3.8.0",
    "eslint": "^7.9.0",
    "eslint-plugin-prettier": "^3.1.4",
    "mocha": "^8.1.3",
    "nyc": "^15.1.0",
    "prettier": "^2.1.2"
  },
  "engines": {
    "node": ">=10"
  },
  "preferGlobal": true,
  "license": "MIT"
}