forked from DirtyHairy/worker-rpc
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 925 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 925 Bytes
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
36
37
38
{
"name": "@playcode/worker-rpc",
"version": "0.5.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/playcode/worker-rpc"
},
"keywords": [
"worker",
"rpc"
],
"devDependencies": {
"@types/mocha": "^5.2.6",
"@types/node": "^12.0.2",
"jsdom": "^16.6.0",
"jsdom-global": "^3.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"
]
}