{
  "name": "hashmyjs",
  "version": "2.0.2",
  "description": "A simple NodeJS JS file/code hasher.",
  "main": "hashmyjs.js",
  "bin": {
    "hashmyjs": "./index.js"
  },
  "scripts": {
    "start": "node index.js",
    "debug": "DEBUG=true node index.js",
    "test": "snyk test && jest --maxWorkers=4",
    "test-debug": "node --inspect-brk ./node_modules/.bin/jest -i --env jest-environment-node-debug",
    "lint:js": "eslint -c ./config/.eslintrc.js *.js {src,test}/*.js",
    "doc:lint": "documentation lint src/**",
    "doc:md": "documentation build *.js -f md -a public -o DOCUMENTATION.md",
    "doc": "npm run doc:lint && npm run doc:md",
    "fmt": "prettier --write *.js {src,test}/*.js",
    "flowchart": "js2flowchart",
    "cc": "cr -c ./config/.complexrc",
    "cc:all": "npm run cc *.js src/*.js",
    "commit": "git-cz",
    "lint-staged": "lint-staged",
    "lint:md": "remark . .github",
    "lint": "npm run fmt && npm run lint:md",
    "semantic-release": "semantic-release",
    "prepare": "snyk protect",
    "contribs:add": "all-contributors add",
    "contribs:generate": "all-contributors generate",
    "contribs:check": "all-contributors check"
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/Berkmann18/hashmyjs.git"
  },
  "keywords": [
    "hash",
    "integrity",
    "node",
    "js",
    "javascript",
    "SHA-256",
    "base64",
    "encode",
    "cli",
    "digest"
  ],
  "author": {
    "name": "Maximilian Berkmann",
    "email": "maxieberkmann@gmail.com"
  },
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/Berkmann18/hashmyjs/issues"
  },
  "homepage": "https://github.com/Berkmann18/hashmyjs#readme",
  "dependencies": {
    "colors": "^1.3.3",
    "commander": "^5.0.0",
    "nclr": "^2.0.0",
    "sjcl": "^1.0.8"
  },
  "devDependencies": {
    "@semantic-release/changelog": "^5.0.0",
    "@semantic-release/git": "^9.0.0",
    "@semantic-release/npm": "^7.0.0",
    "all-contributors-cli": "^6.7.0",
    "conventional-changelog-eslint": "^3.0.1",
    "cz-adapter-eslint": "^0.3.0",
    "documentation": "^12.0.0",
    "eslint": "^6.0.1",
    "eslint-plugin-node": "^11.0.0",
    "eslint-plugin-security": "^1.4.0",
    "eslint-plugin-you-dont-need-lodash-underscore": "^6.4.0",
    "husky": "^4.0.0",
    "jest": "^25.1.0",
    "jest-cli": "^25.1.0",
    "jest-environment-node-debug": "^2.0.0",
    "js2flowchart": "^1.1.7",
    "lint-staged": "^10.0.0",
    "mock-stdin": "^1.0.0",
    "prettier": "^2.0.2",
    "remark-cli": "^8.0.0",
    "remark-preset-lint-consistent": "^3.0.0",
    "remark-preset-lint-recommended": "^4.0.0",
    "semantic-release": "^17.0.2",
    "snyk": "^1.192.4",
    "test-console": "^1.1.0"
  },
  "jest": {
    "collectCoverage": true,
    "collectCoverageFrom": [
      "src/*.js",
      "test/*.js",
      "!**/node_modules/**",
      "!**/_*.js"
    ],
    "coverageThreshold": {
      "global": {
        "branches": 70,
        "functions": 65,
        "lines": 50,
        "statements": 50
      }
    },
    "testEnvironment": "node"
  },
  "engines": {
    "node": ">= 7.0.0",
    "npm": ">= 4.0.0"
  },
  "config": {
    "commitizen": {
      "path": "cz-adapter-eslint"
    }
  },
  "husky": {
    "hooks": {
      "pre-commit": "lint-staged"
    }
  },
  "lint-staged": {
    "*.js": [
      "prettier --write",
      "eslint -c ./config/.eslintrc.js --fix",
      "jest --bail --findRelatedTests --maxWorkers=4",
      "git add"
    ],
    "*.md": [
      "remark",
      "git add"
    ]
  }
}
