{
  "name": "cosmiconfig",
  "version": "3.1.0",
  "description": "Find and load configuration from a package.json property, rc file, or CommonJS module",
  "main": "dist/index.js",
  "files": [
    "dist"
  ],
  "scripts": {
    "precommit": "lint-staged && jest && flow check",
    "lint": "eslint .",
    "lint:fix": "eslint . --fix",
    "pretest": "npm run lint && flow check",
    "test": "jest --coverage",
    "test:watch": "jest --watch",
    "coverage": "jest --coverage --coverageReporters=html --coverageReporters=text",
    "build": "flow-remove-types src --out-dir dist --quiet",
    "prepublishOnly": "npm run build"
  },
  "lint-staged": {
    "*.js": [
      "eslint --fix",
      "prettier --write",
      "git add"
    ]
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/davidtheclark/cosmiconfig.git"
  },
  "keywords": [
    "load",
    "configuration",
    "config"
  ],
  "author": "David Clark <david.dave.clark@gmail.com>",
  "contributors": [
    "Bogdan Chadkin <trysound@yandex.ru>",
    "Suhas Karanth <sudo.suhas@gmail.com>"
  ],
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/davidtheclark/cosmiconfig/issues"
  },
  "homepage": "https://github.com/davidtheclark/cosmiconfig#readme",
  "prettier": {
    "trailingComma": "es5",
    "singleQuote": true,
    "printWidth": 80,
    "tabWidth": 2
  },
  "jest": {
    "testEnvironment": "node",
    "collectCoverageFrom": [
      "src/*.js"
    ],
    "coverageThreshold": {
      "global": {
        "branches": 100,
        "functions": 100,
        "lines": 100,
        "statements": 100
      }
    }
  },
  "babel": {
    "plugins": [
      "transform-flow-strip-types"
    ]
  },
  "dependencies": {
    "is-directory": "^0.3.1",
    "js-yaml": "^3.9.0",
    "parse-json": "^3.0.0",
    "require-from-string": "^2.0.1"
  },
  "devDependencies": {
    "babel-eslint": "^8.0.0",
    "babel-plugin-transform-flow-strip-types": "^6.22.0",
    "eslint": "^4.7.0",
    "eslint-config-davidtheclark-node": "^0.2.0",
    "eslint-config-prettier": "^2.5.0",
    "eslint-plugin-flowtype": "^2.35.1",
    "eslint-plugin-node": "^3.0.5",
    "flow-bin": "^0.54.1",
    "flow-remove-types": "^1.2.1",
    "husky": "^0.14.3",
    "jest": "^21.1.0",
    "lint-staged": "^4.2.1",
    "prettier": "^1.7.0"
  },
  "engines": {
    "node": ">=4"
  }
}
