-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 921 Bytes
/
package.json
File metadata and controls
50 lines (50 loc) · 921 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
42
43
44
45
46
47
48
49
50
{
"name": "tcp-chat",
"version": "0.1.0",
"description": "whatever",
"keywords": [
"tcp",
"chat"
],
"homepage": "https://github.com/mone/tcp-chat/wiki",
"repository": {
"type": "git",
"url": "http://github.com/mone/tcp-chat.git"
},
"bugs": {
"url": "https://github.com/mone/tcp-chat/issues",
"email": "mone@tpatpc.it"
},
"author": {
"name": "Mone",
"email": "mone@tpatpc.it"
},
"files": [
"README.md",
"lib",
"server.js"
],
"main": "server",
"directories": {
"lib": "./lib"
},
"engines": [
"node"
],
"scripts": {
"test": "node run_tests.js",
"start": "node server.js"
},
"dependencies": {
"requirejs": "2.1.20",
"split": "1.0.0",
"config": "1.15.0",
"log4node": "0.1.6"
},
"devDependencies": {
"diveSync": "0.3.0",
"nodemon": "1.4.1",
"nodeunit": "0.9.1",
"through": "2.3.8"
}
}