CoolFace
Datasetpublic

basant307/AI_Governance_Project

sourceHugging Faceapache-2.0updated 2mo agoView on Hugging Face
0likes45downloads
package.json57 linesDownload Raw Back to fetch-blob
1{2    "name": "fetch-blob",3    "version": "3.2.0",4    "description": "Blob & File implementation in Node.js, originally from node-fetch.",5    "main": "index.js",6    "type": "module",7    "files": [8        "from.js",9        "file.js",10        "file.d.ts",11        "index.js",12        "index.d.ts",13        "from.d.ts",14        "streams.cjs"15    ],16    "scripts": {17        "test": "node --experimental-loader ./test/http-loader.js ./test/test-wpt-in-node.js",18        "report": "c8 --reporter json --reporter text npm run test",19        "coverage": "npm run report && codecov -f coverage/coverage-final.json",20        "prepublishOnly": "tsc --declaration --emitDeclarationOnly --allowJs index.js from.js"21    },22    "repository": "https://github.com/node-fetch/fetch-blob.git",23    "keywords": [24        "blob",25        "file",26        "node-fetch"27    ],28    "engines": {29        "node": "^12.20 || >= 14.13"30    },31    "author": "Jimmy Wärting <jimmy@warting.se> (https://jimmy.warting.se)",32    "license": "MIT",33    "bugs": {34        "url": "https://github.com/node-fetch/fetch-blob/issues"35    },36    "homepage": "https://github.com/node-fetch/fetch-blob#readme",37    "devDependencies": {38        "@types/node": "^17.0.9",39        "c8": "^7.11.0",40        "typescript": "^4.5.4"41    },42    "funding": [43        {44            "type": "github",45            "url": "https://github.com/sponsors/jimmywarting"46        },47        {48            "type": "paypal",49            "url": "https://paypal.me/jimmywarting"50        }51    ],52    "dependencies": {53        "node-domexception": "^1.0.0",54        "web-streams-polyfill": "^3.0.3"55    }56}57 
basant307/AI_Governance_Project · CoolFace