{
  "name": "sitemap",
  "version": "4.1.1",
  "description": "Sitemap-generating lib/cli",
  "keywords": [
    "sitemap",
    "sitemap.xml"
  ],
  "homepage": "https://github.com/ekalinin/sitemap.js#readme",
  "bugs": {
    "url": "https://github.com/ekalinin/sitemap.js/issues"
  },
  "repository": {
    "type": "git",
    "url": "git://github.com/ekalinin/sitemap.js.git"
  },
  "license": "MIT",
  "author": "Eugene Kalinin <e.v.kalinin@gmail.com>",
  "main": "dist/index.js",
  "types": "dist/index.d.ts",
  "bin": "./dist/cli.js",
  "directories": {
    "lib": "lib",
    "test": "tests"
  },
  "scripts": {
    "build": "tsc",
    "prepublishOnly": "sort-package-json && npm run test",
    "test": "eslint lib/* ./cli.ts && tsc && jest && npm run test:xmllint",
    "test-fast": "jest ./tests/sitemap-item.test.ts ./tests/sitemap-index.test.ts ./tests/sitemap.test.ts ./tests/sitemap-shape.test.ts",
    "test-perf": "node ./tests/perf.js > /dev/null",
    "test:schema": "node tests/alltags.js | xmllint --schema schema/all.xsd --noout -",
    "test:typecheck": "tsc",
    "test:xmllint": "if which xmllint; then npm run test:schema; else echo 'skipping xml tests. xmllint not installed'; fi"
  },
  "husky": {
    "hooks": {
      "pre-commit": "sort-package-json",
      "pre-push": "npm test"
    }
  },
  "eslintConfig": {
    "env": {
      "es6": true,
      "jasmine": true,
      "jest": true,
      "node": true
    },
    "extends": [
      "eslint:recommended",
      "plugin:@typescript-eslint/recommended"
    ],
    "parser": "@typescript-eslint/parser",
    "parserOptions": {
      "ecmaVersion": 2018,
      "sourceType": "module"
    },
    "rules": {
      "no-case-declarations": 0,
      "no-console": 0,
      "no-unused-vars": 0,
      "react/prop-types": 0,
      "indent": "off",
      "no-dupe-class-members": "off",
      "@typescript-eslint/indent": [
        "error",
        2
      ],
      "@typescript-eslint/no-parameter-properties": "off",
      "@typescript-eslint/no-unused-vars": [
        "error",
        {
          "args": "none"
        }
      ],
      "@typescript-eslint/explicit-member-accessibility": "off",
      "@typescript-eslint/interface-name-prefix": [
        2,
        "always"
      ]
    }
  },
  "jest": {
    "collectCoverage": true,
    "collectCoverageFrom": [
      "lib/**/*.ts",
      "!lib/**/*.d.ts",
      "!lib/xmllint.ts",
      "!node_modules/"
    ],
    "coverageThreshold": {
      "global": {
        "branches": 80,
        "functions": 90,
        "lines": 90,
        "statements": 90
      }
    }
  },
  "dependencies": {
    "@types/node": "^12.0.2",
    "@types/sax": "^1.2.0",
    "arg": "^4.1.1",
    "sax": "^1.2.4",
    "xmlbuilder": "^13.0.0"
  },
  "devDependencies": {
    "@babel/core": "^7.5.5",
    "@babel/plugin-proposal-class-properties": "^7.5.5",
    "@babel/plugin-transform-typescript": "^7.5.5",
    "@babel/preset-env": "^7.5.5",
    "@babel/preset-typescript": "^7.3.3",
    "@types/jest": "^24.0.17",
    "@typescript-eslint/eslint-plugin": "^1.13.0",
    "@typescript-eslint/parser": "^1.13.0",
    "babel-eslint": "^10.0.1",
    "babel-polyfill": "^6.26.0",
    "eslint": "^6.1.0",
    "husky": "^3.0.3",
    "jasmine": "^3.4.0",
    "jest": "^24.8.0",
    "sort-package-json": "^1.22.1",
    "source-map": "~0.7.3",
    "stats-lite": "^2.2.0",
    "typescript": "^3.5.3"
  },
  "engines": {
    "node": ">=8.9.0",
    "npm": ">=5.6.0"
  },
  "License": "MIT"
}
