mirror of
https://github.com/pnpm/pnpm.git
synced 2026-01-28 00:40:38 -05:00
41 lines
1013 B
JSON
41 lines
1013 B
JSON
{
|
|
"name": "@pnpm/fetch",
|
|
"version": "1.0.3",
|
|
"description": "node-fetch with retries",
|
|
"main": "lib/index.js",
|
|
"typings": "lib/index.d.ts",
|
|
"files": [
|
|
"lib",
|
|
"!*.map"
|
|
],
|
|
"engines": {
|
|
"node": ">=10.13"
|
|
},
|
|
"scripts": {
|
|
"lint": "tslint -c ../../tslint.json src/**/*.ts test/**/*.ts",
|
|
"test": "pnpm run compile",
|
|
"prepublishOnly": "pnpm run compile",
|
|
"compile": "rimraf lib && tsc && cpy src/**/*.d.ts lib"
|
|
},
|
|
"repository": "https://github.com/pnpm/pnpm/blob/master/packages/fetch",
|
|
"keywords": [
|
|
"fetch",
|
|
"npm"
|
|
],
|
|
"author": "Zoltan Kochan <z@kochan.io> (https://www.kochan.io/)",
|
|
"license": "MIT",
|
|
"bugs": {
|
|
"url": "https://github.com/pnpm/pnpm/issues"
|
|
},
|
|
"homepage": "https://github.com/pnpm/pnpm/blob/master/packages/fetch#readme",
|
|
"dependencies": {
|
|
"@zeit/fetch-retry": "5.0.0",
|
|
"node-fetch": "2.6.0",
|
|
"node-fetch-unix": "2.3.0"
|
|
},
|
|
"devDependencies": {
|
|
"@types/node-fetch": "^2.5.5",
|
|
"cpy-cli": "3.1.0"
|
|
}
|
|
}
|