{
  "name": "filesniffer",
  "version": "1.0.3",
  "description": "Search files the easy way.",
  "main": "index.js",
  "scripts": {
    "jsdoc": "jsdoc -c ./docconfig/jsdoc.json",
    "build": "tsc",
    "watch": "tsc --watch",
    "clean": "rm -fr dist/*",
    "prepublish": "npm run build",
    "prepublishOnly": "tsc -p ./ --outDir dist",
    "test": "mocha -r ts-node/register test/*.ts",
    "posttest": "npm run lint",
    "pretest": "npm run build",
    "lint": "tslint --project tsconfig.json",
    "coverage": "nyc mocha && nyc report --reporter=html && nyc report --reporter=json-summary"
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/nspragg/filesniffer.git"
  },
  "keywords": [
    "file",
    "recursive",
    "search",
    "filesniffer",
    "file",
    "sniffer",
    "contains",
    "contents",
    "find",
    "directory",
    "walk",
    "walker",
    "promise",
    "finder",
    "fs",
    "grep"
  ],
  "license": "Apache-2.0",
  "bugs": {
    "url": "https://github.com/nspragg/filesniffer/issues"
  },
  "homepage": "https://github.com/nspragg/filesniffer",
  "devDependencies": {
    "@types/mocha": "^2.2.43",
    "@types/node": "^8.0.33",
    "@types/typescript": "^2.0.0",
    "chai": "^4.1.2",
    "coveralls": "^2.11.9",
    "eslint": "^3.11.1",
    "eslint-config-iplayer-base": "^1.0.0",
    "istanbul": "1.1.0-alpha.1",
    "jsdoc": "^3.5.5",
    "mocha": "^3.5.3",
    "nyc": "^11.4.1",
    "sinon": "^2.3.6",
    "ts-node": "^3.3.0",
    "tslint": "^5.8.0",
    "tslint-config-airbnb": "^5.3.1",
    "tslint-eslint-rules": "^4.1.1",
    "typescript": "^2.6.1"
  },
  "dependencies": {
    "bluebird": "^3.3.3",
    "byline": "^4.2.1",
    "filehound": "^1.16.2",
    "lodash": "^4.6.1",
    "sinon": "^1.17.4"
  },
  "nyc": {
    "include": [
      "src/*.ts"
    ],
    "extension": [
      ".ts"
    ],
    "require": [
      "ts-node/register"
    ],
    "sourceMap": true,
    "instrument": true
  }
}
