{
  "name": "rfc6902",
  "version": "5.2.0",
  "description": "Complete implementation of RFC6902 (patch and diff)",
  "keywords": [
    "json",
    "patch",
    "diff",
    "rfc6902"
  ],
  "homepage": "https://github.com/chbrown/rfc6902",
  "repository": "github:chbrown/rfc6902",
  "author": "Christopher Brown <io@henrian.com> (http://henrian.com)",
  "license": "MIT",
  "devDependencies": {
    "@types/js-yaml": "4.0.9",
    "@types/node": "^25.3.2",
    "ava": "^6.4.1",
    "coveralls": "^3.1.1",
    "js-yaml": "4.1.1",
    "nyc": "^18.0.0",
    "rollup": "^4.59.0",
    "typescript": "^5.9.3"
  },
  "scripts": {
    "prepare": "tsc",
    "pretest": "tsc -b . test -f",
    "test": "nyc ava",
    "posttest": "nyc report --reporter=text-lcov | coveralls || true",
    "dist": "tsc -t ES2015 -m es2015 --types ' ' && rollup index.js --output.format umd --name rfc6902 --output.file dist/rfc6902.js && closure-compiler dist/rfc6902.js > dist/rfc6902.min.js",
    "clean": "tsc -b . test --clean"
  }
}
