worker-rpc
Version:
A simple RPC layer for communicating with web workers and over other transports
37 lines (36 loc) • 863 B
JSON
{
"name": "worker-rpc",
"version": "0.2.0",
"description": "A simple RPC layer for communicating with web workers and over other transports",
"scripts": {
"prepublish": "tsc",
"test": "mocha --require ts-node/register -R spec -u tdd 'test/**/*.ts'"
},
"author": "Christian Speckner <cnspeckn@googlemail.com> (https://github.com/DirtyHairy/)",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/DirtyHairy/worker-rpc"
},
"keywords": [
"worker",
"rpc"
],
"devDependencies": {
"@types/mocha": "^5.2.6",
"@types/node": "^12.0.2",
"mocha": "~6.1.4",
"ts-node": "^8.1.0",
"typescript": "~3.4.5"
},
"main": "lib/index.js",
"types": "lib/index.d.ts",
"dependencies": {
"microevent.ts": "~0.2.1"
},
"files": [
"lib",
"READNE.md",
"CHANGELOG.md"
]
}