mirror of
https://github.com/bnmgh1/NodeSandbox.git
synced 2025-04-16 07:57:04 +08:00
28 lines
548 B
JSON
28 lines
548 B
JSON
{
|
|
"name": "nodejs-websocket",
|
|
"version": "1.7.2",
|
|
"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": ">=4"
|
|
},
|
|
"scripts": {
|
|
"test": "mocha -R spec -b"
|
|
},
|
|
"devDependencies": {
|
|
"mocha": "^5.2.0",
|
|
"should": "^13.2.3"
|
|
}
|
|
}
|