mirror of
https://github.com/socketio/socket.io.git
synced 2026-04-30 03:00:39 -04:00
See also: https://github.com/socketio/engine.io-protocol#difference-between-v3-and-v4 Release: https://github.com/socketio/engine.io-parser/releases/tag/4.0.0 Diff: https://github.com/socketio/engine.io-parser/compare/2.2.0...4.0.0
84 lines
2.4 KiB
JSON
84 lines
2.4 KiB
JSON
{
|
|
"name": "engine.io-client",
|
|
"description": "Client for the realtime Engine",
|
|
"license": "MIT",
|
|
"version": "4.0.0-alpha.1",
|
|
"main": "lib/index.js",
|
|
"homepage": "https://github.com/socketio/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"
|
|
},
|
|
{
|
|
"name": "Mark Mokryn",
|
|
"email": "mokesmokes@gmail.com"
|
|
}
|
|
],
|
|
"dependencies": {
|
|
"base64-arraybuffer": "0.1.4",
|
|
"component-emitter": "~1.3.0",
|
|
"debug": "~4.1.0",
|
|
"engine.io-parser": "~4.0.0",
|
|
"has-cors": "1.1.0",
|
|
"parseqs": "0.0.6",
|
|
"parseuri": "0.0.5",
|
|
"ws": "~7.2.1",
|
|
"xmlhttprequest-ssl": "~1.5.4",
|
|
"yeast": "0.1.2"
|
|
},
|
|
"devDependencies": {
|
|
"@babel/core": "^7.7.7",
|
|
"@babel/plugin-transform-object-assign": "~7.8.3",
|
|
"@babel/preset-env": "^7.7.7",
|
|
"babel-eslint": "^10.0.3",
|
|
"babel-loader": "^8.0.6",
|
|
"blob": "^0.0.4",
|
|
"engine.io": "github:socketio/engine.io#master",
|
|
"eslint": "^6.8.0",
|
|
"eslint-config-prettier": "^6.9.0",
|
|
"expect.js": "^0.3.1",
|
|
"express": "4.15.2",
|
|
"mocha": "^3.2.0",
|
|
"prettier": "^1.19.1",
|
|
"socket.io-browsers": "~1.0.4",
|
|
"webpack": "^4.41.5",
|
|
"webpack-cli": "^3.3.10",
|
|
"zuul": "3.11.1",
|
|
"zuul-builder-webpack": "^1.2.0",
|
|
"zuul-ngrok": "4.0.0"
|
|
},
|
|
"scripts": {
|
|
"test": "npm run lint && npm run format:check && if test \"$BROWSERS\" = \"1\" ; then npm run test:browser; else npm run test:node; fi",
|
|
"test:node": "mocha --reporter dot --require test/support/server.js test/index.js",
|
|
"test:browser": "zuul test/index.js",
|
|
"build": "webpack --config ./support/webpack.config.js",
|
|
"format:check": "prettier --check 'lib/**/*.js' 'test/**/*.js'",
|
|
"format:fix": "prettier --write 'lib/**/*.js' 'test/**/*.js'",
|
|
"lint": "eslint lib/**/*.js test/**/*.js"
|
|
},
|
|
"browser": {
|
|
"ws": false,
|
|
"xmlhttprequest-ssl": "./lib/xmlhttprequest.js",
|
|
"./lib/transports/websocket-constructor.js": "./lib/transports/websocket-constructor.browser.js",
|
|
"./lib/globalThis.js": "./lib/globalThis.browser.js"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/socketio/engine.io-client.git"
|
|
},
|
|
"files": [
|
|
"index.js",
|
|
"lib/",
|
|
"dist/"
|
|
]
|
|
}
|