{
  "name": "node-source-walk",
  "version": "8.0.0",
  "description": "Execute a callback on every node of a source code's AST and stop walking when you see fit",
  "type": "module",
  "exports": {
    ".": "./index.js"
  },
  "files": [
    "index.js"
  ],
  "scripts": {
    "lint": "xo",
    "fix": "xo --fix",
    "uvu": "uvu test -i fixtures",
    "test": "npm run lint && npm run uvu",
    "test:ci": "c8 npm run uvu"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/dependents/node-source-walk.git"
  },
  "keywords": [
    "ast",
    "traversal",
    "acorn",
    "static analysis",
    "source code",
    "walker",
    "jsx"
  ],
  "author": "Joel Kemp <joel@mrjoelkemp.com>",
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/dependents/node-source-walk/issues"
  },
  "homepage": "https://github.com/dependents/node-source-walk",
  "engines": {
    "node": ">=20.19.0 || >=22.12.0"
  },
  "dependencies": {
    "@babel/parser": "^7.29.3"
  },
  "devDependencies": {
    "c8": "^11.0.0",
    "sinon": "^22.0.0",
    "uvu": "^0.5.6",
    "xo": "^2.0.2"
  }
}
