-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.11 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
45
46
47
48
49
{
"name": "jschan-ws",
"description": "WebSocket transport for jschan",
"keywords": [
"docker",
"libchan",
"streams",
"stream",
"channel",
"channels"
],
"version": "0.0.2",
"license": "MIT",
"contributors": [
"Matteo Collina <[email protected]> (http://matteocollina.com)",
"Peter Elger <[email protected]> (http://peterelger.com/)",
"Adrian Rossouw <[email protected]> (http://daemon.co.za)"
],
"engines": {
"node": "v0.10.x"
},
"dependencies": {
"inherits": "^2.0.1",
"jschan": "^0.3.0",
"websocket-stream": "^1.1.0",
"ws": "^0.4.32"
},
"scripts": {
"test": "mocha --recursive test 2>&1",
"jshint": "jshint --exclude-path .gitignore .",
"test-browser": "zuul --local 8080 -- test/websocket_client.js"
},
"pre-commit": [
"jshint",
"test"
],
"repository": {
"type": "git",
"url": "https://github.com/GraftJS/jschan-ws.git"
},
"devDependencies": {
"concat-stream": "^1.4.6",
"jshint": "^2.5.2",
"mocha": "^1.20.1",
"must": "^0.12.0",
"pre-commit": "0.0.9",
"zuul": "^1.10.1"
}
}