{
  "name": "get-typed",
  "version": "1.0.0-beta.2",
  "main": "lib/index.js",
  "bin": "bin/get-typed.js",
  "types": "lib/index.d.ts",
  "author": "James Kyle <me@thejameskyle.com>",
  "license": "MIT",
  "files": [
    "lib",
    "bin"
  ],
  "scripts": {
    "precommit": "lint-staged --verbose",
    "format": "prettier --write '{src,test}/**/*.js' --trailing-comma all --single-quote --no-bracket-spacing",
    "flow": "flow",
    "flow-coverage": "flow-coverage-report -f ./node_modules/.bin/flow -i '{src,test}/**/*.js' -o coverage/flow -t html -t json -t text",
    "test": "jest",
    "delete": "rm -rf lib",
    "babel": "babel src -d lib --ignore __tests__",
    "get-typed": "node lib/cli.js src/index.js --dest lib/index",
    "build": "yarn delete && yarn babel && yarn get-typed",
    "watch": "yarn delete && yarn babel -- -w",
    "prepublish": "yarn build",
    "dev": "yarn test -- --watch",
    "ci": "yarn test -- --runInBand --coverage && yarn flow && yarn flow-coverage",
    "inspect": "yarn build && node --inspect test/inspect.js src/index.js --dest lib/index"
  },
  "dependencies": {
    "ast-pretty-print": "^2.0.0",
    "babel-core": "^6.24.0",
    "babel-types": "^6.23.0",
    "graceful-fs": "^4.1.11",
    "meow": "^3.7.0",
    "read-pkg-up": "^2.0.0",
    "reasonably-typed": "^0.7.1",
    "resolve": "^1.3.2"
  },
  "devDependencies": {
    "babel-cli": "^6.24.1",
    "babel-plugin-transform-es2015-modules-commonjs": "^6.24.1",
    "babel-plugin-transform-object-rest-spread": "^6.23.0",
    "babel-preset-flow": "^6.23.0",
    "flow-bin": "^0.42.0",
    "flow-coverage-report": "^0.3.0",
    "husky": "^0.13.3",
    "jest": "^19.0.2",
    "lint-staged": "^3.4.0",
    "mkdirp": "^0.5.1",
    "prettier": "^0.22.0"
  },
  "lint-staged": {
    "*.js": [
      "prettier --write --trailing-comma all --single-quote --no-bracket-spacing",
      "git add"
    ]
  },
  "jest": {
    "coverageDirectory": "coverage/jest"
  }
}
