{
  "name": "referral-codes",
  "version": "3.0.0",
  "description": "High performance Referral/Promo/Voucher code generator",
  "main": "index.js",
  "type": "module",
  "repository": {
    "type": "git",
    "url": "https://github.com/zack37/referral-codes.git"
  },
  "author": "Zack Smith <zack.t.smith37@gmail.com>",
  "license": "MIT",
  "keywords": [
    "referral",
    "voucher",
    "coupon",
    "promo",
    "code",
    "generator",
    "referral-code",
    "referral-code-generator"
  ],
  "files": [
    "index.js",
    "index.d.ts"
  ],
  "homepage": "https://github.com/zack37/referral-codes",
  "engines": {
    "node": ">=18"
  },
  "scripts": {
    "build": "tsc",
    "test": "yarn build && ava",
    "benchmark": "yarn build && yarn node benchmarks/index.js",
    "lint": "xo",
    "lint:fix": "yarn lint --fix",
    "_postinstall": "husky install",
    "prepack": "pinst --disable",
    "postpack": "pinst --enable"
  },
  "ava": {
    "typescript": {
      "extensions": [
        "ts"
      ],
      "rewritePaths": {
        "/": "/"
      },
      "compile": false
    }
  },
  "lint-staged": {
    "*.ts": [
      "yarn lint:fix --"
    ],
    "*.{ts,css,md}": [
      "prettier --write"
    ],
    "*.json": [
      "prettier --write --print-width=120"
    ]
  },
  "xo": {
    "prettier": true,
    "plugins": [
      "node",
      "unicorn",
      "@typescript-eslint"
    ],
    "ignore": [
      "index.js",
      "index.d.ts"
    ],
    "rules": {
      "capitalized-comments": "off",
      "unicorn/explicit-length-check": "off",
      "unicorn/prefer-module": "off"
    }
  },
  "devDependencies": {
    "@ava/typescript": "^3.0.1",
    "@types/eslint": "^8",
    "@types/node": "^18.11.9",
    "@typescript-eslint/eslint-plugin": "^5.29.0",
    "@typescript-eslint/parser": "^5.29.0",
    "ava": "^4.3.0",
    "benchmark": "^2.1.4",
    "eslint": "^8.48.0",
    "eslint-config-xo-typescript": "^0.51.1",
    "eslint-plugin-node": "^11.1.0",
    "eslint-plugin-prettier": "^4.0.0",
    "husky": "^8.0.1",
    "lint-staged": "^13.0.2",
    "pinst": "^3.0.0",
    "prettier": "^2.7.1",
    "typescript": "^4.7.4",
    "xo": "^0.56.0"
  },
  "packageManager": "yarn@4.0.0-rc.50"
}