Files
pnpm/packages/npm-registry-agent/package.json
2021-10-19 17:40:20 +03:00

47 lines
1.2 KiB
JSON

{
"name": "@pnpm/npm-registry-agent",
"version": "5.0.1",
"description": "HTTP agent for fetching from npm registry",
"main": "lib/index.js",
"typings": "lib/index.d.ts",
"files": [
"lib",
"!*.map"
],
"license": "MIT",
"scripts": {
"lint": "eslint src/**/*.ts test/**/*.ts",
"_test": "jest",
"test": "pnpm run compile && pnpm run _test",
"prepublishOnly": "pnpm run compile",
"fix": "tslint -c tslint.json src/**/*.ts test/**/*.ts --fix",
"compile": "rimraf lib tsconfig.tsbuildinfo && tsc --build && pnpm run lint -- --fix"
},
"devDependencies": {
"@types/http-proxy-agent": "^4.0.0",
"@types/lru-cache": "^5.1.0"
},
"dependencies": {
"agentkeepalive": "^4.1.3",
"http-proxy-agent": "^5.0.0",
"https-proxy-agent": "^5.0.0",
"lru-cache": "^6.0.0",
"socks-proxy-agent": "^6.1.0"
},
"env": {
"node": ">=10"
},
"repository": "https://github.com/pnpm/pnpm/blob/master/packages/npm-registry-agent",
"homepage": "https://github.com/pnpm/pnpm/blob/master/packages/npm-registry-agent#readme",
"bugs": {
"url": "https://github.com/pnpm/pnpm/issues"
},
"engines": {
"node": ">=12.17"
},
"funding": "https://opencollective.com/pnpm",
"keywords": [
"pnpm6"
]
}