This repository has been archived on 2023-08-20. You can view files and clone it, but cannot push or open issues or pull requests.
admin-panel/graphql-types/node_modules/cross-fetch/package.json

103 lines
2.0 KiB
JSON

{
"name": "cross-fetch",
"version": "3.0.6",
"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"
]
},
"husky": {
"hooks": {
"pre-commit": "make build && make check-dependencies && lint-staged"
}
},
"standard": {
"env": [
"mocha",
"browser"
],
"globals": [
"expect",
"assert",
"chai",
"sinon"
],
"ignore": [
"/dist/",
"bundle.js",
"bundle.*.js"
]
},
"mocha": {
"require": [
"chai/register-expect",
"chai/register-assert"
],
"check-leaks": true
},
"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.6.1"
},
"devDependencies": {
"chai": "4.2.0",
"codecov": "3.7.2",
"husky": "4.3.0",
"lint-staged": "10.3.0",
"mocha": "8.1.3",
"mocha-headless-chrome": "2.0.1",
"nock": "13.0.4",
"nyc": "15.1.0",
"ora": "5.1.0",
"rollup": "2.26.11",
"rollup-plugin-copy": "3.3.0",
"rollup-plugin-uglify": "6.0.4",
"semver": "7.3.2",
"sinon": "9.0.3",
"standard": "14.3.4",
"webpack": "4.44.1",
"webpack-cli": "3.3.12",
"whatwg-fetch": "3.0.0"
},
"files": [
"dist",
"polyfill",
"index.d.ts"
],
"keywords": [
"fetch",
"http",
"url",
"promise",
"async",
"await",
"isomorphic",
"universal",
"node",
"react",
"native",
"browser",
"ponyfill",
"whatwg",
"xhr",
"ajax"
]
}