This repository was archived by the owner on Mar 14, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.27 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.27 KB
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
39
40
41
42
43
44
45
46
47
{
"name": "node-comlink",
"version": "0.3.0",
"description": "An adapter for node worker threads to work with Comlink",
"main": "lib/child_process.js",
"types": "lib/child_process.d.ts",
"files": [
"lib/"
],
"scripts": {
"clean": "del-cli lib",
"build": "npm run clean && npm run compile && rollup lib/child_process.js --file lib/child_process.js --format cjs && rollup lib/worker_threads.js --file lib/worker_threads.js --format cjs",
"compile": "tsc --outDir lib -d",
"preversion": "npm test",
"postversion": "git push origin master && git push origin --tags && npm publish",
"test": "npm run build && jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/rocwind/node-comlink.git"
},
"keywords": [
"comlink",
"node",
"rpc"
],
"author": "Roc",
"license": "MIT",
"bugs": {
"url": "https://github.com/rocwind/node-comlink/issues"
},
"homepage": "https://github.com/rocwind/node-comlink#readme",
"peerDependencies": {
"comlink": ">=3.0.0"
},
"devDependencies": {
"@types/node": "12.12.21",
"comlink": "3.2.0",
"del-cli": "3.0.0",
"jest": "25.1.0",
"rollup": "2.0.6",
"typescript": "3.8.3"
},
"dependencies": {
"message-port-polyfill": "^0.2.0"
}
}