-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 810 Bytes
/
package.json
File metadata and controls
41 lines (41 loc) · 810 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
39
40
41
{
"name": "beamed",
"version": "0.3.0",
"description": "A blazing fast, slim communication protocol for NodeJS IPC",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"author": {
"name": "Sven Rogge"
},
"license": "MIT",
"repository": "github:svi3c/node-beamed",
"engines": {
"node": ">= 10.16.0"
},
"scripts": {
"build": "tsc && rm dist/types.js",
"test": "jest",
"prepublish": "yarn build"
},
"devDependencies": {
"@types/jest": "^25.2.3",
"@types/node": "^14.0.14",
"jest": "^26.0.1",
"ts-jest": "^26.0.0",
"typescript": "^3.9.3"
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "node"
},
"keywords": [
"tcp",
"net",
"ipc",
"messaging",
"protocol",
"socket",
"server",
"client"
]
}