{
  "name": "tree-walk",
  "version": "0.4.0",
  "author": "Patrick Dubroy <pdubroy@gmail.com> (http://dubroy.com)",
  "license": "MIT",
  "dependencies": {
    "util-extend": "^1.0.1"
  },
  "devDependencies": {
    "browserify": "^5.9.1",
    "dirwatch": "^1.1.0",
    "eslint": "^0.17.1",
    "tap-spec": "^1.0.1",
    "tape": "^2.13.4",
    "underscore": "^1.8.2",
    "watchify": "^1.0.1"
  },
  "scripts": {
    "build": "browserify -d -s tree-walker -o dist/tree-walker-bundle.js index.js",
    "watch": "watchify -v -d -s tree-walker -o dist/tree-walker-bundle.js index.js",
    "test": "tape test/*.js | tap-spec",
    "test-continuous": "dirwatch *.js test/*.js -c 'which tput && tput clear; date; tape test/*.js' | tap-spec",
    "prepublish": "npm run build && npm run test && npm run lint",
    "lint": "eslint *.js lib test"
  },
  "description": "Helpers for traversing, inspecting, and transforming arbitrary trees.",
  "main": "index.js",
  "directories": {
    "test": "test"
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/pdubroy/tree-walk.git"
  },
  "keywords": [
    "traverse",
    "walk",
    "tree",
    "recursive"
  ],
  "bugs": {
    "url": "https://github.com/pdubroy/tree-walk/issues"
  },
  "homepage": "https://github.com/pdubroy/tree-walk"
}
