{
  "name": "ffmpeg-image-diff",
  "version": "1.16.0",
  "title": "FFmpeg Image Diff",
  "description": "An image diffing library using FFmpeg. Creates an image showing perceptual differences and returns SSIM data.",
  "keywords": [
    "ffmpeg",
    "image",
    "diff",
    "ssim"
  ],
  "homepage": "https://github.com/blueimp/ffmpeg-image-diff",
  "author": {
    "name": "Sebastian Tschan",
    "url": "https://blueimp.net"
  },
  "repository": {
    "type": "git",
    "url": "git://github.com/blueimp/ffmpeg-image-diff.git"
  },
  "license": "MIT",
  "engines": {
    "node": ">=10.0.0"
  },
  "devDependencies": {
    "@types/mocha": "9",
    "@types/node": "16",
    "eslint": "7",
    "eslint-config-blueimp": "2",
    "eslint-config-prettier": "8",
    "eslint-plugin-jsdoc": "36",
    "eslint-plugin-node": "11",
    "eslint-plugin-prettier": "4",
    "prettier": "2",
    "typescript": "4"
  },
  "eslintConfig": {
    "extends": [
      "blueimp",
      "plugin:jsdoc/recommended",
      "plugin:node/recommended",
      "plugin:prettier/recommended"
    ]
  },
  "prettier": {
    "arrowParens": "avoid",
    "proseWrap": "always",
    "semi": false,
    "singleQuote": true,
    "trailingComma": "none"
  },
  "scripts": {
    "pretest": "eslint . && tsc",
    "test": "docker-compose run --rm test",
    "posttest": "docker-compose down",
    "build": "tsc -p tsconfig.d.json",
    "preversion": "npm test",
    "version": "npm run build && git add -A index.d.ts",
    "postversion": "git push --tags origin HEAD && npm publish"
  },
  "files": [
    "index.d.ts",
    "index.js"
  ],
  "main": "index.js"
}
