{
  "name": "cross-fetch",
  "version": "2.0.0",
  "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",
  "scripts": {
    "prebuild": "npm test -s",
    "prepush": "npm test -s",
    "build": "rollup -c",
    "test": "npm run -s test:node && npm run -s test:browser && npm run -s lint",
    "test:browser": "mocha-headless-chrome -f test/browser/index.html -a no-sandbox -a disable-setuid-sandbox",
    "test:node": "mocha --check-leaks test/node/index.js",
    "lint": "eslint .",
    "release:major": "npm run -s build && npm version major && git push --no-verify && npm publish"
  },
  "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.0.0",
    "whatwg-fetch": "2.0.3"
  },
  "devDependencies": {
    "chai": "4.1.2",
    "eslint": "4.18.1",
    "husky": "0.14.3",
    "mocha": "5.0.1",
    "mocha-headless-chrome": "1.8.2",
    "nock": "9.2.1",
    "rollup": "0.56.3",
    "rollup-plugin-copy": "0.2.3",
    "rollup-plugin-uglify": "3.0.0",
    "sinon": "4.4.2"
  },
  "files": [
    "dist",
    "polyfill"
  ],
  "keywords": [
    "fetch",
    "isomorphic",
    "universal",
    "node",
    "react",
    "native",
    "browser",
    "ponyfill",
    "whatwg",
    "xhr",
    "ajax"
  ]
}
