{
  "name": "json-ptr",
  "version": "2.2.0",
  "author": "Phillip Clark <phillip@flitbit.com>",
  "description": "A complete implementation of JSON Pointer (RFC 6901) for nodejs and modern browsers.",
  "keywords": [
    "6901",
    "json",
    "pointers",
    "fragmentid"
  ],
  "main": "dist/index.js",
  "types": "dist/index.d.ts",
  "files": [
    "dist",
    "dist.browser"
  ],
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "https://github.com/flitbit/json-ptr"
  },
  "scripts": {
    "clean": "rimraf coverage dist dist.browser tmp docs",
    "prebuild": "npm run lint",
    "build:browser": "webpack",
    "build:browser-tests": "webpack --config webpack.tests.config.js",
    "buildall": "tsc --importHelpers -p tsconfig.release.json && npm run build:browser && npm run build:browser-tests && npm run docs",
    "build": "npm run buildall",
    "build:watch": "tsc -w --importHelpers -p tsconfig.release.json",
    "lint": "eslint . --ext .ts,.tsx",
    "lint:fix": "eslint . --ext .ts,.tsx --fix",
    "pretest": "npm run lint:fix",
    "test": "nyc mocha __tests__/**/*.spec.ts",
    "test:watch": "chokidar \"*.js\" \"*.json\" \"src/**/*.ts\" \"__tests__/**/*.ts\" --command \"npm run test\" --initial",
    "cilint": "eslint . --ext .ts,.tsx --format junit --output-file ./reports/eslint/eslint.xml",
    "precibuild": "npm run cilint",
    "cibuild": "npm run buildall",
    "preci": "npm run cibuild",
    "ci": "nyc mocha __tests__/**/*.spec.ts --timeout=10000 --exit --reporter mocha-junit-reporter --reporter-options mochaFile=reports/mocha/test-results.xml",
    "docs": "typedoc --theme minimal --entryPoints src/index.ts && cp _config.yml docs/"
  },
  "devDependencies": {
    "@types/assert-plus": "^1.0.4",
    "@types/bent": "^7.3.2",
    "@types/chai": "^4.2.18",
    "@types/debug": "^4.1.5",
    "@types/mocha": "^8.2.2",
    "@types/node": "~15.0.2",
    "@typescript-eslint/eslint-plugin": "^4.23.0",
    "@typescript-eslint/parser": "^4.23.0",
    "bent": "^7.3.12",
    "chai": "^4.3.4",
    "chokidar-cli": "^2.1.0",
    "eslint": "^7.26.0",
    "eslint-config-prettier": "^8.3.0",
    "eslint-plugin-mocha": "^8.1.0",
    "eslint-plugin-prettier": "^3.4.0",
    "mocha": "^8.4.0",
    "mocha-junit-reporter": "^2.0.0",
    "nyc": "^15.1.0",
    "prettier": "~2.3.0",
    "process": "^0.11.10",
    "rimraf": "~3.0.2",
    "ts-loader": "^9.1.2",
    "ts-node": "^9.1.1",
    "typedoc": "^0.20.36",
    "typescript": "~4.2.4",
    "util": "^0.12.3",
    "webpack": "^5.37.0",
    "webpack-cli": "^4.7.0"
  },
  "nyc": {
    "include": [
      "src/**/*.ts"
    ],
    "extension": [
      ".ts",
      ".tsx"
    ],
    "require": [
      "ts-node/register"
    ],
    "reporter": [
      "text-summary",
      "html"
    ],
    "sourceMap": true,
    "instrument": true
  },
  "dependencies": {
    "tslib": "^2.2.0"
  }
}
