27 lines
576 B
JSON
27 lines
576 B
JSON
{
|
|
"name": "nodejs-websocket",
|
|
"version": "1.7.1",
|
|
"author": "Sitegui <sitegui@sitegui.com.br>",
|
|
"description": "Basic server&client approach to websocket (text and binary frames)",
|
|
"main": "./index.js",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/sitegui/nodejs-websocket"
|
|
},
|
|
"keywords": [
|
|
"websocket",
|
|
"websocket-server",
|
|
"websocket-client"
|
|
],
|
|
"license": "MIT",
|
|
"engines": {
|
|
"node": ">=0.10"
|
|
},
|
|
"scripts": {
|
|
"test": "mocha -R spec -b"
|
|
},
|
|
"devDependencies": {
|
|
"mocha": "^3.0.2",
|
|
"should": "^11.1.0"
|
|
}
|
|
} |