{
  "name": "xml-parser-xo",
  "version": "4.1.6",
  "repository": "github:chrisbottin/xml-parser",
  "bugs": {
    "url": "https://github.com/chrisbottin/xml-parser/issues"
  },
  "homepage": "https://github.com/chrisbottin/xml-parser#readme",
  "description": "Parse a XML string into a proprietary syntax tree",
  "author": "Chris Bottin <chrisbottin@gmail.com>",
  "license": "MIT",
  "main": "./dist/cjs/index.js",
  "es2015": "./dist/esm/index.js",
  "types": "./dist/types/index.d.ts",
  "sideEffects": false,
  "scripts": {
    "lint": "eslint . --ext=js,ts",
    "clean": "rm -rf ./dist",
    "compile": "npm run clean && npm run lint && npm run compile:commonjs && npm run compile:esnext && npm run compile:types",
    "compile:commonjs": "tsc --module commonjs --outDir ./dist/cjs --noEmit false",
    "compile:esnext": "tsc --module esnext --outDir ./dist/esm --noEmit false",
    "compile:types": "tsc --emitDeclarationOnly --declaration --declarationMap --outDir ./dist/types --noEmit false",
    "test": "mocha --require=ts-node/register --extension=js,ts --spec=test",
    "prepublishOnly": "echo Please use publish.sh && exit 1"
  },
  "engines": {
    "node": ">= 20"
  },
  "keywords": [
    "xml",
    "parse",
    "parser",
    "convert",
    "converter",
    "syntax",
    "tree"
  ],
  "devDependencies": {
    "@types/chai": "^4.3.3",
    "@types/mocha": "^7.0.2",
    "@types/node": "^14.18.29",
    "@typescript-eslint/eslint-plugin": "^8.0.0",
    "@typescript-eslint/parser": "^8.0.0",
    "@eslint/js": "^10.0.0",
    "chai": "^4.3.4",
    "eslint": "^10.0.0",
    "globals": "^15.0.0",
    "mocha": "^10.2.0",
    "ts-node": "^10.9.1",
    "typescript": "^4.8.3"
  }
}
