This repository has been archived by the owner on Jun 12, 2022. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 27
/
package.json
63 lines (63 loc) · 1.71 KB
/
package.json
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
{
"name": "make-fetch-happen",
"version": "4.0.1",
"description": "Opinionated, caching, retrying fetch client",
"main": "index.js",
"files": [
"*.js",
"lib"
],
"scripts": {
"prerelease": "npm t",
"release": "standard-version -s",
"postrelease": "npm publish && git push --follow-tags",
"pretest": "standard",
"test": "tap --coverage --nyc-arg=--all --timeout=35 -J test/*.js",
"update-coc": "weallbehave -o . && git add CODE_OF_CONDUCT.md && git commit -m 'docs(coc): updated CODE_OF_CONDUCT.md'",
"update-contrib": "weallcontribute -o . && git add CONTRIBUTING.md && git commit -m 'docs(contributing): updated CONTRIBUTING.md'"
},
"repository": "https://github.com/zkat/make-fetch-happen",
"keywords": [
"http",
"request",
"fetch",
"mean girls",
"caching",
"cache",
"subresource integrity"
],
"author": {
"name": "Kat Marchán",
"email": "[email protected]",
"twitter": "maybekatz"
},
"license": "ISC",
"dependencies": {
"agentkeepalive": "^3.4.1",
"cacache": "^11.0.1",
"http-cache-semantics": "^3.8.1",
"http-proxy-agent": "^2.1.0",
"https-proxy-agent": "^2.2.1",
"lru-cache": "^4.1.2",
"mississippi": "^3.0.0",
"node-fetch-npm": "^2.0.2",
"promise-retry": "^1.1.1",
"socks-proxy-agent": "^4.0.0",
"ssri": "^6.0.0"
},
"devDependencies": {
"bluebird": "^3.5.1",
"mkdirp": "^0.5.1",
"nock": "^9.2.3",
"npmlog": "^4.1.2",
"require-inject": "^1.4.2",
"rimraf": "^2.6.2",
"safe-buffer": "^5.1.1",
"standard": "^11.0.1",
"standard-version": "^4.3.0",
"tacks": "^1.2.6",
"tap": "^11.1.3",
"weallbehave": "^1.0.0",
"weallcontribute": "^1.0.7"
}
}