Files
socket.io/package.json
Roman Shtylman 6514cd9732 require 'emitter' versus 'emitter-component'
Use the github style dependency to just grab the emitter package from
github. Use the long form because short form is all sorts of broken with
npm.
2013-03-13 12:00:10 -04:00

39 lines
1.4 KiB
JSON

{
"name": "engine.io-client",
"description": "Client for the realtime Engine",
"version": "0.4.3",
"homepage": "https://github.com/LearnBoost/engine.io-client",
"contributors": [
{ "name": "Guillermo Rauch", "email": "rauchg@gmail.com" },
{ "name": "Vladimir Dronnikov", "email": "dronnikov@gmail.com" },
{ "name": "Christoph Dorn", "web": "https://github.com/cadorn" }
],
"dependencies": {
"ws": "0.4.25",
"xmlhttprequest": "1.5.0",
"emitter": "git://github.com/component/emitter#7063b6",
"engine.io-parser": "0.2.0",
"debug": "0.7.2"
},
"devDependencies": {
"mocha": "*",
"serve": "*",
"expect.js": "*"
},
"component": {
"scripts": {
"engine.io/index.js": "lib/index.js",
"engine.io/socket.js": "lib/socket.js",
"engine.io/transport.js": "lib/transport.js",
"engine.io/emitter.js": "lib/emitter.js",
"engine.io/util.js": "lib/util.js",
"engine.io/transports/index.js": "lib/transports/index.js",
"engine.io/transports/polling.js": "lib/transports/polling.js",
"engine.io/transports/polling-xhr.js": "lib/transports/polling-xhr.js",
"engine.io/transports/polling-jsonp.js": "lib/transports/polling-jsonp.js",
"engine.io/transports/websocket.js": "lib/transports/websocket.js",
"engine.io/transports/flashsocket.js": "lib/transports/flashsocket.js"
}
}
}