{
  "name": "folder-hash",
  "version": "4.1.2",
  "description": "Create a hash checksum over a folder and its content - its children and their content",
  "main": "index.js",
  "bin": {
    "folder-hash": "bin/folder-hash"
  },
  "scripts": {
    "start": "node sample.js",
    "test": "mocha --reporter spec test",
    "cover": "nyc mocha test",
    "format": "prettier --write *.js examples/ test/",
    "doc": "./node_modules/.bin/jsdoc index.js -R README.md -d doc"
  },
  "author": {
    "name": "Marc Walter",
    "email": "walter.marc@outlook.com"
  },
  "license": "MIT",
  "files": [
    "cli.js",
    "index.js",
    "bin"
  ],
  "repository": {
    "type": "git",
    "url": "https://github.com/marc136/node-folder-hash.git"
  },
  "nyc": {
    "reporter": [
      "lcov",
      "text"
    ],
    "report-dir": "test_coverage"
  },
  "dependencies": {
    "debug": "4.4.0",
    "minimatch": "7.4.9"
  },
  "devDependencies": {
    "chai": "^4.3.6",
    "chai-as-promised": "^7.1.1",
    "clone": "^2.1.2",
    "ignore": "^5.2.0",
    "jsdoc": "4.0.2",
    "memfs": "^3.4.1",
    "mocha": "11.0.1",
    "nyc": "17.1.0",
    "prettier": "~2.8.2"
  },
  "engines": {
    "node": ">=10.10.0"
  }
}
