{
  "name": "@hirez_io/jest-given",
  "version": "1.2.0",
  "publishConfig": {
    "access": "public"
  },
  "author": {
    "name": "Shai Reznik",
    "company": "HiRez.io"
  },
  "description": "A jest addon that helps you clean up your microtests by breaking them into a Given / When / Then structure.",
  "keywords": [
    "jest",
    "jest-given",
    "gwt",
    "Given When Then",
    "Microtests",
    "Testing",
    "Unit tests",
    "JavasScript Unit Tests",
    "TypeScript Unit Tests",
    "hirez.io"
  ],
  "homepage": "https://github.com/hirezio/given/tree/master/packages/jest-given",
  "repository": {
    "type": "git",
    "url": "https://github.com/hirezio/given",
    "directory": "packages/jest-given"
  },
  "license": "MIT",
  "main": "dist/jest-given.js",
  "types": "dist/jest-given.d.ts",
  "peerDependencies": {
    "jest": "<31.x"
  },
  "scripts": {
    "clean": "rimraf dist",
    "clean:temp-src": "rimraf temp-src",
    "copy:shared-source": "cpy ../../shared/given-core/given-core.ts ./temp-src/ --rename=jest-given.ts",
    "compile": "tsc -p tsconfig.build.json",
    "build": "run-s clean copy:shared-source compile",
    "test": "echo \n*** Run tests from the root folder\n"
  }
}