UNPKG

request-light

Version:

Lightweight request library. Promise based, with proxy support.

49 lines (48 loc) 1.37 kB
{ "name": "request-light", "version": "0.8.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", "exports": { ".": { "types": "./api.d.ts", "browser": "./lib/browser/main.js", "default": "./lib/node/main.js" } }, "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": "^7.0.2", "https-proxy-agent": "^7.0.5", "@vscode/l10n": "^0.0.18", "typescript": "^5.5.2", "@types/node": "18.x", "vscode-jsonrpc": "^8.2.1", "rimraf": "^5.0.7", "ts-loader": "^9.5.1", "webpack": "^5.92.1", "webpack-cli": "^5.1.4", "ava": "^6.1.3", "proxy": "^2.2.0" }, "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" } }