{
  "name": "babel-plugin-reflow",
  "version": "0.5.7",
  "description": "Babel plugin to transpile Flow code to TypeScript",
  "author": "Jonathan Gruber <gruberjonathan@gmail.com>",
  "license": "MIT",
  "main": "build/plugin.js",
  "bin": {
    "reflow": "build/reflow.js"
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/grubersjoe/reflow.git"
  },
  "bugs": "https://github.com/grubersjoe/reflow/issues",
  "files": [
    "./*",
    "build/*",
    "src/*"
  ],
  "engines": {
    "node": ">=8.0.0"
  },
  "keywords": [
    "babel-plugin",
    "flow",
    "typescript",
    "babel-plugin-flow",
    "babel-plugin-typescript",
    "babel-plugin-flow-to-typescript",
    "babel-plugin-flow-to-ts"
  ],
  "devDependencies": {
    "@babel/preset-env": "^7.15.0",
    "@babel/preset-typescript": "^7.15.0",
    "@types/babel__core": "^7.1.15",
    "@types/jest": "^27.0.1",
    "@types/node": "^16.7.6",
    "@types/react": "^17.0.19",
    "@typescript-eslint/eslint-plugin": "^4.29.3",
    "@typescript-eslint/parser": "^4.29.3",
    "babel-loader": "^8.2.2",
    "coveralls": "^3.1.1",
    "eslint": "^7.32.0",
    "flow-bin": "^0.158.0",
    "jest": "^27.1.0",
    "typescript": "^4.4.2",
    "webpack": "^5.51.1",
    "webpack-cli": "^4.8.0",
    "webpack-node-externals": "^3.0.0"
  },
  "dependencies": {
    "@babel/code-frame": "^7.14.5",
    "@babel/core": "^7.15.0",
    "@babel/plugin-proposal-decorators": "^7.14.5",
    "@babel/plugin-syntax-class-properties": "^7.12.13",
    "@babel/plugin-syntax-decorators": "^7.14.5",
    "@babel/plugin-syntax-dynamic-import": "^7.8.3",
    "@babel/plugin-syntax-flow": "^7.14.5",
    "@babel/plugin-syntax-jsx": "^7.14.5",
    "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.3",
    "@babel/plugin-syntax-optional-chaining": "^7.8.3",
    "@babel/types": "^7.15.0",
    "@types/babel__code-frame": "^7.0.3",
    "@types/glob": "^7.1.4",
    "@types/lodash": "^4.14.172",
    "@types/prettier": "^2.3.2",
    "chalk": "^4.1.2",
    "commander": "^8.1.0",
    "glob": "^7.1.7",
    "lodash": "^4.17.21",
    "prettier-reflow": "^2.2.1"
  },
  "resolutions": {
    "@babel/core": "^7.15.0",
    "@babel/types": "^7.15.0"
  },
  "scripts": {
    "build": "node --max_old_space_size=4096 ./node_modules/.bin/webpack --mode=production --progress",
    "clean": "rm -f build/*",
    "dev": "webpack -w",
    "format": "prettier-reflow --write 'src/**/*' './*.{js,json,md}'",
    "lint": "eslint --max-warnings=0 'src/**/*.{js,ts}'",
    "postbuild": "chmod +x build/reflow.js",
    "prebuild": "yarn clean",
    "prepublishOnly": "yarn tsc && yarn lint && yarn test && yarn build",
    "test": "jest -i --silent",
    "test:ci": "yarn test --ci",
    "test:coverage": "yarn test --coverage && xdg-open .coverage/lcov-report/index.html"
  }
}
