{
  "manifest": {
    "name": "svg-parser",
    "version": "2.0.4",
    "description": "Create a JSON-friendly object from an SVG string",
    "main": "dist/svg-parser.umd.js",
    "jsnext:main": "dist/svg-parser.esm.js",
    "module": "dist/svg-parser.esm.js",
    "files": [
      "dist",
      "README.md"
    ],
    "scripts": {
      "test": "mocha",
      "build": "rm -rf dist && rollup -c",
      "pretest": "npm run build",
      "prepublish": "npm run lint && npm test",
      "lint": "eslint src"
    },
    "prettier": {
      "singleQuote": true,
      "useTabs": true,
      "printWidth": 100
    },
    "repository": {
      "type": "git",
      "url": "git+https://github.com/Rich-Harris/svg-parser.git"
    },
    "keywords": [
      "SVG",
      "parser",
      "JSON",
      "object"
    ],
    "author": {
      "name": "Rich Harris"
    },
    "license": "MIT",
    "bugs": {
      "url": "https://github.com/Rich-Harris/svg-parser/issues"
    },
    "homepage": "https://github.com/Rich-Harris/svg-parser#README",
    "devDependencies": {
      "@rollup/plugin-buble": "^0.21.0",
      "@rollup/plugin-node-resolve": "^7.0.0",
      "eslint": "^3.2.2",
      "locate-character": "^2.0.5",
      "mocha": "^3.0.1",
      "prettier": "^1.18.2",
      "rollup": "^1.29.0",
      "source-map-support": "^0.4.2"
    },
    "_registry": "npm",
    "_loc": "/homez.1033/heliovt/.cache/yarn/v6/npm-svg-parser-2.0.4-fdc2e29e13951736140b76cb122c8ee6630eb6b5-integrity/node_modules/svg-parser/package.json",
    "readmeFilename": "README.md",
    "readme": "# svg-parser\n\nTake a string representing an SVG document or fragment, turn it into [HAST](https://github.com/syntax-tree/hast) JavaScript object.\n\n\n## Installation\n\n`npm install svg-parser`, or grab it from [npmcdn.com/svg-parser](https://npmcdn.com/svg-parser).\n\n\n## Usage\n\n```js\nimport { parse } from 'svg-parser';\n\nconst parsed = parse( `\n\t<svg viewBox='0 0 100 100'>\n\t\t<!-- stuff goes here... -->\n\t</svg>\n` );\n/*\n{\n  type: 'root',\n  children: [\n    {\n      type: 'element',\n      tagName: 'svg',\n      properties: {\n        viewBox: '0 0 100 100'\n      },\n      children: [...]\n    }\n  ]\n}\n*/\n```\n\n\n## License\n\nMIT\n"
  },
  "artifacts": [],
  "remote": {
    "resolved": "https://registry.yarnpkg.com/svg-parser/-/svg-parser-2.0.4.tgz#fdc2e29e13951736140b76cb122c8ee6630eb6b5",
    "type": "tarball",
    "reference": "https://registry.yarnpkg.com/svg-parser/-/svg-parser-2.0.4.tgz",
    "hash": "fdc2e29e13951736140b76cb122c8ee6630eb6b5",
    "integrity": "sha512-e4hG1hRwoOdRb37cIMSgzNsxyzKfayW6VOflrwvR+/bzrkyxY/31WkbgnQpgtrNp1SdpJvpUAGTa/ZoiPNDuRQ==",
    "registry": "npm",
    "packageName": "svg-parser",
    "cacheIntegrity": "sha512-e4hG1hRwoOdRb37cIMSgzNsxyzKfayW6VOflrwvR+/bzrkyxY/31WkbgnQpgtrNp1SdpJvpUAGTa/ZoiPNDuRQ== sha1-/cLinhOVFzYUC3bLEiyO5mMOtrU="
  },
  "registry": "npm",
  "hash": "fdc2e29e13951736140b76cb122c8ee6630eb6b5"
}