smartrequest/package.json

66 lines
1.5 KiB
JSON
Raw Permalink Normal View History

2017-01-28 19:02:52 +00:00
{
2023-07-10 08:17:43 +00:00
"name": "@push.rocks/smartrequest",
2024-04-14 01:54:40 +00:00
"version": "2.0.22",
2018-06-13 21:12:37 +00:00
"private": false,
2024-04-14 01:54:39 +00:00
"description": "A module for modern HTTP/HTTPS requests with support for form data, file uploads, JSON, binary data, streams, and more.",
2020-08-24 12:01:38 +00:00
"main": "dist_ts/index.js",
"typings": "dist_ts/index.d.ts",
2022-07-28 23:19:50 +00:00
"type": "module",
2017-01-28 19:02:52 +00:00
"scripts": {
2020-08-24 12:01:38 +00:00
"test": "(tstest test/ --web)",
2022-07-28 23:19:50 +00:00
"build": "(tsbuild --web)",
"buildDocs": "tsdoc"
2017-01-28 19:02:52 +00:00
},
"repository": {
"type": "git",
2024-05-29 12:15:43 +00:00
"url": "https://code.foss.global/push.rocks/smartrequest.git"
2017-01-28 19:02:52 +00:00
},
"keywords": [
2024-04-14 01:54:39 +00:00
"HTTP",
"HTTPS",
"request library",
"form data",
"file uploads",
"JSON",
"binary data",
"streams",
"keepAlive",
"TypeScript",
"modern web requests",
"drop-in replacement"
2017-01-28 19:02:52 +00:00
],
"author": "Lossless GmbH",
"license": "MIT",
"bugs": {
2023-11-09 20:22:57 +00:00
"url": "https://gitlab.com/push.rocks/smartrequest/issues"
2017-01-28 19:02:52 +00:00
},
2024-05-29 12:15:43 +00:00
"homepage": "https://code.foss.global/push.rocks/smartrequest",
2017-01-28 23:51:47 +00:00
"dependencies": {
2023-07-11 22:23:25 +00:00
"@push.rocks/smartpromise": "^4.0.2",
"@push.rocks/smarturl": "^3.0.6",
2023-11-09 20:22:57 +00:00
"agentkeepalive": "^4.5.0",
2021-05-16 23:39:25 +00:00
"form-data": "^4.0.0"
2017-01-28 23:51:47 +00:00
},
"devDependencies": {
2023-11-09 20:22:57 +00:00
"@git.zone/tsbuild": "^2.1.66",
"@git.zone/tsrun": "^1.2.44",
"@git.zone/tstest": "^1.0.77",
"@pushrocks/tapbundle": "^5.0.8",
"@types/node": "^20.9.0"
2019-08-16 19:38:50 +00:00
},
"files": [
2019-11-21 17:32:30 +00:00
"ts/**/*",
"ts_web/**/*",
"dist/**/*",
2020-08-24 12:01:38 +00:00
"dist_*/**/*",
"dist_ts/**/*",
2019-11-21 17:32:30 +00:00
"dist_ts_web/**/*",
"assets/**/*",
2019-08-16 19:38:50 +00:00
"cli.js",
"npmextra.json",
"readme.md"
2020-08-24 12:01:38 +00:00
],
"browserslist": [
"last 1 chrome versions"
2019-08-16 19:38:50 +00:00
]
2024-05-29 12:15:43 +00:00
}