{
  "name": "flowgen2",
  "version": "2.2.2",
  "description": "Generate flowtype definition files from TypeScript",
  "main": "lib/index.js",
  "types": "./lib/index.d.ts",
  "scripts": {
    "prepublishOnly": "npm run build",
    "build": "ts-node src/__tests__/generate-tests && tsc",
    "postbuild": "rimraf lib/__tests__ && rimraf /output",
    "pretest": "npm run build",
    "test": "jest",
    "posttest": "flow"
  },
  "bin": {
    "flowgen": "./lib/cli.js",
    "flowgen2": "./lib/cli.js"
  },
  "files": [
    "lib",
    "types"
  ],
  "author": "",
  "license": "MIT",
  "dependencies": {
    "@types/micromatch": "^2.3.29",
    "@types/node": "^7.0.31",
    "@types/resolve": "0.0.4",
    "babel-polyfill": "^6.23.0",
    "lsr": "^2.0.0",
    "micromatch": "^3.0.3",
    "prettier": "^1.7.4",
    "resolve": "^1.3.3",
    "typescript": "^2.4.0"
  },
  "devDependencies": {
    "@types/jest": "^19.2.4",
    "flow-bin": "^0.95.1",
    "jest": "^20.0.4",
    "mkdirp": "^0.5.1",
    "promise": "^7.3.0",
    "rimraf": "^2.6.1",
    "ts-jest": "^20.0.6",
    "ts-node": "^3.2.0"
  },
  "jest": {
    "testEnvironment": "node",
    "moduleFileExtensions": [
      "ts",
      "tsx",
      "js"
    ],
    "transform": {
      "\\.(ts|tsx)$": "<rootDir>/node_modules/ts-jest/preprocessor.js"
    },
    "testMatch": [
      "**/*.test.(ts|tsx|js)"
    ]
  }
}