{
  "name": "jest-time-helpers",
  "version": "1.1.0",
  "description": "Helpers you can use in tests that relate to the passage of time (i.e. code that involves setTimeout, setInterval, new Date(), Date.now(), etc)",
  "main": "dist/index.js",
  "scripts": {
    "prepack": "rm -Rf dist && tsc",
    "docs": "typedoc src/index.ts",
    "watch": "tsc --watch",
    "lint": "yarn prettier:check && eslint --ext .js,.jsx,.ts,.tsx,.graphql .",
    "lint:fix": "eslint --ext .js,.jsx,.ts,.tsx,.graphql . --fix; prettier --ignore-path .eslintignore --write '**/*.{js,jsx,ts,tsx,graphql,md,json}'",
    "prettier:check": "prettier --ignore-path .eslintignore --check '**/*.{js,jsx,ts,tsx,graphql,md,json}'",
    "test": "yarn prepack && jest && depcheck --ignores @types/*,@tsconfig/*",
    "preversion": "grep '^### Pending' RELEASE_NOTES.md && echo \"⚠️ Cannot publish with 'Pending' in RELEASE_NOTES ⚠️\" && exit 1 || true"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/graphile/jest-time-helpers.git"
  },
  "keywords": [
    "jest",
    "time",
    "timing",
    "timeout",
    "interval",
    "now",
    "date",
    "helpers",
    "test",
    "testing",
    "passage",
    "settimeout",
    "setinterval"
  ],
  "author": "Benjie Gillam <code@benjiegillam.com>",
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/graphile/jest-time-helpers/issues"
  },
  "homepage": "https://github.com/graphile/jest-time-helpers#readme",
  "peerDependencies": {
    "jest": ">=22 <31"
  },
  "devDependencies": {
    "@tsconfig/node20": "^20.1.9",
    "@types/jest": "^30.0.0",
    "@types/node": "^20.0.0",
    "@typescript-eslint/eslint-plugin": "^4.13.0",
    "@typescript-eslint/parser": "^4.13.0",
    "depcheck": "^1.3.1",
    "eslint": "^7.17.0",
    "eslint-config-prettier": "^7.1.0",
    "eslint-plugin-import": "^2.22.1",
    "eslint-plugin-jest": "^24.1.3",
    "eslint-plugin-simple-import-sort": "^7.0.0",
    "jest": "^30.2.0",
    "prettier": "^2.2.1",
    "ts-jest": "^29.4.6",
    "typedoc": "^0.20.14",
    "typescript": "^5.9.3"
  },
  "files": [
    "dist"
  ]
}
