{
  "name": "@dabble/json-patch",
  "description": "Immutable JSON Patch implementation based on RFC 6902",
  "version": "0.2.5",
  "author": "Jacob Wright <jacwright@gmail.com>",
  "bugs": {
    "url": "https://github.com/dabblewriter/json-patch/issues"
  },
  "devDependencies": {
    "@types/node": "^17.0.15",
    "npm-run-all": "^4.1.5",
    "typescript": "^4.5.5"
  },
  "peerDependencies": {
    "typewriter-document": "0.6.x"
  },
  "files": [
    "package.json",
    "README.md",
    "lib"
  ],
  "homepage": "https://github.com/dabblewriter/json-patch/",
  "keywords": [
    "immutable",
    "json",
    "patch",
    "rfc6902"
  ],
  "license": "MIT",
  "type": "module",
  "main": "lib/index.js",
  "types": "lib/index.d.ts",
  "repository": {
    "type": "git",
    "url": "https://github.com/dabblewriter/json-patch.git"
  },
  "scripts": {
    "build": "tsc",
    "clean": "rm -fr npm-debug.log lib",
    "postversion": "git push && git push --tags && npm run clean",
    "prepublishOnly": "npm-run-all clean build",
    "preversion": "npm-run-all clean build"
  }
}
