{
  "name": "typed-jest-expect",
  "version": "1.0.1",
  "description": "Strongly typed jest expect",
  "main": "build/index.js",
  "scripts": {
    "build:babel": "babel src --out-dir build --extensions '.ts' --source-maps",
    "build:types": "tsc -p . --declaration --emitDeclarationOnly",
    "build": "npm run build:babel && npm run build:types",
    "check:lint": "eslint src",
    "check:types": "tsc -p . --noEmit",
    "check": "npm run check:lint && npm run check:types",
    "test": "jest"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/elierotenberg/typed-jest-expect.git"
  },
  "keywords": [
    "jest",
    "expect",
    "typescript"
  ],
  "author": "Elie Rotenberg <elie@rotenberg.io>",
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/elierotenberg/typed-jest-expect/issues"
  },
  "homepage": "https://github.com/elierotenberg/typed-jest-expect#readme",
  "devDependencies": {
    "@babel/cli": "^7.18.10",
    "@babel/core": "^7.19.0",
    "@babel/preset-env": "^7.19.0",
    "@babel/preset-typescript": "^7.18.6",
    "@types/jest": "^29.0.0",
    "@types/node": "^18.7.16",
    "@typescript-eslint/eslint-plugin": "^5.36.2",
    "@typescript-eslint/parser": "^5.36.2",
    "eslint": "^8.23.0",
    "eslint-config-prettier": "^8.5.0",
    "eslint-plugin-import": "^2.26.0",
    "eslint-plugin-prettier": "^4.2.1",
    "jest": "^29.0.2",
    "prettier": "^2.7.1",
    "typedoc": "^0.23.14",
    "typescript": "^4.8.2"
  },
  "peerDependencies": {
    "jest": "^29.0.2"
  }
}