{
  "name": "cross-fetch",
  "version": "3.0.2",
  "description": "Universal WHATWG Fetch API for Node, Browsers and React Native",
  "homepage": "https://github.com/lquixada/cross-fetch",
  "main": "dist/node-ponyfill.js",
  "browser": "dist/browser-ponyfill.js",
  "react-native": "dist/react-native-ponyfill.js",
  "typings": "index.d.ts",
  "lint-staged": {
    "*.js": [
      "standard --fix",
      "git add"
    ]
  },
  "husky": {
    "hooks": {
      "pre-commit": "make build && lint-staged"
    }
  },
  "standard": {
    "env": [
      "mocha",
      "browser"
    ],
    "globals": [
      "expect",
      "assert",
      "chai",
      "sinon"
    ],
    "ignore": [
      "/dist/",
      "bundle.*.js"
    ]
  },
  "nyc": {
    "temp-dir": ".reports/.coverage"
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/lquixada/cross-fetch.git"
  },
  "author": "Leonardo Quixada <lquixada@gmail.com>",
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/lquixada/cross-fetch/issues"
  },
  "dependencies": {
    "node-fetch": "2.3.0",
    "whatwg-fetch": "3.0.0"
  },
  "devDependencies": {
    "chai": "4.2.0",
    "codecov": "3.2.0",
    "husky": "1.3.1",
    "lint-staged": "8.1.5",
    "mocha": "6.0.2",
    "mocha-headless-chrome": "2.0.1",
    "nock": "10.0.6",
    "nyc": "13.3.0",
    "ora": "3.2.0",
    "rollup": "1.7.3",
    "rollup-plugin-copy": "0.2.3",
    "rollup-plugin-uglify": "6.0.2",
    "sinon": "7.3.0",
    "standard": "12.0.1",
    "webpack": "4.29.6",
    "webpack-cli": "3.3.0"
  },
  "files": [
    "dist",
    "polyfill",
    "index.d.ts"
  ],
  "keywords": [
    "fetch",
    "isomorphic",
    "universal",
    "node",
    "react",
    "native",
    "browser",
    "ponyfill",
    "whatwg",
    "xhr",
    "ajax"
  ]
}
