node-request-light/package.json

42 строки
1.2 KiB
JSON

{
"name": "request-light",
"version": "0.5.5",
"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": "^4.0.1",
"https-proxy-agent": "^5.0.0",
"vscode-nls": "^5.0.0",
"typescript": "^4.3.5",
"@types/node": "13.7.6",
"rimraf": "^3.0.2",
"ts-loader": "^9.2.3",
"webpack": "^5.44.0",
"webpack-cli": "^4.7.2",
"ava": "^3.15.0",
"proxy": "^1.0.2"
},
"scripts": {
"compile": "webpack",
"watch": "webpack --watch",
"package": "webpack --mode production --devtool hidden-source-map",
"prepublishOnly": "npm run clean && npm run package && tsc -p ./src/test/ && ava ./lib/test/test.js",
"clean": "rimraf lib",
"postversion": "git push && git push --tags",
"test": "npm run compile && tsc -p ./src/test/ && ava ./lib/test/test.js"
}
}