File size: 2,682 Bytes
295e44e |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 |
{
"name": "cross-fetch",
"version": "4.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",
"react-native": "dist/react-native-ponyfill.js",
"types": "index.d.ts",
"scripts": {
"commit": "cz",
"prepare": "husky install",
"prepublishOnly": "rimraf dist && make dist"
},
"lint-staged": {
"*.js": [
"standard --fix"
]
},
"config": {
"commitizen": {
"path": "cz-conventional-changelog"
}
},
"standard": {
"env": [
"browser",
"mocha",
"serviceworker"
],
"globals": [
"expect",
"assert",
"chai",
"Mocha"
],
"ignore": [
"/dist/",
"api.spec.js",
"bundle.js",
"test.js",
"*.bundle.js",
"*.ts"
]
},
"mocha": {
"require": [
"chai/register-expect.js",
"chai/register-assert.js"
],
"check-leaks": true
},
"nyc": {
"temp-dir": ".reports/.coverage"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"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.12"
},
"devDependencies": {
"@commitlint/cli": "17.6.6",
"@commitlint/config-conventional": "17.6.6",
"@rollup/plugin-terser": "0.4.3",
"@types/chai": "4.3.5",
"@types/mocha": "10.0.1",
"@types/node": "18.15.13",
"body-parser": "1.20.2",
"chai": "4.3.7",
"codecov": "3.8.3",
"commitizen": "4.3.0",
"cz-conventional-changelog": "3.3.0",
"express": "4.18.2",
"husky": "8.0.3",
"lint-staged": "13.2.3",
"mocha": "10.2.0",
"mocha-headless-chrome": "4.0.0",
"nock": "13.3.1",
"nyc": "15.1.0",
"rimraf": "5.0.1",
"rollup": "3.26.0",
"rollup-plugin-copy": "3.4.0",
"semver": "7.5.3",
"serve-index": "1.9.1",
"standard": "17.1.0",
"standard-version": "9.5.0",
"typescript": "5.1.6",
"webpack": "5.88.1",
"webpack-cli": "5.1.4",
"whatwg-fetch": "3.6.2",
"yargs": "17.7.2"
},
"files": [
"dist",
"polyfill",
"index.d.ts"
],
"keywords": [
"fetch",
"http",
"url",
"promise",
"async",
"await",
"isomorphic",
"universal",
"node",
"react",
"native",
"browser",
"ponyfill",
"whatwg",
"xhr",
"ajax"
]
}
|