{
  "name": "favicons",
  "version": "7.0.0-beta.4",
  "description": "Favicon generator for Node.js",
  "type": "module",
  "main": "./dist/index.cjs",
  "module": "./dist/index.mjs",
  "types": "./dist/index.d.ts",
  "exports": {
    ".": {
      "import": "./dist/index.mjs",
      "require": "./dist/index.cjs",
      "types": "./dist/index.d.ts"
    }
  },
  "files": [
    "dist/"
  ],
  "repository": {
    "type": "git",
    "url": "https://github.com/itgalaxy/favicons.git"
  },
  "scripts": {
    "fmt": "prettier --write .",
    "fmt-check": "prettier --check .",
    "lint": "eslint . --ignore-path .gitignore",
    "fix": "npm run lint -- --fix && npm run fmt",
    "pretest": "npm run lint && npm run fmt-check",
    "test-import": "node ./test-packages/test-mjs/index.js",
    "test-require": "node ./test-packages/test-cjs/index.js",
    "test-only": "npm run build && jest",
    "test": "npm run test-only",
    "clean": "rimraf dist/",
    "build": "unbuild",
    "prepare": "npm run pretest && npm run build && npm run test-import && npm run test-require"
  },
  "keywords": [
    "favicon",
    "ico",
    "generator",
    "node",
    "realfavicongenerator"
  ],
  "author": "Hayden Bleasel <haydenbleasel@gmail.com>",
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/itgalaxy/favicons/issues"
  },
  "homepage": "https://github.com/itgalaxy/favicons",
  "engines": {
    "node": ">=14.0.0"
  },
  "dependencies": {
    "escape-html": "^1.0.3",
    "sharp": "^0.30.3",
    "xml2js": "^0.4.23"
  },
  "devDependencies": {
    "@babel/core": "^7.17.9",
    "@babel/preset-env": "^7.16.11",
    "@babel/preset-typescript": "^7.16.7",
    "@types/sharp": "^0.30.2",
    "@typescript-eslint/eslint-plugin": "^5.19.0",
    "@typescript-eslint/parser": "^5.19.0",
    "eslint": "^8.13.0",
    "eslint-config-prettier": "^8.5.0",
    "eslint-plugin-jest": "^26.1.4",
    "eslint-plugin-prettier": "^4.0.0",
    "icojs": "^0.16.1",
    "jest": "^27.5.1",
    "jest-image-snapshot": "^4.5.1",
    "prettier": "^2.6.2",
    "rimraf": "^3.0.2",
    "typescript": "^4.6.3",
    "unbuild": "^0.7.4"
  },
  "jest": {
    "testTimeout": 180000,
    "setupFilesAfterEnv": [
      "<rootDir>/test/setup.js"
    ],
    "collectCoverage": true,
    "collectCoverageFrom": [
      "src/**/*.ts",
      "src/**/*.js"
    ],
    "coverageDirectory": "<rootDir>/coverage",
    "coverageReporters": [
      "text-summary",
      "html"
    ]
  }
}
