1 | {
|
2 | "name": "request-light",
|
3 | "version": "0.8.0",
|
4 | "description": "Lightweight request library. Promise based, with proxy support.",
|
5 | "main": "./lib/node/main.js",
|
6 | "browser": {
|
7 | "./lib/node/main.js": "./lib/browser/main.js"
|
8 | },
|
9 | "typings": "./api",
|
10 | "exports": {
|
11 | ".": {
|
12 | "types": "./api.d.ts",
|
13 | "browser": "./lib/browser/main.js",
|
14 | "default": "./lib/node/main.js"
|
15 | }
|
16 | },
|
17 | "author": "Microsoft Corporation",
|
18 | "repository": {
|
19 | "type": "git",
|
20 | "url": "https://github.com/microsoft/node-request-light"
|
21 | },
|
22 | "license": "MIT",
|
23 | "bugs": {
|
24 | "url": "https://github.com/microsoft/node-request-light/issues"
|
25 | },
|
26 | "devDependencies": {
|
27 | "http-proxy-agent": "^7.0.2",
|
28 | "https-proxy-agent": "^7.0.5",
|
29 | "@vscode/l10n": "^0.0.18",
|
30 | "typescript": "^5.5.2",
|
31 | "@types/node": "18.x",
|
32 | "vscode-jsonrpc": "^8.2.1",
|
33 | "rimraf": "^5.0.7",
|
34 | "ts-loader": "^9.5.1",
|
35 | "webpack": "^5.92.1",
|
36 | "webpack-cli": "^5.1.4",
|
37 | "ava": "^6.1.3",
|
38 | "proxy": "^2.2.0"
|
39 | },
|
40 | "scripts": {
|
41 | "compile": "webpack",
|
42 | "watch": "webpack --watch",
|
43 | "bundle": "webpack --mode production --devtool hidden-source-map",
|
44 | "prepack": "npm run clean && npm run bundle && tsc -p ./src/test/ && ava ./lib/test/test.js",
|
45 | "clean": "rimraf lib",
|
46 | "test": "npm run compile && tsc -p ./src/test/ && ava ./lib/test/test.js"
|
47 | }
|
48 | }
|