-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
35 lines (35 loc) · 834 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
{
"private": true,
"type": "module",
"sourceType": "module",
"name": "simple-tcp-chat",
"version": "2.0.0",
"description": "Simple Node.js TCP Chat using Net & Readline Modules",
"main": "server.js",
"scripts": {
"start:server": "node src/server.js",
"start:client": "node src/client.js",
"lint": "eslint ."
},
"repository": {
"type": "git",
"url": "git+https://github.com/primeare/simple-tcp-chat.git"
},
"keywords": [
"chat",
"tcp",
"socket"
],
"engines": {
"node": ">=13.3.0"
},
"author": "Vladyslav Dukhin <vladyslav.dukhin@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/primeare/simple-tcp-chat/issues"
},
"homepage": "https://github.com/primeare/simple-tcp-chat#readme",
"devDependencies": {
"eslint": "^8.2.0"
}
}