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

github.com/npm/cli.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'node_modules/http-proxy-agent/package.json')
-rw-r--r--node_modules/http-proxy-agent/package.json82
1 files changed, 26 insertions, 56 deletions
diff --git a/node_modules/http-proxy-agent/package.json b/node_modules/http-proxy-agent/package.json
index 4137629a2..870dd5d8a 100644
--- a/node_modules/http-proxy-agent/package.json
+++ b/node_modules/http-proxy-agent/package.json
@@ -1,43 +1,39 @@
{
- "_from": "http-proxy-agent@^4.0.1",
- "_id": "http-proxy-agent@4.0.1",
- "_inBundle": false,
- "_integrity": "sha512-k0zdNgqWTGA6aeIRVpvfVob4fL52dTfaehylg0Y4UvSySvOq/Y+BOyPrgpUrA7HylqvU8vIZGsRuXmspskV0Tg==",
- "_location": "/http-proxy-agent",
- "_phantomChildren": {},
- "_requested": {
- "type": "range",
- "registry": true,
- "raw": "http-proxy-agent@^4.0.1",
- "name": "http-proxy-agent",
- "escapedName": "http-proxy-agent",
- "rawSpec": "^4.0.1",
- "saveSpec": null,
- "fetchSpec": "^4.0.1"
- },
- "_requiredBy": [
- "/make-fetch-happen"
+ "name": "http-proxy-agent",
+ "version": "4.0.1",
+ "description": "An HTTP(s) proxy `http.Agent` implementation for HTTP",
+ "main": "./dist/index.js",
+ "types": "./dist/index.d.ts",
+ "files": [
+ "dist"
],
- "_resolved": "https://registry.npmjs.org/http-proxy-agent/-/http-proxy-agent-4.0.1.tgz",
- "_shasum": "8a8c8ef7f5932ccf953c296ca8291b95aa74aa3a",
- "_spec": "http-proxy-agent@^4.0.1",
- "_where": "/Users/isaacs/dev/npm/cli/node_modules/make-fetch-happen",
- "author": {
- "name": "Nathan Rajlich",
- "email": "nathan@tootallnate.net",
- "url": "http://n8.io/"
+ "scripts": {
+ "prebuild": "rimraf dist",
+ "build": "tsc",
+ "test": "mocha",
+ "test-lint": "eslint src --ext .js,.ts",
+ "prepublishOnly": "npm run build"
},
+ "repository": {
+ "type": "git",
+ "url": "git://github.com/TooTallNate/node-http-proxy-agent.git"
+ },
+ "keywords": [
+ "http",
+ "proxy",
+ "endpoint",
+ "agent"
+ ],
+ "author": "Nathan Rajlich <nathan@tootallnate.net> (http://n8.io/)",
+ "license": "MIT",
"bugs": {
"url": "https://github.com/TooTallNate/node-http-proxy-agent/issues"
},
- "bundleDependencies": false,
"dependencies": {
"@tootallnate/once": "1",
"agent-base": "6",
"debug": "4"
},
- "deprecated": false,
- "description": "An HTTP(s) proxy `http.Agent` implementation for HTTP",
"devDependencies": {
"@types/debug": "4",
"@types/node": "^12.12.11",
@@ -57,31 +53,5 @@
},
"engines": {
"node": ">= 6"
- },
- "files": [
- "dist"
- ],
- "homepage": "https://github.com/TooTallNate/node-http-proxy-agent#readme",
- "keywords": [
- "http",
- "proxy",
- "endpoint",
- "agent"
- ],
- "license": "MIT",
- "main": "./dist/index.js",
- "name": "http-proxy-agent",
- "repository": {
- "type": "git",
- "url": "git://github.com/TooTallNate/node-http-proxy-agent.git"
- },
- "scripts": {
- "build": "tsc",
- "prebuild": "rimraf dist",
- "prepublishOnly": "npm run build",
- "test": "mocha",
- "test-lint": "eslint src --ext .js,.ts"
- },
- "types": "./dist/index.d.ts",
- "version": "4.0.1"
+ }
}