uses-proxy
Version:
Check if a url shall be proxied through a http(s) proxy
52 lines • 1.19 kB
JSON
{
"name": "uses-proxy",
"version": "1.1.0",
"description": "Check if a url shall be proxied through a http(s) proxy",
"keywords": [
"proxy",
"no_proxy",
"no-proxy"
],
"homepage": "https://github.com/commenthol/uses-proxy#readme",
"bugs": {
"url": "https://github.com/commenthol/uses-proxy/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/commenthol/uses-proxy.git"
},
"license": "MIT",
"author": "commenthol <commenthol@gmail.com>",
"type": "module",
"main": "src/index.js",
"module": "src/index.js",
"types": "./types",
"directories": {},
"files": [
"src",
"types"
],
"dependencies": {
"ipaddr.js": "^2.0.1"
},
"devDependencies": {
"@types/node": "^22.10.6",
"c8": "^10.1.3",
"eslint": "^9.18.0",
"eslint-config-prettier": "^10.0.1",
"eslint-plugin-prettier": "^5.2.2",
"globals": "^15.14.0",
"mocha": "^11.0.1",
"npm-run-all2": "^7.0.2",
"typescript": "^5.7.3"
},
"engines": {
"node": ">= 20"
},
"scripts": {
"ci": "npm-run-all lint test types",
"lint": "eslint .",
"test": "c8 mocha",
"types": "rm -r types; tsc"
}
}