Files
pnpm/network/fetch/package.json
Nacho Aldama 7733f3a943 feat: support scoped client certificates (#7626)
close #7427

---------

Co-authored-by: Zoltan Kochan <z@kochan.io>
2024-02-14 12:11:12 +01:00

53 lines
1.3 KiB
JSON

{
"name": "@pnpm/fetch",
"version": "7.0.7",
"description": "node-fetch with retries",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"lib",
"!*.map"
],
"engines": {
"node": ">=18.12"
},
"scripts": {
"lint": "eslint \"src/**/*.ts\" \"test/**/*.ts\"",
"_test": "jest",
"test": "pnpm run compile && pnpm run _test",
"prepublishOnly": "pnpm run compile",
"compile": "tsc --build && pnpm run lint --fix"
},
"repository": "https://github.com/pnpm/pnpm/blob/main/network/fetch",
"keywords": [
"pnpm9",
"fetch",
"npm"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/pnpm/pnpm/issues"
},
"peerDependencies": {
"@pnpm/logger": "^5.0.0"
},
"homepage": "https://github.com/pnpm/pnpm/blob/main/network/fetch#readme",
"dependencies": {
"@pnpm/core-loggers": "workspace:*",
"@pnpm/fetching-types": "workspace:*",
"@pnpm/network.agent": "^1.0.1",
"@pnpm/types": "workspace:*",
"@zkochan/retry": "^0.2.0",
"node-fetch": "npm:@pnpm/node-fetch@1.0.0"
},
"devDependencies": {
"@pnpm/fetch": "workspace:*",
"https-proxy-server-express": "0.1.2",
"nock": "13.3.4"
},
"funding": "https://opencollective.com/pnpm",
"exports": {
".": "./lib/index.js"
}
}