{
  "name": "sitemap-generator",
  "version": "8.5.1",
  "description": "Easily create XML sitemaps for your website.",
  "homepage": "https://github.com/lgraubner/sitemap-generator",
  "author": "Lars Graubner <mail@larsgraubner.de> (https://larsgraubner.com)",
  "keywords": [
    "sitemap",
    "xml",
    "sitemap.xml",
    "generator",
    "crawler",
    "seo",
    "google",
    "ecosystem:node"
  ],
  "main": "src/index.js",
  "repository": {
    "type": "git",
    "url": "https://github.com/lgraubner/sitemap-generator.git"
  },
  "bugs": {
    "url": "https://github.com/lgraubner/sitemap-generator/issues"
  },
  "dependencies": {
    "async": "2.6.1",
    "cheerio": "1.0.0-rc.2",
    "cp-file": "6.0.0",
    "crypto-random-string": "1.0.0",
    "date-fns": "1.29.0",
    "lodash": "4.17.20",
    "mitt": "1.1.3",
    "normalize-url": "3.3.0",
    "simplecrawler": "1.1.9",
    "url-parse": "1.4.7"
  },
  "engines": {
    "node": ">=10"
  },
  "license": "MIT",
  "files": [
    "src",
    "!**/__tests__"
  ],
  "devDependencies": {
    "eslint": "5.8.0",
    "husky": "1.1.2",
    "jest": "24.8.0",
    "lint-staged": "7.3.0",
    "prettier": "1.14.3"
  },
  "scripts": {
    "lint": "eslint src",
    "test": "jest",
    "test:watch": "npm test -- --watch",
    "flow": "flow"
  },
  "lint-staged": {
    "*.js": [
      "eslint --fix",
      "prettier --write",
      "git add"
    ]
  },
  "prettier": {
    "singleQuote": true
  },
  "eslintConfig": {
    "parserOptions": {
      "ecmaVersion": 6
    },
    "extends": "eslint:recommended",
    "env": {
      "node": true,
      "jest": true
    }
  },
  "husky": {
    "hooks": {
      "pre-commit": "lint-staged"
    }
  },
  "release": {
    "tagFormat": "${version}"
  }
}
