{
  "name": "babel-test",
  "version": "0.2.4",
  "description": "An opinionated library to make testing Babel plugins easier",
  "keywords": [
    "babel",
    "jest",
    "test"
  ],
  "main": "src/index.js",
  "types": "index.d.ts",
  "files": [
    "src/",
    "index.d.ts"
  ],
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/satya164/babel-test.git"
  },
  "author": "Satyajit Sahoo <satyajit.happy@gmail.com> (https://github.com/satya164/)",
  "scripts": {
    "lint": "eslint .",
    "test": "jest",
    "typescript": "tsc",
    "release": "release-it"
  },
  "publishConfig": {
    "registry": "https://registry.npmjs.org/"
  },
  "devDependencies": {
    "@babel/core": "^7.12.3",
    "@release-it/conventional-changelog": "^2.0.0",
    "@types/babel__core": "^7.1.10",
    "@types/jest": "^26.0.15",
    "@types/node": "^14.14.6",
    "babel-core": "^6.26.3",
    "codecov": "^3.8.0",
    "eslint": "^7.12.1",
    "eslint-config-satya164": "^3.1.8",
    "husky": "^4.3.0",
    "jest": "^26.6.1",
    "jest-file-snapshot": "^0.3.8",
    "prettier": "^2.1.2",
    "release-it": "^14.2.0",
    "ts-jest": "^26.4.3",
    "typescript": "^4.0.5"
  },
  "jest": {
    "testEnvironment": "node",
    "testMatch": [
      "**/__tests__/**/*.test.+(js|ts|tsx)"
    ],
    "watchPathIgnorePatterns": [
      "__fixtures__\\/[^/]+\\/(output|error)\\.js"
    ],
    "moduleFileExtensions": [
      "ts",
      "tsx",
      "js",
      "json"
    ],
    "transform": {
      "^.+\\.tsx?$": "ts-jest"
    }
  },
  "dependencies": {
    "chalk": "^4.1.0",
    "error-stack-parser": "^2.0.6",
    "escape-string-regexp": "^4.0.0",
    "strip-ansi": "^6.0.0"
  },
  "husky": {
    "hooks": {
      "pre-commit": "yarn lint && yarn typescript && yarn test"
    }
  }
}
