webrequest/package.json

65 lines
1.6 KiB
JSON
Raw Permalink Normal View History

2018-11-30 16:12:48 +00:00
{
2023-07-10 20:31:55 +00:00
"name": "@push.rocks/webrequest",
2024-04-17 18:19:51 +00:00
"version": "3.0.37",
2018-11-30 16:12:48 +00:00
"private": false,
2024-04-14 16:41:19 +00:00
"description": "A module for making secure web requests from browsers with support for caching and fault tolerance.",
2020-06-25 22:45:19 +00:00
"main": "dist_ts/index.js",
"typings": "dist_ts/index.d.ts",
2022-03-16 15:23:32 +00:00
"type": "module",
2018-11-30 16:12:48 +00:00
"author": "Lossless GmbH",
"license": "MIT",
"scripts": {
2018-12-06 00:02:35 +00:00
"test": "(tstest test/ --web)",
2023-02-12 16:54:00 +00:00
"build": "(tsbuild --web --allowimplicitany && tsbundle npm)",
"buildDocs": "tsdoc"
2018-11-30 16:12:48 +00:00
},
"devDependencies": {
2024-04-17 18:15:46 +00:00
"@api.global/typedserver": "^3.0.27",
2024-03-03 09:36:24 +00:00
"@git.zone/tsbuild": "^2.1.72",
"@git.zone/tsbundle": "^2.0.15",
2023-08-27 14:33:10 +00:00
"@git.zone/tsrun": "^1.2.46",
2024-04-17 18:15:46 +00:00
"@git.zone/tstest": "^1.0.88",
"@push.rocks/tapbundle": "^5.0.23",
"@types/node": "^20.12.7"
2018-11-30 16:12:48 +00:00
},
"dependencies": {
2023-07-27 11:59:21 +00:00
"@push.rocks/smartdelay": "^3.0.5",
2024-03-03 09:36:24 +00:00
"@push.rocks/smartenv": "^5.0.12",
2024-04-17 18:19:51 +00:00
"@push.rocks/smartjson": "^5.0.19",
2023-07-27 11:59:21 +00:00
"@push.rocks/smartpromise": "^4.0.3",
2023-10-20 16:01:12 +00:00
"@push.rocks/webstore": "^2.0.13"
},
"files": [
2020-06-25 22:45:19 +00:00
"ts/**/*",
"ts_web/**/*",
"dist/**/*",
"dist_*/**/*",
"dist_ts/**/*",
"dist_ts_web/**/*",
"assets/**/*",
"cli.js",
"npmextra.json",
"readme.md"
2020-07-08 02:15:14 +00:00
],
"browserslist": [
"last 1 chrome versions"
2024-04-14 16:41:19 +00:00
],
"keywords": [
"webrequest",
"HTTP",
"secure",
"browsers",
"caching",
"fault tolerance",
"json",
"abort",
"timeout",
"multi-endpoint",
"fetch API"
2024-05-29 12:17:42 +00:00
],
"homepage": "https://code.foss.global/push.rocks/webrequest",
"repository": {
"type": "git",
"url": "https://code.foss.global/push.rocks/webrequest.git"
}
}