-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.62 KB
/
Copy pathpackage.json
File metadata and controls
50 lines (50 loc) · 1.62 KB
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
38
39
40
41
42
43
44
45
46
47
48
49
50
{
"author": "Steven Olmsted <steven.olmsted@ibigroup.com>",
"bugs": "https://github.com/ibi-group/isotropic-request/issues",
"dependencies": {
"@rgrove/parse-xml": "~4.2.2",
"isotropic-backoff": "~0.1.0",
"isotropic-cancel": "~0.1.0",
"isotropic-error": "~0.14.0",
"isotropic-make": "~0.14.0",
"isotropic-pubsub": "~0.16.0",
"isotropic-throttle": "~0.1.0"
},
"description": "An HTTP request function with retries, throttling, timeouts, and format handling. Built on fetch",
"devDependencies": {
"isotropic-dev-dependencies": "~0.4.0",
"isotropic-later": "~0.15.0"
},
"engines": {
"node": "^26.5.0",
"npm": "^11.17.0"
},
"files": [
"lib"
],
"homepage": "https://github.com/ibi-group/isotropic-request",
"keywords": [
"fetch",
"http",
"http-client",
"isotropic",
"request",
"retry",
"throttle",
"timeout"
],
"license": "BSD-3-Clause",
"main": "lib/request.js",
"name": "isotropic-request",
"repository": "github:ibi-group/isotropic-request",
"scripts": {
"lint": "eslint eslint.config.js lib test",
"posttest": "c8 -c ./node_modules/isotropic-dev-dependencies/config/c8.json check-coverage",
"prepare": "node ./node_modules/isotropic-dev-dependencies/lib/install-git-hooks.js",
"prepublishOnly": "npm test",
"pretest": "npm run lint",
"test": "c8 -c ./node_modules/isotropic-dev-dependencies/config/c8.json node --test"
},
"type": "module",
"version": "0.1.0"
}