package.json
1 { 2 "name": "proxy-from-env", 3 "version": "1.1.0", 4 "description": "Offers getProxyForUrl to get the proxy URL for a URL, respecting the *_PROXY (e.g. HTTP_PROXY) and NO_PROXY environment variables.", 5 "main": "index.js", 6 "scripts": { 7 "lint": "eslint *.js", 8 "test": "mocha ./test.js --reporter spec", 9 "test-coverage": "istanbul cover ./node_modules/.bin/_mocha -- --reporter spec" 10 }, 11 "repository": { 12 "type": "git", 13 "url": "https://github.com/Rob--W/proxy-from-env.git" 14 }, 15 "keywords": [ 16 "proxy", 17 "http_proxy", 18 "https_proxy", 19 "no_proxy", 20 "environment" 21 ], 22 "author": "Rob Wu <rob@robwu.nl> (https://robwu.nl/)", 23 "license": "MIT", 24 "bugs": { 25 "url": "https://github.com/Rob--W/proxy-from-env/issues" 26 }, 27 "homepage": "https://github.com/Rob--W/proxy-from-env#readme", 28 "devDependencies": { 29 "coveralls": "^3.0.9", 30 "eslint": "^6.8.0", 31 "istanbul": "^0.4.5", 32 "mocha": "^7.1.0" 33 } 34 }