smartrequest/package.json

56 lines
1.3 KiB
JSON
Raw Normal View History

2017-01-28 19:02:52 +00:00
{
2023-07-10 08:17:43 +00:00
"name": "@push.rocks/smartrequest",
2023-11-03 00:37:11 +00:00
"version": "2.0.20",
2018-06-13 21:12:37 +00:00
"private": false,
2017-01-28 19:02:52 +00:00
"description": "dropin replacement for request",
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",
"url": "git+ssh://git@gitlab.com/pushrocks/smartrequest.git"
},
"keywords": [
"request"
],
"author": "Lossless GmbH",
"license": "MIT",
"bugs": {
"url": "https://gitlab.com/pushrocks/smartrequest/issues"
},
2017-01-28 23:51:47 +00:00
"homepage": "https://gitlab.com/pushrocks/smartrequest#README",
"dependencies": {
2023-07-11 22:23:25 +00:00
"@push.rocks/smartpromise": "^4.0.2",
"@push.rocks/smarturl": "^3.0.6",
2023-04-19 02:07:44 +00:00
"agentkeepalive": "^4.3.0",
2021-05-16 23:39:25 +00:00
"form-data": "^4.0.0"
2017-01-28 23:51:47 +00:00
},
"devDependencies": {
2022-08-06 20:29:12 +00:00
"@gitzone/tsbuild": "^2.1.65",
2023-04-19 02:07:44 +00:00
"@gitzone/tsrun": "^1.2.39",
"@gitzone/tstest": "^1.0.74",
2022-07-28 23:19:50 +00:00
"@pushrocks/tapbundle": "^5.0.4",
2023-04-19 02:07:44 +00:00
"@types/node": "^18.15.11"
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
]
2023-07-11 22:23:26 +00:00
}