{
  "name": "fetch-switcher",
  "version": "1.0.1",
  "description": "An utility dispatching to multiple implementations of fetch() depending on the URL scheme",
  "keywords": [
    "fetch",
    "http",
    "url",
    "promise",
    "async",
    "await",
    "isomorphic",
    "universal",
    "node",
    "browser",
    "whatwg",
    "xhr",
    "ajax"
  ],
  "type": "module",
  "main": "dist/fetch-switcher.cjs",
  "browser": "src/fetch-switcher.mjs",
  "module": "src/fetch-switcher.mjs",
  "exports": {
    "import": "./src/fetch-switcher.mjs",
    "require": "./dist/fetch-switcher.cjs"
  },
  "jsdelivr": "dist/fetch-switcher.umd.js",
  "unpkg": "dist/fetch-switcher.umd.js",
  "files": [
    "src/*",
    "dist/*",
    "README.md",
    "LICENSE.md"
  ],
  "scripts": {
    "build": "rollup -c rollup.config.js",
    "test": "npm run lint && npm run coverage",
    "coverage": "npm run jest-node -- --coverage",
    "lint": "eslint -c .eslintrc.cjs \"src/**/*.mjs\"",
    "jest-node": "jest --config=./jest-node.config.cjs"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/nicolas-van/fetch-switcher.git"
  },
  "author": "Nicolas Vanhoren",
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/nicolas-van/fetch-switcher/issues"
  },
  "homepage": "https://github.com/nicolas-van/fetch-switcher#readme",
  "devDependencies": {
    "@babel/cli": "^7.14.8",
    "@babel/core": "^7.15.0",
    "@babel/plugin-transform-modules-umd": "^7.14.5",
    "@babel/preset-env": "^7.15.0",
    "@rollup/plugin-babel": "^5.3.0",
    "@rollup/plugin-commonjs": "^20.0.0",
    "@rollup/plugin-node-resolve": "^13.0.4",
    "babel-jest": "^27.0.6",
    "clean-jsdoc-theme": "^3.2.7",
    "core-js": "^3.16.2",
    "cross-fetch": "^3.1.4",
    "eslint": "^7.32.0",
    "eslint-config-standard": "^16.0.3",
    "eslint-plugin-import": "^2.24.1",
    "eslint-plugin-jest": "^24.4.0",
    "eslint-plugin-jsdoc": "^36.0.7",
    "eslint-plugin-node": "^11.1.0",
    "eslint-plugin-promise": "^5.1.0",
    "eslint-plugin-standard": "^4.1.0",
    "jest": "^27.0.6",
    "jsdoc": "^3.6.7",
    "lodash": "^4.17.21",
    "node-fetch": "^2.6.1",
    "rollup": "^2.56.3"
  }
}
