{
  "name": "lib-pass-gen",
  "version": "1.0.3",
  "description": "helps users to generate strong passwords by length and type of content",
  "main": "build/index.js",
  "types": "build/index.d.ts",
  "scripts": {
    "start": "nodemon",
    "build": "rimraf ./build && tsc",
    "prepublishOnly": "npm run build",
    "test": "jest --findRelatedTests --bail",
    "prettier-format": "prettier --config .prettierrc src/**/*.ts --write",
    "lint": "eslint . --ext .ts",
    "prepare": "husky install"
  },
  "author": "Stanciu Marius",
  "keywords": [
    "password",
    "generate passwords",
    "strong passwords",
    "secure passwords"
  ],
  "license": "ISC",
  "devDependencies": {
    "@babel/core": "^7.17.9",
    "@babel/preset-env": "^7.16.11",
    "@babel/preset-typescript": "^7.16.7",
    "@types/jest": "^27.4.1",
    "@types/node": "^17.0.25",
    "@typescript-eslint/eslint-plugin": "^5.20.0",
    "@typescript-eslint/parser": "^5.20.0",
    "babel-jest": "^27.5.1",
    "eslint": "^8.14.0",
    "eslint-config-prettier": "^8.5.0",
    "eslint-plugin-prettier": "^4.0.0",
    "husky": "^7.0.0",
    "jest": "^27.5.1",
    "lint-staged": "^12.4.0",
    "nodemon": "^2.0.15",
    "prettier": "^2.6.2",
    "rimraf": "^3.0.2",
    "ts-jest": "^27.1.4",
    "ts-node": "^10.7.0",
    "typescript": "^4.6.3"
  },
  "lint-staged": {
    "**/*.{js,ts}": [
      "npm run lint",
      "npm run prettier-format",
      "npm test --findRelatedTests --bail"
    ]
  }
}
