{
  "name": "pngquant",
  "version": "4.2.0",
  "type": "module",
  "description": "The pngquant utility as a readable/writable stream",
  "main": "dist/PngQuant.cjs",
  "module": "dist/PngQuant.mjs",
  "types": "lib/PngQuant.d.ts",
  "directories": {
    "test": "test"
  },
  "files": [
    "lib/*.d.ts",
    "dist"
  ],
  "optionalDependencies": {
    "pngquant-bin": "^6.0.1"
  },
  "devDependencies": {
    "@types/node": "^18.7.18",
    "coveralls": "^3.0.2",
    "eslint": "^8.6.0",
    "eslint-config-prettier": "^8.3.0",
    "eslint-config-standard": "^17.0.0",
    "eslint-plugin-import": "^2.26.0",
    "eslint-plugin-mocha": "^10.0.1",
    "eslint-plugin-n": "^15.1.0",
    "eslint-plugin-node": "^11.0.0",
    "eslint-plugin-promise": "^6.0.0",
    "eslint-plugin-standard": "^5.0.0",
    "istanbul": "^0.4.5",
    "mocha": "^10.1.0",
    "nyc": "^15.0.0",
    "offline-github-changelog": "^3.0.0",
    "prettier": "~2.5.0",
    "rollup": "^2.79.0",
    "semver": "^7.0.0",
    "sinon": "^12.0.1",
    "unexpected": "^12.0.0",
    "unexpected-sinon": "^11.0.0",
    "unexpected-stream": "^5.0.0"
  },
  "scripts": {
    "build": "rollup -c",
    "prepublishOnly": "npm run build",
    "lint": "eslint . && prettier --check '**/*.{js,md}'",
    "test": "mocha",
    "test:ci": "npm run coverage",
    "coverage": "nyc --reporter=lcov --reporter=text --all -- npm test && echo google-chrome coverage/lcov-report/index.html",
    "preversion": "offline-github-changelog --next=${npm_new_version} > CHANGELOG.md && git add CHANGELOG.md"
  },
  "repository": {
    "type": "git",
    "url": "git://github.com/papandreou/node-pngquant.git"
  },
  "keywords": [
    "pngquant",
    "png",
    "image",
    "optimization",
    "stream",
    "filter",
    "read/write",
    "duplex"
  ],
  "author": "Andreas Lind <andreaslindpetersen@gmail.com>",
  "license": "BSD-3-Clause",
  "dependencies": {
    "memoizeasync": "1.1.0",
    "which": "2.0.2"
  },
  "nyc": {
    "include": [
      "lib/**"
    ]
  },
  "exports": {
    ".": {
      "require": "./dist/PngQuant.cjs",
      "import": "./dist/PngQuant.mjs",
      "types": "./lib/PngQuant.d.ts"
    },
    "./package.json": "./package.json"
  }
}
