{
  "name": "json-tolerant-reader",
  "version": "1.0.0",
  "description": "A lightweight utility for recursively searching and extracting values from nested JSON structures by key name. Inspired by Martin Fowler's Tolerant Reader pattern.",
  "main": "index.js",
  "scripts": {
    "lint": "standard | snazzy",
    "lint:fix": "standard --fix | snazzy",
    "test": "npm run lint && npm run unit",
    "unit": "node --test --test-concurrency=1 ./test/**/*.test.js"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/leandroandrade/json-tolerant-reader.git"
  },
  "keywords": [
    "tolerant reader",
    "tolerant",
    "reader",
    "json",
    "json reader",
    "recursive json reader"
  ],
  "author": {
    "name": "Leandro Andrade",
    "email": "leandro.andrade2588@gmail.com",
    "url": "https://github.com/leandroandrade"
  },
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/leandroandrade/json-tolerant-reader/issues"
  },
  "homepage": "https://github.com/leandroandrade/json-tolerant-reader#readme",
  "devDependencies": {
    "snazzy": "^9.0.0",
    "standard": "^17.1.2"
  }
}
