messageport-observable
Version:
This provides some magic wrappers for [MessagePort][1] objects and things that resemble them (windows/iframes, workers, etc.). The wrapped objects still have the same API as MessagePorts, but also have some additional features.
49 lines (48 loc) • 1.08 kB
JSON
{
"name": "messageport-observable",
"version": "1.2.4",
"description": "",
"main": "./index",
"module": "./index.mjs",
"jsnext:main": "./index.mjs",
"scripts": {
"build": "gulp",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "https://github.com/asppsa/messageport-observable.git"
},
"keywords": [
"MessageChannel",
"MessagePort",
"postMessage",
"Observable",
"Worker",
"SharedWorker"
],
"author": "Alastair Pharo <asppsa@gmail.com>",
"license": "Apache-2.0",
"devDependencies": {
"babel-core": "^6.26.0",
"babel-plugin-external-helpers": "^6.22.0",
"babel-preset-env": "^1.6.1",
"gulp": "^3.9.1",
"rollup": "^0.52.0",
"rollup-plugin-babel": "^3.0.2",
"rollup-plugin-commonjs": "^8.2.6",
"rollup-plugin-node-resolve": "^3.0.0"
},
"dependencies": {
"@stamp/it": "^1.0.1",
"zen-observable": "^0.6.0"
},
"jspm": {
"main": "index.mjs",
"meta": {
"index.mjs": {
"format": "esm"
}
}
}
}