{
  "name": "feedparser",
  "author": "Dan MacTough <danmactough@gmail.com>",
  "description": "Robust RSS Atom and RDF feed parsing using sax js",
  "bin": {
    "feedparser": "bin/feedparser.js"
  },
  "version": "2.3.1",
  "keywords": [
    "rss",
    "feed",
    "atom",
    "rdf",
    "xml",
    "syndication",
    "rsscloud",
    "pubsubhubbub"
  ],
  "license": "MIT",
  "homepage": "http://github.com/danmactough/node-feedparser",
  "repository": {
    "type": "git",
    "url": "git://github.com/danmactough/node-feedparser.git"
  },
  "bugs": {
    "url": "http://github.com/danmactough/node-feedparser/issues"
  },
  "main": "index.js",
  "types": "./index.d.ts",
  "files": [
    "index.js",
    "index.d.ts",
    "bin/*.js",
    "lib"
  ],
  "engines": {
    "node": ">= 10.18.1"
  },
  "dependencies": {
    "addressparser": "^1.0.1",
    "array-indexofobject": "~0.0.1",
    "lodash.assign": "^4.2.0",
    "lodash.get": "^4.4.2",
    "lodash.has": "^4.5.2",
    "lodash.uniq": "^4.5.0",
    "mri": "^1.1.5",
    "readable-stream": "^2.3.7",
    "sax": ">=1.2.4 <1.4.4"
  },
  "devDependencies": {
    "@types/node": "^25.5.0",
    "@types/readable-stream": "^2.3.15",
    "@types/sax": "^1.2.7",
    "eslint": "^6.8.0",
    "iconv-lite": "^0.5.1",
    "mocha": "^7.1.2",
    "node-fetch": "^2.6.0",
    "typescript": "^5.9.3"
  },
  "scripts": {
    "lint": "eslint .",
    "typecheck": "node -e \"process.exit(process.release.lts < 'Gallium' ? 0 : 1)\" || tsc",
    "typecheck:src": "node -e \"process.exit(process.release.lts < 'Gallium' ? 0 : 1)\" || tsc --project tsconfig.src.json",
    "pretest": "npm run lint && npm run typecheck && npm run typecheck:src",
    "test": "mocha",
    "version": "git changelog ; git add History.md"
  },
  "mocha": {
    "require": "./test/common.js",
    "globals": [
      "assert",
      "fs",
      "FeedParser"
    ],
    "reporter": "spec",
    "timeout": 5000
  }
}
