package.json
 1  {
 2    "name": "https-proxy-agent",
 3    "version": "5.0.0",
 4    "description": "An HTTP(s) proxy `http.Agent` implementation for HTTPS",
 5    "main": "dist/index",
 6    "types": "dist/index",
 7    "files": [
 8      "dist"
 9    ],
10    "scripts": {
11      "prebuild": "rimraf dist",
12      "build": "tsc",
13      "test": "mocha --reporter spec",
14      "test-lint": "eslint src --ext .js,.ts",
15      "prepublishOnly": "npm run build"
16    },
17    "repository": {
18      "type": "git",
19      "url": "git://github.com/TooTallNate/node-https-proxy-agent.git"
20    },
21    "keywords": [
22      "https",
23      "proxy",
24      "endpoint",
25      "agent"
26    ],
27    "author": "Nathan Rajlich <nathan@tootallnate.net> (http://n8.io/)",
28    "license": "MIT",
29    "bugs": {
30      "url": "https://github.com/TooTallNate/node-https-proxy-agent/issues"
31    },
32    "dependencies": {
33      "agent-base": "6",
34      "debug": "4"
35    },
36    "devDependencies": {
37      "@types/debug": "4",
38      "@types/node": "^12.12.11",
39      "@typescript-eslint/eslint-plugin": "1.6.0",
40      "@typescript-eslint/parser": "1.1.0",
41      "eslint": "5.16.0",
42      "eslint-config-airbnb": "17.1.0",
43      "eslint-config-prettier": "4.1.0",
44      "eslint-import-resolver-typescript": "1.1.1",
45      "eslint-plugin-import": "2.16.0",
46      "eslint-plugin-jsx-a11y": "6.2.1",
47      "eslint-plugin-react": "7.12.4",
48      "mocha": "^6.2.2",
49      "proxy": "1",
50      "rimraf": "^3.0.0",
51      "typescript": "^3.5.3"
52    },
53    "engines": {
54      "node": ">= 6"
55    }
56  }