summaryrefslogtreecommitdiff
path: root/deps/npm/node_modules/agent-base/package.json
diff options
context:
space:
mode:
Diffstat (limited to 'deps/npm/node_modules/agent-base/package.json')
-rw-r--r--deps/npm/node_modules/agent-base/package.json102
1 files changed, 49 insertions, 53 deletions
diff --git a/deps/npm/node_modules/agent-base/package.json b/deps/npm/node_modules/agent-base/package.json
index 70da687234..17c81217fd 100644
--- a/deps/npm/node_modules/agent-base/package.json
+++ b/deps/npm/node_modules/agent-base/package.json
@@ -1,52 +1,25 @@
{
- "_from": "agent-base@4",
- "_id": "agent-base@4.3.0",
- "_inBundle": false,
- "_integrity": "sha512-salcGninV0nPrwpGNn4VTXBb1SOuXQBiqbrNXoeizJsHrsL6ERFM2Ne3JUSBWRE6aeNJI2ROP/WEEIDUiDe3cg==",
- "_location": "/agent-base",
- "_phantomChildren": {},
- "_requested": {
- "type": "range",
- "registry": true,
- "raw": "agent-base@4",
- "name": "agent-base",
- "escapedName": "agent-base",
- "rawSpec": "4",
- "saveSpec": null,
- "fetchSpec": "4"
- },
- "_requiredBy": [
- "/http-proxy-agent",
- "/https-proxy-agent"
- ],
- "_resolved": "https://registry.npmjs.org/agent-base/-/agent-base-4.3.0.tgz",
- "_shasum": "8165f01c436009bccad0b1d122f05ed770efc6ee",
- "_spec": "agent-base@4",
- "_where": "/Users/isaacs/dev/npm/cli/node_modules/http-proxy-agent",
- "author": {
- "name": "Nathan Rajlich",
- "email": "nathan@tootallnate.net",
- "url": "http://n8.io/"
- },
- "bugs": {
- "url": "https://github.com/TooTallNate/node-agent-base/issues"
- },
- "bundleDependencies": false,
- "dependencies": {
- "es6-promisify": "^5.0.0"
- },
- "deprecated": false,
+ "name": "agent-base",
+ "version": "6.0.1",
"description": "Turn a function into an `http.Agent` instance",
- "devDependencies": {
- "@types/es6-promisify": "^5.0.0",
- "@types/node": "^10.5.3",
- "mocha": "^3.4.2",
- "ws": "^3.0.0"
+ "main": "dist/src/index",
+ "typings": "dist/src/index",
+ "files": [
+ "dist/src",
+ "src"
+ ],
+ "scripts": {
+ "prebuild": "rimraf dist",
+ "build": "tsc",
+ "postbuild": "cpy --parents src test '!**/*.ts' dist",
+ "test": "mocha --reporter spec dist/test/*.js",
+ "test-lint": "eslint src --ext .js,.ts",
+ "prepublishOnly": "npm run build"
},
- "engines": {
- "node": ">= 4.0.0"
+ "repository": {
+ "type": "git",
+ "url": "git://github.com/TooTallNate/node-agent-base.git"
},
- "homepage": "https://github.com/TooTallNate/node-agent-base#readme",
"keywords": [
"http",
"agent",
@@ -54,15 +27,38 @@
"barebones",
"https"
],
+ "author": "Nathan Rajlich <nathan@tootallnate.net> (http://n8.io/)",
"license": "MIT",
- "main": "./index.js",
- "name": "agent-base",
- "repository": {
- "type": "git",
- "url": "git://github.com/TooTallNate/node-agent-base.git"
+ "bugs": {
+ "url": "https://github.com/TooTallNate/node-agent-base/issues"
},
- "scripts": {
- "test": "mocha --reporter spec"
+ "dependencies": {
+ "debug": "4"
},
- "version": "4.3.0"
+ "devDependencies": {
+ "@types/debug": "4",
+ "@types/mocha": "^5.2.7",
+ "@types/node": "^12.12.17",
+ "@types/semver": "^7.1.0",
+ "@types/ws": "^6.0.3",
+ "@typescript-eslint/eslint-plugin": "1.6.0",
+ "@typescript-eslint/parser": "1.1.0",
+ "async-listen": "^1.2.0",
+ "cpy-cli": "^2.0.0",
+ "eslint": "5.16.0",
+ "eslint-config-airbnb": "17.1.0",
+ "eslint-config-prettier": "4.1.0",
+ "eslint-import-resolver-typescript": "1.1.1",
+ "eslint-plugin-import": "2.16.0",
+ "eslint-plugin-jsx-a11y": "6.2.1",
+ "eslint-plugin-react": "7.12.4",
+ "mocha": "^6.2.0",
+ "rimraf": "^3.0.0",
+ "semver": "^7.1.2",
+ "typescript": "^3.5.3",
+ "ws": "^3.0.0"
+ },
+ "engines": {
+ "node": ">= 6.0.0"
+ }
}