-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.24 KB
/
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
47
48
49
{
"name": "tcp-chat-server",
"version": "1.0.10",
"main": "src/index.js",
"author": "Prithwee Das",
"description": "It's a simple tcp chat client and server built with node's net module",
"license": "MIT",
"bin": {
"tcp-chat": "./bin/tcp-chat.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/prithweedas/tcp-chat"
},
"scripts": {
"build": "rm -rf dist && babel src -d dist --copy-files",
"start": "node dist",
"start:serve": "npm start -- --serve",
"start:connect": "npm start -- --connect",
"dev": "babel-node src",
"dev:serve": "npm run dev -- --serve",
"dev:connect": "npm run dev -- --connect"
},
"dependencies": {
"dantil": "github:dannynemer/dantil",
"shortid": "^2.2.8"
},
"devDependencies": {
"@types/node": "^9.6.6",
"babel-cli": "^6.26.0",
"babel-eslint": "8",
"babel-plugin-transform-class-properties": "^6.24.1",
"babel-preset-env": "^1.6.1",
"babel-preset-stage-3": "^6.24.1",
"eslint": "4.9.0",
"eslint-config-airbnb": "16.1.0",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-plugin-babel": "^5.1.0",
"eslint-plugin-import": "2.7.0"
},
"homepage": "https://github.com/prithweedas/tcp-chat",
"keywords": [
"chat",
"tcp",
"chat server",
"node",
"node.js"
]
}