Files
pnpm/fetching/tarball-fetcher/package.json
2023-06-11 21:35:42 +03:00

65 lines
1.7 KiB
JSON

{
"name": "@pnpm/tarball-fetcher",
"version": "15.0.3",
"description": "Fetcher for packages hosted as tarballs",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"lib",
"!*.map"
],
"scripts": {
"lint": "eslint \"src/**/*.ts\" \"test/**/*.ts\"",
"prepublishOnly": "pnpm run compile",
"_test": "jest",
"test": "pnpm run compile && pnpm run _test",
"compile": "tsc --build && pnpm run lint --fix"
},
"repository": "https://github.com/pnpm/pnpm/blob/main/fetching/tarball-fetcher",
"keywords": [
"pnpm8",
"pnpm",
"fetcher",
"tarball"
],
"engines": {
"node": ">=16.14"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/pnpm/pnpm/issues"
},
"homepage": "https://github.com/pnpm/pnpm/blob/main/fetching/tarball-fetcher#readme",
"peerDependencies": {
"@pnpm/logger": "^5.0.0"
},
"dependencies": {
"@pnpm/core-loggers": "workspace:*",
"@pnpm/error": "workspace:*",
"@pnpm/fetcher-base": "workspace:*",
"@pnpm/fetching-types": "workspace:*",
"@pnpm/graceful-fs": "workspace:*",
"@pnpm/prepare-package": "workspace:*",
"@zkochan/retry": "^0.2.0",
"p-map-values": "^1.0.0",
"ramda": "npm:@pnpm/ramda@0.28.1",
"ssri": "10.0.4"
},
"devDependencies": {
"@pnpm/cafs-types": "workspace:*",
"@pnpm/create-cafs-store": "workspace:*",
"@pnpm/fetch": "workspace:*",
"@pnpm/tarball-fetcher": "workspace:*",
"@pnpm/test-fixtures": "workspace:*",
"@types/ramda": "0.28.20",
"@types/retry": "^0.12.2",
"@types/ssri": "^7.1.1",
"nock": "13.3.1",
"tempy": "^1.0.1"
},
"funding": "https://opencollective.com/pnpm",
"exports": {
".": "./lib/index.js"
}
}