forked from microsoft/node-request-light
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 1.1 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
{
"name": "request-light",
"version": "0.4.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": "./lib/node/main",
"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": {
"typescript": "^3.8.2",
"@types/node": "13.7.6",
"rimraf": "^3.0.2"
},
"dependencies": {
"http-proxy-agent": "^2.1.0",
"https-proxy-agent": "^2.2.4",
"vscode-nls": "^4.1.2"
},
"scripts": {
"prepublishOnly": "npm run clean && npm run compile && npm run remove-sourcemap-refs",
"compile": "tsc -p ./src/node && tsc -p ./src/browser",
"watch": "tsc -w -p ./src/node tsc -w -p ./src/browser",
"clean": "rimraf lib",
"remove-sourcemap-refs": "node ./build/remove-sourcemap-refs.js",
"postversion": "git push && git push --tags"
}
}