mirror of
https://github.com/pnpm/pnpm.git
synced 2026-01-27 00:08:53 -05:00
53 lines
1.3 KiB
JSON
53 lines
1.3 KiB
JSON
{
|
|
"name": "@pnpm/fetch",
|
|
"version": "5.0.1",
|
|
"description": "node-fetch with retries",
|
|
"main": "lib/index.js",
|
|
"types": "lib/index.d.ts",
|
|
"files": [
|
|
"lib",
|
|
"!*.map"
|
|
],
|
|
"engines": {
|
|
"node": ">=14.19"
|
|
},
|
|
"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/packages/fetch",
|
|
"keywords": [
|
|
"pnpm7",
|
|
"fetch",
|
|
"npm"
|
|
],
|
|
"license": "MIT",
|
|
"bugs": {
|
|
"url": "https://github.com/pnpm/pnpm/issues"
|
|
},
|
|
"peerDependencies": {
|
|
"@pnpm/logger": "^4.0.0"
|
|
},
|
|
"homepage": "https://github.com/pnpm/pnpm/blob/main/packages/fetch#readme",
|
|
"dependencies": {
|
|
"@pnpm/core-loggers": "workspace:7.0.1",
|
|
"@pnpm/fetching-types": "workspace:3.0.0",
|
|
"@pnpm/npm-registry-agent": "workspace:6.0.0",
|
|
"@zkochan/retry": "^0.2.0",
|
|
"node-fetch": "3.0.0-beta.9"
|
|
},
|
|
"devDependencies": {
|
|
"@pnpm/fetch": "workspace:5.0.1",
|
|
"@pnpm/logger": "^4.0.0",
|
|
"cpy-cli": "^3.1.1",
|
|
"nock": "12.0.3"
|
|
},
|
|
"funding": "https://opencollective.com/pnpm",
|
|
"exports": {
|
|
".": "./lib/index.js"
|
|
}
|
|
}
|