{
  "manifest": {
    "name": "jsonpointer",
    "description": "Simple JSON Addressing.",
    "tags": [
      "util",
      "simple",
      "util",
      "utility"
    ],
    "version": "5.0.1",
    "author": {
      "name": "Jan Lehnardt",
      "email": "jan@apache.org"
    },
    "contributors": [
      {
        "name": "Joe Hildebrand",
        "email": "joe-github@cursive.net"
      },
      {
        "name": "Marc Bachmann",
        "email": "marc.brookman@gmail.com"
      }
    ],
    "repository": {
      "type": "git",
      "url": "https://github.com/janl/node-jsonpointer.git"
    },
    "bugs": {
      "url": "http://github.com/janl/node-jsonpointer/issues"
    },
    "engines": {
      "node": ">=0.10.0"
    },
    "main": "./jsonpointer",
    "typings": "jsonpointer.d.ts",
    "files": [
      "jsonpointer.js",
      "jsonpointer.d.ts"
    ],
    "scripts": {
      "test": "npm run test:standard && npm run test:all",
      "test:standard": "standard",
      "test:all": "node test.js",
      "semantic-release": "semantic-release pre && npm publish && semantic-release post"
    },
    "license": "MIT",
    "devDependencies": {
      "semantic-release": "^18.0.0",
      "standard": "^16.0.4"
    },
    "standard": {
      "ignore": [
        "test.js"
      ]
    },
    "_registry": "npm",
    "_loc": "/homez.1033/heliovt/.cache/yarn/v6/npm-jsonpointer-5.0.1-2110e0af0900fd37467b5907ecd13a7884a1b559-integrity/node_modules/jsonpointer/package.json",
    "readmeFilename": "README.md",
    "readme": "# JSON Pointer for Node.js\n\nThis is an implementation of [JSON Pointer](https://tools.ietf.org/html/rfc6901).\n\n## CLI\n\nLooking to filter JSON from the command line? Check out [jsonpointer-cli](https://github.com/joeyespo/jsonpointer-cli).\n\n## Usage\n```javascript\nvar jsonpointer = require('jsonpointer');\nvar obj = { foo: 1, bar: { baz: 2}, qux: [3, 4, 5]};\n\njsonpointer.get(obj, '/foo');     // returns 1\njsonpointer.get(obj, '/bar/baz'); // returns 2\njsonpointer.get(obj, '/qux/0');   // returns 3\njsonpointer.get(obj, '/qux/1');   // returns 4\njsonpointer.get(obj, '/qux/2');   // returns 5\njsonpointer.get(obj, '/quo');     // returns undefined\n\njsonpointer.set(obj, '/foo', 6);  // sets obj.foo = 6;\njsonpointer.set(obj, '/qux/-', 6) // sets obj.qux = [3, 4, 5, 6]\n\nvar pointer = jsonpointer.compile('/foo')\npointer.get(obj)    // returns 1\npointer.set(obj, 1) // sets obj.foo = 1\n```\n\n## Testing\n\n    $ npm test\n    All tests pass.\n    $\n\n[![Node.js CI](https://github.com/janl/node-jsonpointer/actions/workflows/node.js.yml/badge.svg)](https://github.com/janl/node-jsonpointer/actions/workflows/node.js.yml)\n\n## Author\n\n(c) 2011-2021 Jan Lehnardt <jan@apache.org> & Marc Bachmann <https://github.com/marcbachmann>\n\nThanks to all contributors.\n\n## License\n\nMIT License.\n",
    "licenseText": "The MIT License (MIT)\n\nCopyright (c) 2011-2015 Jan Lehnardt <jan@apache.org> & Marc Bachmann <https://github.com/marcbachmann> \n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n"
  },
  "artifacts": [],
  "remote": {
    "resolved": "https://registry.yarnpkg.com/jsonpointer/-/jsonpointer-5.0.1.tgz#2110e0af0900fd37467b5907ecd13a7884a1b559",
    "type": "tarball",
    "reference": "https://registry.yarnpkg.com/jsonpointer/-/jsonpointer-5.0.1.tgz",
    "hash": "2110e0af0900fd37467b5907ecd13a7884a1b559",
    "integrity": "sha512-p/nXbhSEcu3pZRdkW1OfJhpsVtW1gd4Wa1fnQc9YLiTfAjn0312eMKimbdIQzuZl9aa9xUGaRlP9T/CJE/ditQ==",
    "registry": "npm",
    "packageName": "jsonpointer",
    "cacheIntegrity": "sha512-p/nXbhSEcu3pZRdkW1OfJhpsVtW1gd4Wa1fnQc9YLiTfAjn0312eMKimbdIQzuZl9aa9xUGaRlP9T/CJE/ditQ== sha1-IRDgrwkA/TdGe1kH7NE6eIShtVk="
  },
  "registry": "npm",
  "hash": "2110e0af0900fd37467b5907ecd13a7884a1b559"
}