-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
50 lines (50 loc) · 1.32 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
{
"name": "fetch-with-proxy",
"version": "3.0.0",
"description": "Wrap isomorphic fetch to enable proxy use.",
"directories": {
"test": "test"
},
"main": "./lib/index.js",
"browser": "./lib/browser.js",
"scripts": {
"test": "mocha --require babel-polyfill",
"lint": "eslint --ext=.js ./test/*.js ./src/*.js",
"build": "babel src --out-dir lib",
"prepublish": "npm run build",
"pretest": "npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/touv/node-fetch-with-proxy.git"
},
"keywords": [
"http",
"fetch",
"proxy"
],
"author": "Nicolas Thouvenin <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/touv/node-fetch-with-proxy/issues"
},
"homepage": "https://github.com/touv/node-fetch-with-proxy#readme",
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-core": "^6.26.3",
"babel-eslint": "^10.1.0",
"babel-polyfill": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"babel-preset-stage-3": "^6.24.1",
"cross-fetch": "^3.0.6",
"eslint": "^7.15.0",
"eslint-plugin-import": "^2.22.1",
"mocha": "^8.2.1"
},
"dependencies": {
"proxy-from-env": "^1.1.0",
"node-abort-controller": "^1.1.0",
"tunnel-agent": "^0.6.0"
}
}