-
Notifications
You must be signed in to change notification settings - Fork 9
/
package.json
55 lines (55 loc) · 1.25 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
50
51
52
53
54
55
{
"name": "jschan",
"description": "node.js port of docker/libchan",
"keywords": [
"docker",
"libchan",
"streams",
"stream",
"channel",
"channels"
],
"version": "0.3.0",
"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": {
"async": "^0.9.0",
"inherits": "^2.0.1",
"msgpack5": "^1.2.0",
"readable-stream": "^1.0.27-1",
"reduplexer": "1.0.0",
"through2": "^0.6.1"
},
"main": "lib/jschan.js",
"scripts": {
"test": "_mocha --recursive test",
"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.git"
},
"browser": {
"./lib/jschan.js": "./lib/jschan_browser.js"
},
"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"
}
}