-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
35 lines (35 loc) · 936 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": "electron-comlink",
"version": "0.2.0",
"description": "Electron compatibility layer for Comlink",
"main": "ElectronMessageAdapter.js",
"homepage": "https://github.com/mikehall314/electron-comlink",
"engines": {
"electron": "^9"
},
"files": [
"ElectronMessageAdapter.js"
],
"scripts": {
"test": "tape test",
"pretest": "npm run lint",
"lint": "eslint ElectronMessageAdapter.js test/**/*.js",
"test:coverage": "nyc tape test"
},
"repository": "mikehall314/electron-comlink",
"keywords": [
"electron",
"rpc",
"comlink"
],
"author": "Mike Hall <mikehall314@gmail.com>",
"license": "MIT",
"devDependencies": {
"@puntt/eslint-config": "^1.0.2",
"eslint": "^7.7.0",
"nyc": "^15.1.0",
"sinon": "^9.0.3",
"tape": "^5.0.1"
},
"dependencies": {}
}