{
  "name": "mask-json",
  "version": "1.0.3",
  "repository": {
    "type": "git",
    "url": "https://github.com/nunofgs/mask-json.git"
  },
  "description": "Redacts values in objects.",
  "keywords": [
    "mask",
    "deep",
    "mask-json",
    "redact"
  ],
  "author": {
    "name": "Nuno Sousa",
    "email": "nunofgs@gmail.com"
  },
  "homepage": "https://github.com/nunofgs/mask-json",
  "bugs": {
    "url": "https://github.com/nunofgs/mask-json/issues"
  },
  "license": "SEE LICENSE IN LICENSE",
  "main": "./src/index.js",
  "scripts": {
    "changelog": "github-changelog-generator --owner=nunofgs --repo=mask-json --future-release=v$npm_package_version > CHANGELOG.md",
    "lint": "eslint .",
    "test": "jest",
    "version": "npm run changelog && git add -A CHANGELOG.md"
  },
  "dependencies": {
    "lodash": "^4.17.4"
  },
  "devDependencies": {
    "@uphold/github-changelog-generator": "^0.8.1",
    "eslint": "^6.2.2",
    "eslint-config-uphold": "^1.0.0",
    "husky": "^3.0.4",
    "jest": "^24.9.0",
    "lint-staged": "^9.2.5"
  },
  "engines": {
    "node": ">=5.0.0"
  },
  "husky": {
    "hooks": {
      "pre-commit": "lint-staged"
    }
  },
  "lint-staged": {
    "*.js": [
      "npm run lint --fix",
      "git add"
    ]
  },
  "jest": {
    "collectCoverage": true,
    "modulePaths": [
      "<rootDir>"
    ],
    "testEnvironment": "node",
    "testRegex": "test/.*\\.test.js$"
  }
}
