chenyc
2025-12-09 545c24c6a711d71b65f3d4e8122fee3837fb1edc
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
{
  "name": "follow-redirects",
  "version": "1.5.10",
  "description": "HTTP and HTTPS modules that follow redirects.",
  "main": "index.js",
  "engines": {
    "node": ">=4.0"
  },
  "scripts": {
    "test": "npm run lint && npm run mocha",
    "lint": "eslint *.js test",
    "mocha": "nyc mocha"
  },
  "repository": {
    "type": "git",
    "url": "git@github.com:follow-redirects/follow-redirects.git"
  },
  "homepage": "https://github.com/follow-redirects/follow-redirects",
  "bugs": {
    "url": "https://github.com/follow-redirects/follow-redirects/issues"
  },
  "keywords": [
    "http",
    "https",
    "url",
    "redirect",
    "client",
    "location",
    "utility"
  ],
  "author": "Ruben Verborgh <ruben@verborgh.org> (https://ruben.verborgh.org/)",
  "contributors": [
    "Olivier Lalonde <olalonde@gmail.com> (http://www.syskall.com)",
    "James Talmage <james@talmage.io>"
  ],
  "files": [
    "index.js",
    "create.js",
    "http.js",
    "https.js"
  ],
  "dependencies": {
    "debug": "=3.1.0"
  },
  "devDependencies": {
    "concat-stream": "^1.6.0",
    "coveralls": "^3.0.2",
    "eslint": "^4.19.1",
    "express": "^4.16.2",
    "mocha": "^5.0.0",
    "nyc": "^11.8.0"
  },
  "license": "MIT",
  "nyc": {
    "reporter": [
      "lcov",
      "text"
    ]
  }
}