{
  "name": "mpn-lookup",
  "version": "1.1.2",
  "description": "A TypeScript library for Most Probable Number (MPN) lookups in microbiological testing, supporting QuantiTray, QuantiTray2000, and Legionella formats",
  "main": "./dist/mpn.lookup.js",
  "module": "./dist/mpn.lookup.mjs",
  "types": "./dist/mpn.lookup.d.ts",
  "files": [
    "dist"
  ],
  "scripts": {
    "test": "mocha --require ts-node/register test/mpn.test.ts",
    "tsc": "tsc",
    "prepare": "husky && husky install",
    "lint": "eslint . --ext .js,.jsx,.ts,.tsx",
    "lint-staged": "lint-staged",
    "format": "prettier --check .",
    "format:fix": "prettier --write --list-different .",
    "type-check": "tsc  --noemit",
    "check-all": "pnpm run lint && pnpm run type-check && pnpm run test",
    "test:ci": "pnpm run test --coverage",
    "test:watch": "pnpm run test --watch",
    "build": "tsup"
  },
  "keywords": [
    "mpn",
    "most-probable-number",
    "microbiology",
    "quantitray",
    "legionella",
    "water-testing",
    "bacteria",
    "coliform"
  ],
  "author": "Jonathan Gartland",
  "license": "ISC",
  "packageManager": "pnpm@9.8.0",
  "devDependencies": {
    "@types/chai": "^4.3.20",
    "@types/mocha": "^10.0.9",
    "@types/node": "^22.7.6",
    "@typescript-eslint/eslint-plugin": "^6.21.0",
    "@typescript-eslint/parser": "^8.10.0",
    "chai": "^4.5.0",
    "eslint": "^8.57.1",
    "eslint-config-prettier": "^9.1.0",
    "eslint-config-standard-with-typescript": "^42.0.0",
    "eslint-plugin-import": "^2.31.0",
    "eslint-plugin-n": "^16.6.2",
    "eslint-plugin-prettier": "^5.2.1",
    "eslint-plugin-promise": "^6.6.0",
    "husky": "^8.0.3",
    "lint-staged": "^15.2.10",
    "mocha": "^10.7.3",
    "prettier": "^3.3.3",
    "ts-node": "^10.9.2",
    "typescript": "^5.6.3",
    "undici-types": "^6.20.0"
  },
  "lint-staged": {
    "*.{ts}": [
      "prettier --write",
      "eslint --max-warnings 0"
    ],
    "*.{js,jsx,ts,tsx}": "eslint --cache --fix"
  },
  "dependencies": {
    "@commitlint/config-conventional": "^19.5.0",
    "commitlint": "^19.5.0",
    "tsup": "^8.3.5"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/user/repo-name.git"
  }
}
