forked from primus/primus
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
99 lines (99 loc) · 2.39 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
{
"name": "primus",
"version": "5.1.0",
"description": "Primus is a simple abstraction around real-time frameworks. It allows you to easily switch between different frameworks without any code changes.",
"main": "index.js",
"scripts": {
"integration": "npm run build && mocha $(find test -name '*.integration.js')",
"build": "mkdir -p dist && browserify primus.js -s Primus -p deumdify | derequire > dist/primus.js",
"prepublish": "npm run build",
"test": "npm run build && mocha $(find test -name '*.test.js')",
"update": "find transformers -name update.sh -exec bash {} \\;"
},
"homepage": "http://primus.io",
"repository": {
"type": "git",
"url": "git://github.com/primus/primus.git"
},
"keywords": [
"abstraction",
"browserchannel",
"engine.io",
"framework",
"comet",
"streaming",
"pubsub",
"pub",
"sub",
"ajax",
"xhr",
"polling",
"http",
"faye",
"io",
"primus",
"prumus",
"real-time",
"realtime",
"socket",
"socket.io",
"sockets",
"sockjs",
"spark",
"transformer",
"transformers",
"websocket",
"websockets",
"ws",
"uws"
],
"author": "Arnout Kazemier",
"license": "MIT",
"dependencies": {
"access-control": "1.0.x",
"asyncemit": "3.0.x",
"create-server": "1.0.x",
"demolish": "1.0.x",
"diagnostics": "1.0.x",
"emits": "3.0.x",
"eventemitter3": "1.2.x",
"forwarded-for": "1.0.x",
"fusing": "1.0.x",
"load": "1.0.x",
"querystringify": "0.0.x",
"recovery": "0.2.x",
"setheader": "0.0.x",
"tick-tock": "1.0.x",
"ultron": "1.0.x",
"url-parse": "1.1.x",
"yeast": "0.1.x"
},
"devDependencies": {
"binary-pack": "1.0.x",
"browserchannel": "2.0.x",
"browserify": "13.0.x",
"chai": "3.5.x",
"condenseify": "1.1.x",
"derequire": "2.0.x",
"deumdify": "1.2.x",
"ejson": "2.1.x",
"engine.io": "1.6.x",
"engine.io-client": "1.6.x",
"faye-websocket": "0.11.x",
"lws": "0.6.x",
"mocha": "2.4.x",
"pre-commit": "1.1.x",
"primus-socket.io-client": "2.0.x",
"pumpify": "1.3.x",
"request": "2.71.x",
"rocambole": "0.7.x",
"rocambole-node-remove": "1.0.x",
"socket.io": "0.9.x",
"sockjs": "0.3.x",
"sockjs-client": "1.0.x",
"through2": "2.0.x",
"uws": "0.2.x",
"ws": "1.1.x"
},
"pre-commit": "test, integration"
}