{
  "name": "cross-fetch",
  "version": "2.1.1",
  "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": {
    "precommit": "lint-staged",
    "build": "rollup -c",
    "codecov": "nyc report --reporter=text-lcov > coverage.lcov && codecov",
    "deploy": "git push --no-verify && git push --tags --no-verify && npm publish",
    "lint": "eslint .",
    "release": "release-it",
    "test": "run-p -s test:node test:headless lint",
    "test:browser": "opn test/browser/index.html",
    "test:ci": "run-s -s test codecov && npm run -s test:sauce",
    "test:headless": "mocha-headless-chrome -f test/browser/index.html -a no-sandbox -a disable-setuid-sandbox",
    "test:node": "nyc mocha --check-leaks test/node/index.js",
    "test:sauce": "./tasks/sauce"
  },
  "lint-staged": {
    "*.js": [
      "eslint --fix",
      "git add"
    ]
  },
  "nyc": {
    "temp-directory": "./.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.1.2",
    "whatwg-fetch": "2.0.4"
  },
  "devDependencies": {
    "chai": "4.1.2",
    "codecov": "3.0.0",
    "eslint": "4.19.1",
    "husky": "0.14.3",
    "lint-staged": "7.0.5",
    "mocha": "5.1.1",
    "mocha-headless-chrome": "2.0.0",
    "nock": "9.2.5",
    "npm-run-all": "4.1.2",
    "nyc": "11.7.1",
    "opn-cli": "3.1.0",
    "ora": "2.0.0",
    "release-it": "7.4.2",
    "rollup": "0.58.2",
    "rollup-plugin-copy": "0.2.3",
    "rollup-plugin-uglify": "3.0.0",
    "sinon": "4.5.0"
  },
  "files": [
    "dist",
    "polyfill"
  ],
  "keywords": [
    "fetch",
    "isomorphic",
    "universal",
    "node",
    "react",
    "native",
    "browser",
    "ponyfill",
    "whatwg",
    "xhr",
    "ajax"
  ]
}
