{
  "name": "ts-pwgen",
  "version": "1.2.2",
  "description": "A command line password generator in TypeScript",
  "main": "lib/dest/main.js",
  "bin": {
    "pwgen": "./bin/pwgen"
  },
  "scripts": {
    "test": "jest",
    "test:watch": "jest --watch",
    "build": "tsc",
    "format": "prettier --write \"lib/src/*.ts\""
  },
  "keywords": [
    "password",
    "generator",
    "typescript",
    "passwordgenerator"
  ],
  "author": "Patrick Muff",
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "https://github.com/dislick/ts-pwgen"
  },
  "devDependencies": {
    "@types/chai": "^4.1.7",
    "@types/colors": "^1.2.1",
    "@types/copy-paste": "^1.1.30",
    "@types/inquirer": "6.0.3",
    "@types/jest": "^25.2.1",
    "@types/node": "^12.0.10",
    "jest": "^25.5.4",
    "prettier": "^2.0.5",
    "ts-jest": "^25.5.1",
    "typescript": "^3.9.2"
  },
  "dependencies": {
    "colors": "^1.3.3",
    "copy-paste": "^1.3.0",
    "inquirer": "^6.4.1",
    "yargs": "^13.2.4"
  },
  "jest": {
    "preset": "ts-jest",
    "testEnvironment": "node",
    "rootDir": "lib/src"
  }
}
