-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1023 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
36
37
38
39
40
41
42
43
44
45
46
{
"name": "@ssd-solar/tiny-ipc",
"version": "0.0.1",
"description": "Tiny IPC is an IPC library written in modern JS, meant to have the least code possible",
"main": "index.js",
"template": {
"extends": [
"node",
"eslint"
]
},
"scripts": {
"test": "mocha -A",
"cov": "nyc mocha",
"lint": "eslint .",
"fix": "eslint --fix ."
},
"keywords": [
"tiny-ipc",
"ipc",
"rpc",
"network"
],
"author": "Maciej Krüger <mkg20001@gmail.com>",
"license": "MPL-2.0",
"dependencies": {
"@hapi/joi": "^17.1.1",
"debug": "^4.1.1"
},
"devDependencies": {
"eslint": "*",
"eslint-config-aegir-standalone": "*",
"eslint-config-oclif": "*",
"mkgs-tool": "^0.1.9",
"mocha": "*",
"nyc": "*"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ssd-solar/tiny-ipc.git"
},
"bugs": {
"url": "https://github.com/ssd-solar/tiny-ipc/issues"
},
"homepage": "https://github.com/ssd-solar/tiny-ipc#readme"
}