-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 919 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
{
"name": "beamio",
"version": "0.0.0",
"description": "Fastest web-friendly networking library",
"main": "main.js",
"scripts": {
"build": "echo Compiling... && rm -fr dist/ && tsc && echo Compilation done !",
"dev": "tsc -w",
"test": "ts-node test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ProjectDrinX/BeamIO.git"
},
"engines": {
"node": "14.* || >=16.*"
},
"keywords": [
"networking",
"websocket"
],
"author": "Mathieu Colmon",
"license": "ISC",
"devDependencies": {
"@types/node": "^17.0.18",
"@types/ws": "^8.2.2",
"@typescript-eslint/eslint-plugin": "^5.11.0",
"@typescript-eslint/parser": "^5.11.0",
"eslint": "^8.8.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.25.4",
"ts-node": "^10.5.0",
"typescript": "^4.5.5"
},
"dependencies": {
"ws": "^8.5.0"
}
}