• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1{
2  "name": "agent-base",
3  "version": "7.1.0",
4  "description": "Turn a function into an `http.Agent` instance",
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/agent-base"
14  },
15  "keywords": [
16    "http",
17    "agent",
18    "base",
19    "barebones",
20    "https"
21  ],
22  "author": "Nathan Rajlich <nathan@tootallnate.net> (http://n8.io/)",
23  "license": "MIT",
24  "dependencies": {
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    "@types/semver": "^7.3.13",
32    "@types/ws": "^6.0.4",
33    "async-listen": "^3.0.0",
34    "jest": "^29.5.0",
35    "ts-jest": "^29.1.0",
36    "typescript": "^5.0.4",
37    "ws": "^3.3.3",
38    "tsconfig": "0.0.0"
39  },
40  "engines": {
41    "node": ">= 14"
42  },
43  "scripts": {
44    "build": "tsc",
45    "test": "jest --env node --verbose --bail",
46    "lint": "eslint . --ext .ts",
47    "pack": "node ../../scripts/pack.mjs"
48  }
49}