{
  "name": "require-dir-all",
  "version": "0.4.15",
  "description": "Yet another Node.js helper to require all files in directory",
  "main": "./index.js",
  "engines": {
    "node": ">=4"
  },
  "scripts": {
    "nsp": "nsp check",
    "_deps-check": "npm-check-updates --error-level 2",
    "_deps-update": "echo '* Updating packages versions... '; npm-check-updates -u --upgradeAll --error-level 1 && npm install",
    "_check-changes": "echo '* Checking if git directory is clean... '; bash -c '[[ -z $(git status -uno --porcelain) ]]'",
    "update-deps": "npm run _check-changes && npm run _deps-update && npm test && git commit -am 'updated deps'",
    "lint": "eslint -f unix .",
    "inspect": "jsinspect --ignore 'coverage|test'",
    "pretest": "npm run lint && npm run inspect && npm run nsp && npm run _deps-check",
    "_test": "node ./node_modules/istanbul/lib/cli.js cover ./node_modules/mocha/bin/_mocha -- -R spec ./test/*",
    "test": "npm run _test",
    "test-travis": "./node_modules/istanbul/lib/cli.js cover ./node_modules/mocha/bin/_mocha -- -R spec ./test/*",
    "_commit": "git commit -am \"commit by 'npm run commit'\"",
    "_push": "git push --follow-tags",
    "commit-and-push": "npm run _commit && npm test && npm run _push",
    "_patch-release": "npm version patch && npm publish",
    "_minor-release": "npm version minor && npm publish",
    "_major-release": "npm version major && npm publish",
    "patch-release": "npm test && npm run _patch-release && npm run _push",
    "minor-release": "npm test && npm run _minor-release && npm run _push",
    "__major-release": "npm test && npm run _major-release && npm run _push",
    "coverall": "cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/alykoshin/require-dir-all.git"
  },
  "keywords": [
    "javascript",
    "node",
    "js",
    "nodejs",
    "node.js",
    "require",
    "directory",
    "folder",
    "dir",
    "index",
    "recursive"
  ],
  "author": "Alexander Lykoshin <alykoshin@gmail.com>",
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/alykoshin/require-dir-all/issues"
  },
  "homepage": "https://github.com/alykoshin/require-dir-all#readme",
  "dependencies": {
    "mini-deep-assign": "0.0.8",
    "module-parent": "0.0.2"
  },
  "devDependencies": {
    "chai": "^4.1.2",
    "coveralls": "^3.0.0",
    "istanbul": "^0.4.5",
    "mocha": "^4.1.0",
    "mockery": "^2.1.0",
    "npm-check-updates": "^2.14.0",
    "nsp": "^3.1.0"
  }
}
