-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
44 lines (44 loc) · 1.2 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
{
"name": "messenger-ws",
"version": "3.0.1",
"description": "Simple messenger abstraction that sends and receives messages via a WebSocket connection",
"main": "index.js",
"stability": "unstable",
"scripts": {
"test": "node test/node.js && npm run browser-test",
"browser-test": "browserify test/all.js | broth ./node_modules/travis-multirunner/start.sh | tap-spec",
"gendocs": "gendocs > README.md"
},
"repository": {
"type": "git",
"url": "https://github.com/DamonOehlman/messenger-ws.git"
},
"keywords": [
"messenger",
"websocket"
],
"author": "Damon Oehlman <damon.oehlman@gmail.com>",
"license": "ISC",
"bugs": {
"url": "https://github.com/DamonOehlman/messenger-ws/issues"
},
"homepage": "https://github.com/DamonOehlman/messenger-ws",
"dependencies": {
"cog": "^1.0.0",
"pull-ws": "^2.0.0",
"ws": "^1.0.0",
"wsurl": "^1.0.0"
},
"devDependencies": {
"broth": "^2.2.0",
"browserify": "^9.0.3",
"bufferutil": "^1.2.1",
"mapleTree": "^0.5.1",
"pull-pushable": "^1.1.4",
"pull-stream": "^2.26.0",
"tap-spec": "^3.0.0",
"tape": "^4.0.0",
"travis-multirunner": "^3.0.0",
"utf-8-validate": "^1.2.1"
}
}