-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
39 lines (39 loc) · 941 Bytes
/
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
{
"name": "node-fetch-with-proxy",
"version": "0.1.6",
"description": "node-fetch with proxy-agent",
"main": "lib/fetch-with-proxy.js",
"browser": "./lib/browser.js",
"scripts": {
"test": "jest",
"format": "prettier --write \"{lib,test}/**/*.js\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/snoguchi/node-fetch-with-proxy.git"
},
"keywords": [
"http",
"fetch",
"proxy"
],
"author": "Shinsuke Noguchi <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/snoguchi/node-fetch-with-proxy/issues"
},
"homepage": "https://github.com/snoguchi/node-fetch-with-proxy#readme",
"dependencies": {
"node-fetch": "^2.6.2",
"proxy-agent": "^5.0.0"
},
"devDependencies": {
"http-proxy": "^1.18.1",
"jest": "^26.6.3",
"prettier": "^2.2.1"
},
"prettier": {
"singleQuote": true,
"printWidth": 120
}
}