Odoo GraphQL Subscription using Node, Express JS for Sample
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

83 lines
2.0 KiB

{
"name": "response-iterator",
"description": "Creates an async iterator for a variety of inputs in the browser and node. Supports fetch, node-fetch, and cross-fetch",
"version": "0.2.6",
"author": {
"email": "kmalakoff@gmail.com",
"name": "Kevin Malakoff",
"url": "https://github.com/kmalakoff"
},
"license": "MIT",
"main": "dist/cjs/index.js",
"module": "dist/esm/index.mjs",
"files": [
"dist"
],
"scripts": {
"build": "tsds build",
"deploy": "tsds deploy",
"format": "tsds format",
"lint": "tsds lint",
"test": "tsds test:node && tsds test:node \"test/**/*.test-node.*\" && tsds test:browser"
},
"homepage": "https://github.com/kmalakoff/response-iterator#README.md",
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/kmalakoff/response-iterator.git"
},
"bugs": {
"url": "https://github.com/kmalakoff/response-iterator/issues"
},
"keywords": [
"Symbol",
"Symbol.asyncIterator",
"array",
"arrayBuffer",
"asyncIterator",
"axios",
"blob",
"body",
"browser",
"cross-fetch",
"fetch",
"got",
"isomorphic-fetch",
"iteration",
"iterator",
"node",
"node-fetch",
"response",
"stream",
"typescript",
"undici"
],
"devDependencies": {
"@types/axios": "^0.14.0",
"@types/node": "^18.0.1",
"@types/node-fetch": "^3.0.3",
"cross-fetch": "^3.1.5",
"got": "^12.1.0",
"isomorphic-fetch": "^3.0.0",
"readable-stream-2": "npm:readable-stream@2.3.7",
"readable-stream-3": "npm:readable-stream@4.0.0",
"ts-dev-stack": "^0.6.5",
"undici": "^5.6.0"
},
"type": "module",
"engines": {
"node": ">=0.8"
},
"exports": {
".": {
"import": "./dist/esm/index.mjs",
"require": "./dist/cjs/index.js",
"types": "./dist/types/index.d.ts"
},
"./*": "./*"
},
"tsds": {
"source": "src/index.ts"
},
"types": "dist/types/index.d.ts",
"unpkg": "dist/umd/response-iterator.js"
}