{
  "name": "xml-class-transformer",
  "version": "3.0.1",
  "description": "Fluently parse XML into beautiful JS/TS classes and serialize them. GoLang's encoding/xml alternative for JS/TS world.",
  "cdn": "dist/index.umd.js",
  "main": "dist/index.js",
  "types": "types/index.d.ts",
  "unpkg": "dist/index.umd.js",
  "module": "dist/index.esm.js",
  "jsdelivr": "dist/index.umd.js",
  "umd:main": "dist/index.umd.js",
  "exports": {
    ".": [
      {
        "import": {
          "types": "./types/index.d.ts",
          "default": "./dist/index.mjs"
        },
        "require": {
          "types": "./types/index.d.ts",
          "default": "./dist/index.cjs"
        },
        "default": {
          "types": "./types/index.d.ts",
          "default": "./dist/index.js"
        }
      },
      "./dist/index.js"
    ]
  },
  "homepage": "https://github.com/Edgar-P-Yan/xml-class-transformer#readme",
  "scripts": {
    "doc": "typedoc src/index.ts",
    "test": "jest",
    "lint": "eslint \"*/**/*.{ts,js,json}\"",
    "lint:fix": "eslint \"*/**/*.{ts,js,json}\" --fix",
    "build": "rollup --config ./rollup.config.mjs",
    "prepublishOnly": "npm run build && npm run lint && npm run test",
    "build-all-and-test": "npm run doc && npm run lint && npm run test && npm run build",
    "version": "npm run build-all-and-test && git add .",
    "version-major": "npm version major -m \"chore: bump version to %s\"",
    "version-minor": "npm version minor -m \"chore: bump version to %s\"",
    "version-premajor": "npm version premajor --preid alpha -m \"chore: bump version to %s\"",
    "version-prerelease": "npm version prerelease --preid alpha -m \"chore: bump version to %s\"",
    "publish-prerelease": "npm publish --tag=alpha"
  },
  "dependencies": {
    "xml-js-v2": "^2.2.1"
  },
  "devDependencies": {
    "@types/chai": "^4.3.4",
    "@types/eslint": "^8.4.10",
    "@types/jest": "^29.2.4",
    "@types/lodash": "^4.17.13",
    "@types/prettier": "^2.7.2",
    "@typescript-eslint/eslint-plugin": "^5.47.0",
    "@typescript-eslint/parser": "^5.47.0",
    "chai": "^4.3.7",
    "class-validator": "^0.14.1",
    "eslint": "^8.30.0",
    "eslint-config-prettier": "^8.5.0",
    "eslint-plugin-prettier": "^4.2.1",
    "jest": "^29.3.1",
    "lodash": "^4.17.21",
    "lodash._baseisequal": "^4.1.1",
    "moment": "^2.30.1",
    "prettier": "^2.8.1",
    "rollup": "^2.79.1",
    "rollup-plugin-terser": "^7.0.2",
    "rollup-plugin-typescript2": "^0.34.1",
    "ts-jest": "^29.0.3",
    "ts-jest-resolver": "^2.0.0",
    "ts-node": "^10.9.2",
    "typedoc": "^0.23.23",
    "typedoc-plugin-markdown": "^3.14.0",
    "typescript": "^4.9.4"
  },
  "files": [
    "dist/",
    "types/"
  ],
  "repository": {
    "type": "git",
    "url": "git+https://github.com/Edgar-P-Yan/xml-class-transformer.git"
  },
  "keywords": [],
  "author": {
    "name": "Edgar Pogosyan"
  },
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/Edgar-P-Yan/xml-class-transformer/issues"
  }
}
