forked from primus/primus
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
105 lines (105 loc) · 2.68 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
100
101
102
103
104
105
{
"name": "primus",
"version": "8.0.7",
"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": {
"build": "mkdir -p dist && browserify primus.js -s Primus -p deumdify | derequire > dist/primus.js",
"update": "find transformers -name update.sh -exec bash {} \\;",
"integration": "npm run build && mocha test/*.integration.js --exit",
"test": "npm run build && mocha test/*.test.js",
"prepublishOnly": "npm run build"
},
"homepage": "https://github.com/primus/primus#readme",
"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.0",
"asyncemit": "~3.0.1",
"create-server": "~1.0.1",
"diagnostics": "~2.0.0",
"eventemitter3": "~5.0.0",
"forwarded-for": "~1.1.0",
"fusing": "~1.0.0",
"nanoid": "~3.3.3",
"setheader": "~1.0.2",
"ultron": "~1.1.0"
},
"devDependencies": {
"@babel/core": "~7.20.5",
"@babel/plugin-transform-object-assign": "~7.18.6",
"@babel/preset-env": "~7.20.2",
"@rollup/plugin-babel": "~6.0.3",
"@rollup/plugin-commonjs": "~24.0.0",
"@rollup/plugin-node-resolve": "~15.0.1",
"binary-pack": "~1.0.2",
"browserchannel": "~2.1.0",
"browserify": "~17.0.0",
"chai": "~4.3.4",
"condenseify": "~1.1.1",
"demolish": "~1.0.2",
"derequire": "~2.1.1",
"deumdify": "~1.2.3",
"ejson": "~2.2.0",
"emits": "~3.0.0",
"engine.io": "~6.2.0",
"engine.io-client": "~6.2.1",
"faye-websocket": "~0.11.0",
"inherits": "~2.0.3",
"mocha": "~10.2.0",
"pre-commit": "~1.2.0",
"primus-msgpack": "~1.0.2",
"pumpify": "~2.0.0",
"querystringify": "~2.2.0",
"recovery": "~0.2.6",
"request": "~2.88.0",
"rocambole": "~0.7.0",
"rocambole-node-remove": "~3.0.0",
"rollup": "~3.7.5",
"sockjs": "~0.3.18",
"sockjs-client": "~1.6.0",
"through2": "~4.0.2",
"tick-tock": "~1.0.0",
"url-parse": "~1.5.1",
"uws": "10.148.1",
"ws": "~8.11.0",
"yeast": "~0.1.2"
},
"pre-commit": "test, integration"
}