{
  "name": "sitemapper",
  "version": "3.2.20",
  "description": "Parser for XML Sitemaps to be used with Robots.txt and web crawlers",
  "keywords": [
    "parse",
    "sitemap",
    "xml",
    "robots.txt",
    "sitemaps",
    "crawlers",
    "webcrawler"
  ],
  "homepage": "http://github.com/seantomburke/sitemapper",
  "tonicExampleFilename": "example.js",
  "bugs": {
    "url": "http://github.com/seantomburke/sitemapper/issues"
  },
  "license": "MIT",
  "files": [
    "lib",
    "sitemapper.d.ts"
  ],
  "main": "./lib/assets/sitemapper.js",
  "types": "./sitemapper.d.ts",
  "repository": {
    "type": "git",
    "url": "git://github.com/seantomburke/sitemapper.git"
  },
  "author": {
    "name": "Sean Thomas Burke",
    "email": "seantomburke@users.noreply.github.com",
    "url": "http://www.seantburke.com"
  },
  "scripts": {
    "compile": "babel src -d lib -s && tsc --project ./src/tests/",
    "build": "npm run clean && npm run compile",
    "start": "npm run build && node lib/examples/index.js",
    "test": "npm run build && mocha ./lib/tests/*.js && npm run lint",
    "lint": "npm run lint:eslint && npm run lint:prettier",
    "lint:eslint": "eslint src --config eslint.config.mjs",
    "lint:eslint:fix": "eslint src --config eslint.config.mjs --fix",
    "lint:prettier": "prettier --check .",
    "lint:prettier:fix": "prettier --write .",
    "clean": "rm -rf lib",
    "prepack": "npm run build"
  },
  "maintainers": [
    {
      "name": "Sean Thomas Burke",
      "email": "seantomburke@users.noreply.github.com",
      "url": "http://www.seantburke.com"
    }
  ],
  "directories": {
    "lib": "./lib",
    "test": "./test"
  },
  "engines": {
    "node": ">= 10.0.0"
  },
  "devDependencies": {
    "@babel/cli": "^7.12.8",
    "@babel/core": "^7.12.9",
    "@babel/preset-env": "^7.12.7",
    "@babel/runtime": "^7.12.5",
    "@eslint/js": "^8.57.0",
    "@types/async": "^3.2.4",
    "@types/got": "^9.6.11",
    "@types/is-url": "^1.2.28",
    "@types/mocha": "^8.0.4",
    "@types/xml2js": "^0.4.7",
    "async": "^3.2.0",
    "babel-plugin-add-module-exports": "^1.0.4",
    "babel-preset-minify": "^0.5.1",
    "eslint": "^8.56.0",
    "eslint-config-prettier": "^9.1.0",
    "eslint-plugin-mocha": "^10.5.0",
    "eslint-plugin-prettier": "^5.1.3",
    "globals": "^13.24.0",
    "is-url": "^1.2.4",
    "mocha": "^10.8.2",
    "prettier": "^3.3.3",
    "should": "^13.2.3",
    "ts-node": "^9.0.0",
    "typescript": "^4.1.2"
  },
  "dependencies": {
    "fast-xml-parser": "^4.5.0",
    "got": "^11.8.0",
    "is-gzip": "2.0.0",
    "p-limit": "^3.1.0"
  }
}
