{
  "name": "@jsonjoy.com/json-pointer",
  "packageManager": "yarn@4.5.0",
  "publishConfig": {
    "access": "public"
  },
  "version": "18.12.0",
  "description": "High-performance JSON Pointer implementation",
  "author": {
    "name": "streamich",
    "url": "https://github.com/streamich"
  },
  "homepage": "https://github.com/streamich/json-joy/packages/json-pointer",
  "repository": "streamich/json-joy",
  "funding": {
    "type": "github",
    "url": "https://github.com/sponsors/streamich"
  },
  "keywords": [
    "json-pointer",
    "json",
    "pointer",
    "jit",
    "selector",
    "pick"
  ],
  "engines": {
    "node": ">=10.0"
  },
  "main": "lib/index.js",
  "types": "lib/index.d.ts",
  "typings": "lib/index.d.ts",
  "files": [
    "LICENSE",
    "lib/"
  ],
  "license": "Apache-2.0",
  "scripts": {
    "clean": "npx rimraf lib typedocs coverage gh-pages yarn-error.log",
    "build": "tsc -b tsconfig.build.json",
    "jest": "node -r ts-node/register ./node_modules/.bin/jest",
    "test": "jest --maxWorkers 7",
    "test:ci": "yarn jest --maxWorkers 3 --no-cache",
    "coverage": "yarn test --collectCoverage",
    "typedoc": "typedoc",
    "build:pages": "npx rimraf gh-pages && mkdir -p gh-pages && cp -r typedocs/* gh-pages && cp -r coverage gh-pages/coverage",
    "deploy:pages": "gh-pages -d gh-pages",
    "publish-coverage-and-typedocs": "yarn typedoc && yarn coverage && yarn build:pages && yarn deploy:pages",
    "typecheck": "tsc -b --noEmit"
  },
  "jest": {
    "preset": "ts-jest",
    "testEnvironment": "node",
    "moduleFileExtensions": [
      "ts",
      "js",
      "tsx"
    ],
    "transform": {
      "^.+\\.tsx?$": "ts-jest"
    },
    "transformIgnorePatterns": [
      ".*/node_modules/.*"
    ],
    "testRegex": ".*/(__tests__|__jest__|demo)/.*(?<!\\.vi)\\.(test|spec)\\.tsx?$",
    "rootDir": ".",
    "testPathIgnorePatterns": [
      "node_modules",
      "\\.vi\\.(test|spec)\\.tsx?$"
    ]
  },
  "peerDependencies": {
    "tslib": "2"
  },
  "dependencies": {
    "@jsonjoy.com/util": "18.12.0"
  }
}