{
  "name": "@glomex/custom-fetch",
  "version": "1.1.3",
  "description": "A convenience wrapper for fetch, which can be used in node and in the browser.",
  "type": "module",
  "source": "index.js",
  "main": "./dist/index.cjs",
  "module": "./dist/index.module.js",
  "unpkg": "./dist/custom-fetch.umd.js",
  "exports": {
    ".": {
      "require": "./dist/index.cjs",
      "default": "./dist/index.modern.js"
    },
    "./browser": {
      "require": "./dist/custom-fetch.cjs",
      "default": "./dist/custom-fetch.modern.js"
    }
  },
  "files": [
    "dist"
  ],
  "scripts": {
    "prepare": "npm run -s build",
    "build": "microbundle *.js",
    "dev": "microbundle watch *.js",
    "test": "mocha test/custom-fetch.test.js"
  },
  "author": "glomex GmbH",
  "license": "Apache-2.0",
  "repository": "github:glomex/custom-fetch",
  "bugs": {
    "url": "https://github.com/glomex/custom-fetch/issues"
  },
  "dependencies": {
    "abort-controller": "^3.0.0",
    "node-fetch": "^2.6.7"
  },
  "devDependencies": {
    "@ungap/global-this": "^0.4.4",
    "microbundle": "^0.14.2",
    "mocha": "^9.2.0",
    "sinon": "^12.0.1"
  }
}
