mirror of
https://github.com/socketio/socket.io.git
synced 2026-04-30 03:00:39 -04:00
From the [component/component](https://github.com/component/component) [spec](https://github.com/component/component/wiki/Spec): > It is recommended that you use "index.js" for the main component file, however if you use another filename, you **MUST** define a "main" field for that. A component **MUST** have only one "main" file specified, and it **MUST** still be listed in the "scripts" array.
24 lines
520 B
JSON
24 lines
520 B
JSON
{
|
|
"name": "engine.io",
|
|
"version": "0.4.0",
|
|
"dependencies": {
|
|
"component/emitter": "0.0.6",
|
|
"visionmedia/debug": "*"
|
|
},
|
|
"main": "lib/index.js",
|
|
"scripts": [
|
|
"lib/index.js",
|
|
"lib/parser.js",
|
|
"lib/socket.js",
|
|
"lib/transport.js",
|
|
"lib/emitter.js",
|
|
"lib/util.js",
|
|
"lib/transports/index.js",
|
|
"lib/transports/polling.js",
|
|
"lib/transports/polling-xhr.js",
|
|
"lib/transports/polling-jsonp.js",
|
|
"lib/transports/websocket.js",
|
|
"lib/transports/flashsocket.js"
|
|
]
|
|
}
|