response-iterator 1.0.4 → 1.0.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +6 -3
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "response-iterator",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.6",
|
|
4
4
|
"description": "Creates an async iterator for a variety of inputs in the browser and node. Supports fetch, node-fetch, and cross-fetch",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"Symbol",
|
|
@@ -55,16 +55,17 @@
|
|
|
55
55
|
],
|
|
56
56
|
"scripts": {
|
|
57
57
|
"build": "tsds build",
|
|
58
|
-
"deploy": "tsds deploy",
|
|
59
58
|
"docs": "tsds docs",
|
|
60
59
|
"format": "biome check --write --unsafe",
|
|
60
|
+
"prepublishOnly": "tsds validate",
|
|
61
61
|
"test": "npm run test:node && npm run test:browser",
|
|
62
62
|
"test:browser": "tsds test:browser --config wtr.config.mjs && tsds test:browser --config wtr.config.mjs \"test/**/*.test-browser.*\"",
|
|
63
63
|
"test:engines": "nvu engines tsds test:node --no-timeouts \"test/**/*.test.*\" && tsds test:node --no-timeouts \"test/**/*.test-node.*\" && npm run test:browser",
|
|
64
|
-
"test:node": "
|
|
64
|
+
"test:node": "tsds test:node --no-timeouts \"test/**/*.test.*\" && tsds test:node --no-timeouts \"test/**/*.test-node.*\"",
|
|
65
65
|
"version": "tsds version"
|
|
66
66
|
},
|
|
67
67
|
"devDependencies": {
|
|
68
|
+
"@biomejs/biome": "*",
|
|
68
69
|
"@types/mocha": "*",
|
|
69
70
|
"@types/node": "*",
|
|
70
71
|
"@web/dev-server-import-maps": "*",
|
|
@@ -73,8 +74,10 @@
|
|
|
73
74
|
"get-remote": "*",
|
|
74
75
|
"isomorphic-fetch": "*",
|
|
75
76
|
"node-fetch": "*",
|
|
77
|
+
"node-version-use": "*",
|
|
76
78
|
"pinkie-promise": "*",
|
|
77
79
|
"readable-stream": "^2.3.8",
|
|
80
|
+
"ts-dev-stack": "*",
|
|
78
81
|
"tsds-web-test-runner": "*",
|
|
79
82
|
"undici": "*"
|
|
80
83
|
},
|