mirror of
https://github.com/pnpm/pnpm.git
synced 2026-03-24 01:51:41 -04:00
53 lines
1.2 KiB
JSON
53 lines
1.2 KiB
JSON
{
|
|
"name": "@pnpm/fetch",
|
|
"version": "1.0.0",
|
|
"description": "node-fetch with retries",
|
|
"main": "lib/index.js",
|
|
"typings": "lib/index.d.ts",
|
|
"files": [
|
|
"lib"
|
|
],
|
|
"engines": {
|
|
"node": ">=8.15"
|
|
},
|
|
"scripts": {
|
|
"lint": "tslint -c tslint.json src/**/*.ts test/**/*.ts",
|
|
"tsc": "rimraf lib && tsc",
|
|
"test": "npm run tsc && npm run lint && mos t",
|
|
"md": "mos",
|
|
"prepublishOnly": "npm run tsc"
|
|
},
|
|
"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": "4.0.0",
|
|
"node-fetch": "2.5.0",
|
|
"node-fetch-unix": "2.3.0"
|
|
},
|
|
"devDependencies": {
|
|
"@pnpm/tslint-config": "0.0.0",
|
|
"mos": "^2.0.0-alpha.3",
|
|
"mos-plugin-readme": "^1.0.4",
|
|
"rimraf": "^2.6.2",
|
|
"tslint": "5.16.0",
|
|
"typescript": "3.4.5"
|
|
},
|
|
"mos": {
|
|
"plugins": [
|
|
"readme"
|
|
],
|
|
"installation": {
|
|
"useShortAlias": true
|
|
}
|
|
}
|
|
}
|