Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
67 changes: 44 additions & 23 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,27 +1,48 @@
{
"name": "websocket.io"
, "description": "Socket.IO websocket server"
, "version": "0.2.1"
, "contributors": [
{ "name": "Guillermo Rauch", "email": "[email protected]" }
, { "name": "Einar Otto Stangvik", "email": "[email protected]" }
, { "name": "Arnout Kazemier", "email": "[email protected]" }
, { "name": "Nico Kaiser", "email": "[email protected]" }
, { "name": "Andor Goetzendorff", "email": "[email protected]" }
]
, "dependencies": {
"debug": "*"
, "ws": "0.4.20"
}
, "devDependencies": {
"mocha": "*"
, "should": "*"
, "colors": "*"
, "benchmark": "0.2.2"
}
, "main": "lib/websocket.io"
, "engines": { "node": ">=0.4.0" }
, "scripts": {
"name": "websocket.io",
"description": "Socket.IO websocket server",
"version": "0.2.1",
"contributors": [
{
"name": "Guillermo Rauch",
"email": "[email protected]"
},
{
"name": "Einar Otto Stangvik",
"email": "[email protected]"
},
{
"name": "Arnout Kazemier",
"email": "[email protected]"
},
{
"name": "Nico Kaiser",
"email": "[email protected]"
},
{
"name": "Andor Goetzendorff",
"email": "[email protected]"
}
],
"dependencies": {
"debug": "*",
"ws": "0.4.20"
},
"devDependencies": {
"mocha": "*",
"should": "*",
"colors": "*",
"benchmark": "0.2.2"
},
"main": "lib/websocket.io",
"engines": {
"node": ">=0.4.0"
},
"scripts": {
"test": "make test"
},
"repository": {
"type": "git",
"url": "https://github.com/LearnBoost/websocket.io.git"
}
}