Welcome to mirror list, hosted at ThFree Co, Russian Federation.

package.json « make-fetch-happen « node_modules - github.com/npm/cli.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 7e854dcdf088059bcd899c6a9d698647bbc1890e (plain)
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
61
62
63
64
65
66
67
68
69
70
71
72
{
  "name": "make-fetch-happen",
  "version": "8.0.14",
  "description": "Opinionated, caching, retrying fetch client",
  "main": "index.js",
  "files": [
    "*.js",
    "lib",
    "utils"
  ],
  "scripts": {
    "preversion": "npm t",
    "postversion": "npm publish",
    "prepublishOnly": "git push --follow-tags",
    "test": "tap test/*.js",
    "posttest": "npm run lint",
    "eslint": "eslint",
    "lint": "npm run eslint -- *.js utils test",
    "lintfix": "npm run lint -- --fix"
  },
  "repository": "https://github.com/npm/make-fetch-happen",
  "keywords": [
    "http",
    "request",
    "fetch",
    "mean girls",
    "caching",
    "cache",
    "subresource integrity"
  ],
  "author": {
    "name": "Kat Marchán",
    "email": "kzm@zkat.tech",
    "twitter": "maybekatz"
  },
  "license": "ISC",
  "dependencies": {
    "agentkeepalive": "^4.1.3",
    "cacache": "^15.0.5",
    "http-cache-semantics": "^4.1.0",
    "http-proxy-agent": "^4.0.1",
    "https-proxy-agent": "^5.0.0",
    "is-lambda": "^1.0.1",
    "lru-cache": "^6.0.0",
    "minipass": "^3.1.3",
    "minipass-collect": "^1.0.2",
    "minipass-fetch": "^1.3.2",
    "minipass-flush": "^1.0.5",
    "minipass-pipeline": "^1.2.4",
    "promise-retry": "^2.0.1",
    "socks-proxy-agent": "^5.0.0",
    "ssri": "^8.0.0"
  },
  "devDependencies": {
    "eslint": "^7.14.0",
    "eslint-plugin-import": "^2.22.1",
    "eslint-plugin-node": "^11.1.0",
    "eslint-plugin-promise": "^4.2.1",
    "eslint-plugin-standard": "^5.0.0",
    "mkdirp": "^1.0.4",
    "nock": "^11.9.1",
    "npmlog": "^4.1.2",
    "require-inject": "^1.4.2",
    "rimraf": "^2.7.1",
    "safe-buffer": "^5.2.1",
    "standard-version": "^7.1.0",
    "tap": "^14.11.0"
  },
  "engines": {
    "node": ">= 10"
  }
}