forked from DirtyHairy/worker-rpc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
35 lines (35 loc) · 879 Bytes
/
package.json
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
{
"name": "worker-rpc",
"version": "0.2.0",
"description": "A simple RPC layer for communicating with web workers and over other transports",
"scripts": {
"prepublish": "tsc"
},
"author": "Christian Speckner <[email protected]> (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": "10.9.2",
"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"
]
}