{
  "name": "fs-find",
  "version": "0.4.0",
  "description": "Filesystem recursive asynchronous find",
  "author": "muji <noop@xpm.io>",
  "main": "lib/index",
  "license": "MIT",
  "homepage": "https://github.com/tmpfs/fs-find",
  "repository": {
    "type": "git",
    "url": "https://github.com/tmpfs/fs-find"
  },
  "bugs": {
    "url": "https://github.com/tmpfs/fs-find/issues"
  },
  "keywords": [
    "fs",
    "search",
    "find",
    "walk",
    "filter",
    "traverse",
    "async"
  ],
  "devDependencies": {
    "chai": "~3.4.1",
    "coveralls": "~2.11.6",
    "istanbul": "~0.4.2",
    "mocha": "~2.3.4"
  },
  "scripts": {
    "lint": "jshint . && jscs .",
    "docs": "npm run readme",
    "clean": "rm -rf coverage target",
    "readme": "mdp --force -v",
    "pretest": "npm run posttest && mkdir -p test/fixtures/empty",
    "posttest": "rm -rf target",
    "test": "NODE_ENV=test mocha test/global.js ${SPEC:-test/spec}",
    "cover": "npm run pretest && NODE_ENV=test istanbul cover --root ./lib _mocha -- test/global.js ${SPEC:-test/spec}; npm run posttest",
    "coveralls": "cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js"
  },
  "mdp": {
    "title": "Filesystem Find",
    "pedantic": true,
    "include": "doc/readme",
    "require": "lib",
    "links": "links.md",
    "toc": "Table of Contents",
    "base": "https://github.com/tmpfs/fs-find",
    "partial": [
      {
        "inc": [
          "introduction.md",
          "install.md",
          "usage.md",
          "developer.md",
          "license.md"
        ]
      }
    ]
  }
}
