1{ 2 "name": "http-proxy-agent", 3 "version": "7.0.2", 4 "description": "An HTTP(s) proxy `http.Agent` implementation for HTTP", 5 "main": "./dist/index.js", 6 "types": "./dist/index.d.ts", 7 "files": [ 8 "dist" 9 ], 10 "repository": { 11 "type": "git", 12 "url": "https://github.com/TooTallNate/proxy-agents.git", 13 "directory": "packages/http-proxy-agent" 14 }, 15 "keywords": [ 16 "http", 17 "proxy", 18 "endpoint", 19 "agent" 20 ], 21 "author": "Nathan Rajlich <nathan@tootallnate.net> (http://n8.io/)", 22 "license": "MIT", 23 "dependencies": { 24 "agent-base": "^7.1.0", 25 "debug": "^4.3.4" 26 }, 27 "devDependencies": { 28 "@types/debug": "^4.1.7", 29 "@types/jest": "^29.5.1", 30 "@types/node": "^14.18.45", 31 "async-listen": "^3.0.0", 32 "jest": "^29.5.0", 33 "ts-jest": "^29.1.0", 34 "typescript": "^5.0.4", 35 "proxy": "2.1.1", 36 "tsconfig": "0.0.0" 37 }, 38 "engines": { 39 "node": ">= 14" 40 }, 41 "scripts": { 42 "build": "tsc", 43 "test": "jest --env node --verbose --bail", 44 "lint": "eslint . --ext .ts", 45 "pack": "node ../../scripts/pack.mjs" 46 } 47}