-
Notifications
You must be signed in to change notification settings - Fork 18
/
package.json
48 lines (48 loc) · 1.33 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
{
"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"
}
}