{ "name": "request-light", "version": "0.7.0", "description": "Lightweight request library. Promise based, with proxy support.", "main": "./lib/node/main.js", "browser": { "./lib/node/main.js": "./lib/browser/main.js" }, "typings": "./api", "author": "Microsoft Corporation", "repository": { "type": "git", "url": "https://github.com/microsoft/node-request-light" }, "license": "MIT", "bugs": { "url": "https://github.com/microsoft/node-request-light/issues" }, "devDependencies": { "http-proxy-agent": "^5.0.0", "https-proxy-agent": "^5.0.1", "vscode-nls": "^5.2.0", "typescript": "^4.9.4", "@types/node": "16.x", "vscode-jsonrpc": "^5.0.0", "rimraf": "^4.1.1", "ts-loader": "^9.4.2", "webpack": "^5.75.0", "webpack-cli": "^5.0.1", "ava": "^5.1.1", "proxy": "^1.0.2" }, "scripts": { "compile": "webpack", "watch": "webpack --watch", "bundle": "webpack --mode production --devtool hidden-source-map", "prepack": "npm run clean && npm run bundle && tsc -p ./src/test/ && ava ./lib/test/test.js", "clean": "rimraf lib", "test": "npm run compile && tsc -p ./src/test/ && ava ./lib/test/test.js" } }