UNPKG

http-dns-requester

Version:

A NodeJS wrapper to perform DNS resolution and HTTP/HTTPS requests with custom certificate authorities. Nice for container communication.

72 lines (71 loc) 1.65 kB
{ "name": "http-dns-requester", "version": "2.2.3", "description": "A NodeJS wrapper to perform DNS resolution and HTTP/HTTPS requests with custom certificate authorities.\r Nice for container communication.", "main": "dist/main.js", "types": "dist/main.d.ts", "scripts": { "build": "tsc", "test": "nyc mocha" }, "dependencies": { "http-proxy-agent": "^2.1.0", "https-proxy-agent": "^2.2.4", "request": "^2.88.2" }, "devDependencies": { "@types/chai": "^4.2.10", "@types/mocha": "^5.2.7", "@types/node": "^12.12.29", "@types/request": "^2.48.4", "chai": "^4.2.0", "mocha": "^6.2.2", "mocha-junit-reporter": "^1.23.3", "nyc": "^14.1.1", "source-map-support": "^0.5.16", "ts-node": "^8.6.2", "tslint-config-prettier": "^1.18.0", "typescript": "^3.8.3" }, "nyc": { "include": [ "src/**/*.ts", "src/**/*.tsx" ], "exclude": [ "src/**/*.spec.ts" ], "extension": [ ".ts", ".tsx" ], "require": [ "ts-node/register" ], "reporter": [ "text", "html", "cobertura" ], "report-dir": "code-test-coverage", "sourceMap": true, "instrument": true }, "repository": { "type": "git", "url": "git+https://github.com/joham97/http-dns-requester.git" }, "keywords": [ "HTTP", "HTTPS", "DNS", "CA", "Certificate Authorities" ], "author": "Jonas Hammerschmidt", "license": "MIT", "bugs": { "url": "https://github.com/joham97/http-dns-requester/issues" }, "homepage": "https://github.com/joham97/http-dns-requester#readme" }