{"_attachments":{},"_id":"socket.io-parser","_rev":"6975-61f15d5d830fd08f52a4b96b","description":"socket.io protocol parser","dist-tags":{"beta":"4.0.1-rc3","latest":"4.2.6","v2-latest":"3.3.5","v4.0-latest":"4.0.5"},"license":"MIT","maintainers":[{"name":"rauchg","email":"rauchg@gmail.com"},{"name":"darrachequesne","email":"damien.arrachequesne@gmail.com"}],"name":"socket.io-parser","readme":"\n# socket.io-parser\n\n[![Build Status](https://github.com/socketio/socket.io-parser/workflows/CI/badge.svg)](https://github.com/socketio/socket.io-parser/actions)\n[![NPM version](https://badge.fury.io/js/socket.io-parser.svg)](http://badge.fury.io/js/socket.io-parser)\n\nA socket.io encoder and decoder written in JavaScript complying with version `5`\nof [socket.io-protocol](https://github.com/socketio/socket.io-protocol).\nUsed by [socket.io](https://github.com/automattic/socket.io) and\n[socket.io-client](https://github.com/automattic/socket.io-client).\n\nCompatibility table:\n\n| Parser version | Socket.IO server version | Protocol revision |\n|----------------| ------------------------ | ----------------- |\n| 3.x            | 1.x / 2.x                | 4                 |\n| 4.x            | 3.x                      | 5                 |\n\n\n## Parser API\n\n  socket.io-parser is the reference implementation of socket.io-protocol. Read\n  the full API here:\n  [socket.io-protocol](https://github.com/learnboost/socket.io-protocol).\n\n## Example Usage\n\n### Encoding and decoding a packet\n\n```js\nvar parser = require('socket.io-parser');\nvar encoder = new parser.Encoder();\nvar packet = {\n  type: parser.EVENT,\n  data: 'test-packet',\n  id: 13\n};\nencoder.encode(packet, function(encodedPackets) {\n  var decoder = new parser.Decoder();\n  decoder.on('decoded', function(decodedPacket) {\n    // decodedPacket.type == parser.EVENT\n    // decodedPacket.data == 'test-packet'\n    // decodedPacket.id == 13\n  });\n\n  for (var i = 0; i < encodedPackets.length; i++) {\n    decoder.add(encodedPackets[i]);\n  }\n});\n```\n\n### Encoding and decoding a packet with binary data\n\n```js\nvar parser = require('socket.io-parser');\nvar encoder = new parser.Encoder();\nvar packet = {\n  type: parser.BINARY_EVENT,\n  data: {i: new Buffer(1234), j: new Blob([new ArrayBuffer(2)])},\n  id: 15\n};\nencoder.encode(packet, function(encodedPackets) {\n  var decoder = new parser.Decoder();\n  decoder.on('decoded', function(decodedPacket) {\n    // decodedPacket.type == parser.BINARY_EVENT\n    // Buffer.isBuffer(decodedPacket.data.i) == true\n    // Buffer.isBuffer(decodedPacket.data.j) == true\n    // decodedPacket.id == 15\n  });\n\n  for (var i = 0; i < encodedPackets.length; i++) {\n    decoder.add(encodedPackets[i]);\n  }\n});\n```\nSee the test suite for more examples of how socket.io-parser is used.\n\n\n## License\n\nMIT\n","time":{"created":"2022-01-26T14:40:29.942Z","modified":"2026-03-17T15:09:01.854Z","4.1.1":"2021-10-14T11:53:35.175Z","4.1.0":"2021-10-11T20:38:57.269Z","4.0.4":"2021-01-15T00:46:06.625Z","3.3.2":"2021-01-09T13:52:34.839Z","4.0.3":"2021-01-05T10:27:00.317Z","4.0.2":"2020-11-25T10:01:10.532Z","4.0.1":"2020-11-05T15:08:23.947Z","4.0.1-rc3":"2020-10-25T23:18:15.196Z","4.0.1-rc2":"2020-10-15T08:25:39.091Z","4.0.1-rc1":"2020-10-12T13:23:19.654Z","3.3.1":"2020-09-30T00:40:28.476Z","4.0.0":"2020-09-28T12:56:12.020Z","3.4.1":"2020-05-13T06:00:12.181Z","3.4.0":"2019-09-20T09:02:07.232Z","3.3.0":"2018-11-07T22:59:20.663Z","3.2.0":"2018-02-28T21:09:22.718Z","3.1.3":"2018-02-25T08:20:29.707Z","3.1.2":"2017-04-27T21:46:22.018Z","3.1.1":"2017-04-24T22:22:41.669Z","3.1.0":"2017-04-24T21:34:13.969Z","3.0.0":"2017-04-03T21:52:58.208Z","2.3.2":"2016-12-30T21:43:36.289Z","2.3.1":"2016-10-24T00:32:07.563Z","2.3.0":"2016-10-20T23:34:16.871Z","2.2.6":"2015-11-25T18:13:06.246Z","2.2.5":"2015-11-21T18:45:42.106Z","2.2.4":"2015-03-03T18:34:26.714Z","2.2.3":"2015-02-04T00:31:33.757Z","2.2.2":"2014-09-04T08:13:20.797Z","2.2.1":"2014-06-20T23:56:14.435Z","2.2.0":"2014-05-31T04:10:18.114Z","2.1.5":"2014-05-24T18:36:27.565Z","2.1.4":"2014-05-17T20:50:19.496Z","2.1.3":"2014-04-28T01:45:41.927Z","2.1.2":"2014-03-06T23:38:16.573Z","2.1.1":"2014-03-05T07:19:08.679Z","2.1.0":"2014-03-01T16:32:31.228Z","2.0.0":"2014-02-20T00:51:22.714Z","1.1.2":"2014-02-11T18:14:32.802Z","1.1.1":"2014-02-11T00:06:23.883Z","1.1.0":"2013-12-25T18:59:54.509Z","1.0.2":"2012-12-18T19:31:47.192Z","1.0.1":"2012-12-10T00:05:00.215Z","4.1.2":"2022-02-17T06:38:19.438Z","4.2.0":"2022-04-17T22:27:15.609Z","4.2.1":"2022-06-27T13:43:26.446Z","4.0.5":"2022-06-27T13:54:42.490Z","3.4.2":"2022-11-09T10:19:07.192Z","3.3.3":"2022-11-09T10:22:46.102Z","4.2.2":"2023-01-19T09:50:11.518Z","4.2.3":"2023-05-22T06:24:48.950Z","3.4.3":"2023-05-22T08:01:18.682Z","4.2.4":"2023-05-31T08:57:23.862Z","3.3.4":"2024-07-22T09:09:30.910Z","4.2.5":"2025-12-23T11:29:16.213Z","4.2.6":"2026-03-17T09:56:18.668Z","3.4.4":"2026-03-17T14:55:27.070Z","3.3.5":"2026-03-17T15:07:13.002Z"},"versions":{"4.1.1":{"name":"socket.io-parser","version":"4.1.1","description":"socket.io protocol parser","repository":{"type":"git","url":"git+https://github.com/socketio/socket.io-parser.git"},"main":"./build/cjs/index.js","module":"./build/esm/index.js","types":"./build/esm/index.d.ts","exports":{"import":{"node":"./build/esm-debug/index.js","default":"./build/esm/index.js"},"require":"./build/cjs/index.js"},"dependencies":{"@socket.io/component-emitter":"~3.0.0","debug":"~4.3.1"},"devDependencies":{"@babel/core":"~7.9.6","@babel/preset-env":"~7.9.6","@types/debug":"^4.1.5","@types/node":"^14.11.1","babelify":"~10.0.0","benchmark":"2.1.2","expect.js":"0.3.1","mocha":"3.2.0","prettier":"^2.1.2","rimraf":"^3.0.2","socket.io-browsers":"^1.0.0","typescript":"^4.0.3","zuul":"3.11.1","zuul-ngrok":"4.0.0"},"scripts":{"compile":"rimraf ./build && tsc && tsc -p tsconfig.esm.json && ./postcompile.sh","test":"npm run format:check && npm run compile && if test \"$BROWSERS\" = \"1\" ; then npm run test:browser; else npm run test:node; fi","test:node":"mocha --reporter dot --bail test/index.js","test:browser":"zuul test/index.js --no-coverage","format:fix":"prettier --write --parser typescript 'lib/**/*.ts' 'test/**/*.js'","format:check":"prettier --check --parser typescript 'lib/**/*.ts' 'test/**/*.js'","prepack":"npm run compile"},"license":"MIT","engines":{"node":">=10.0.0"},"gitHead":"ea86f413ed73d4dd470186a8a67c7a28e39039dc","bugs":{"url":"https://github.com/socketio/socket.io-parser/issues"},"homepage":"https://github.com/socketio/socket.io-parser#readme","_id":"socket.io-parser@4.1.1","_nodeVersion":"12.19.0","_npmVersion":"6.14.8","dist":{"shasum":"0ad53d980781cab1eabe320417d8480c0133e62d","size":8115,"noattachment":false,"tarball":"https://registry.npmmirror.com/socket.io-parser/-/socket.io-parser-4.1.1.tgz","integrity":"sha512-USQVLSkDWE5nbcY760ExdKaJxCE65kcsG/8k5FDGZVVxpD1pA7hABYXYkCUvxUuYYh/+uQw0N/fvBzfT8o07KA=="},"_npmUser":{"name":"darrachequesne","email":"damien.arrachequesne@gmail.com"},"directories":{},"maintainers":[{"name":"darrachequesne","email":"damien.arrachequesne@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/socket.io-parser_4.1.1_1634212415019_0.05018357359945469"},"_hasShrinkwrap":false,"publish_time":1634212415175,"_cnpm_publish_time":1634212415175,"_cnpmcore_publish_time":"2021-12-13T11:16:56.374Z"},"4.1.0":{"name":"socket.io-parser","version":"4.1.0","description":"socket.io protocol parser","repository":{"type":"git","url":"git+https://github.com/socketio/socket.io-parser.git"},"main":"./build/cjs/index.js","module":"./build/esm/index.js","types":"./build/esm/index.d.ts","exports":{"import":{"node":"./build/esm-debug/index.js","default":"./build/esm/index.js"},"require":"./build/cjs/index.js"},"dependencies":{"@socket.io/component-emitter":"~2.0.0","debug":"~4.3.1"},"devDependencies":{"@babel/core":"~7.9.6","@babel/preset-env":"~7.9.6","@types/debug":"^4.1.5","@types/node":"^14.11.1","babelify":"~10.0.0","benchmark":"2.1.2","expect.js":"0.3.1","mocha":"3.2.0","prettier":"^2.1.2","rimraf":"^3.0.2","socket.io-browsers":"^1.0.0","typescript":"^4.0.3","zuul":"3.11.1","zuul-ngrok":"4.0.0"},"scripts":{"compile":"rimraf ./build && tsc && tsc -p tsconfig.esm.json && ./postcompile.sh","test":"npm run format:check && npm run compile && if test \"$BROWSERS\" = \"1\" ; then npm run test:browser; else npm run test:node; fi","test:node":"mocha --reporter dot --bail test/index.js","test:browser":"zuul test/index.js --no-coverage","format:fix":"prettier --write --parser typescript 'lib/**/*.ts' 'test/**/*.js'","format:check":"prettier --check --parser typescript 'lib/**/*.ts' 'test/**/*.js'","prepack":"npm run compile"},"license":"MIT","engines":{"node":">=10.0.0"},"gitHead":"5ad3e5cc4b16326e3def2b834bd90c0424bfdd83","bugs":{"url":"https://github.com/socketio/socket.io-parser/issues"},"homepage":"https://github.com/socketio/socket.io-parser#readme","_id":"socket.io-parser@4.1.0","_nodeVersion":"12.19.0","_npmVersion":"6.14.8","dist":{"shasum":"c0debc10b65d4a3fbe7bad6092ca78dc88f22eb1","size":8056,"noattachment":false,"tarball":"https://registry.npmmirror.com/socket.io-parser/-/socket.io-parser-4.1.0.tgz","integrity":"sha512-3iMr+HAKwvQPIoZ5rwgnqowUCiGDziM1KqI1pJJgvSRo+nES4DeTQ3UtR8cMOaWepaUkoB+at9haEiN0FqQNlA=="},"_npmUser":{"name":"darrachequesne","email":"damien.arrachequesne@gmail.com"},"directories":{},"maintainers":[{"name":"darrachequesne","email":"damien.arrachequesne@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/socket.io-parser_4.1.0_1633984737095_0.7401369017829"},"_hasShrinkwrap":false,"publish_time":1633984737269,"_cnpm_publish_time":1633984737269,"_cnpmcore_publish_time":"2021-12-13T11:16:56.664Z"},"4.0.4":{"name":"socket.io-parser","version":"4.0.4","description":"socket.io protocol parser","repository":{"type":"git","url":"git+https://github.com/socketio/socket.io-parser.git"},"main":"./dist/index.js","types":"./dist/index.d.ts","dependencies":{"@types/component-emitter":"^1.2.10","component-emitter":"~1.3.0","debug":"~4.3.1"},"devDependencies":{"@babel/core":"~7.9.6","@babel/preset-env":"~7.9.6","@types/debug":"^4.1.5","@types/node":"^14.11.1","babelify":"~10.0.0","benchmark":"2.1.2","expect.js":"0.3.1","mocha":"3.2.0","prettier":"^2.1.2","rimraf":"^3.0.2","socket.io-browsers":"^1.0.0","typescript":"^4.0.3","zuul":"3.11.1","zuul-ngrok":"4.0.0"},"scripts":{"compile":"rimraf ./dist && tsc","test":"npm run format:check && npm run compile && if test \"$BROWSERS\" = \"1\" ; then npm run test:browser; else npm run test:node; fi","test:node":"mocha --reporter dot --bail test/index.js","test:browser":"zuul test/index.js --no-coverage","format:fix":"prettier --write --parser typescript 'lib/**/*.ts' 'test/**/*.js'","format:check":"prettier --check --parser typescript 'lib/**/*.ts' 'test/**/*.js'","prepack":"npm run compile"},"license":"MIT","engines":{"node":">=10.0.0"},"gitHead":"af1b23ca85fb64a0d7a050abd0362c5f632ce429","bugs":{"url":"https://github.com/socketio/socket.io-parser/issues"},"homepage":"https://github.com/socketio/socket.io-parser#readme","_id":"socket.io-parser@4.0.4","_nodeVersion":"12.19.0","_npmVersion":"6.14.8","dist":{"shasum":"9ea21b0d61508d18196ef04a2c6b9ab630f4c2b0","size":6794,"noattachment":false,"tarball":"https://registry.npmmirror.com/socket.io-parser/-/socket.io-parser-4.0.4.tgz","integrity":"sha512-t+b0SS+IxG7Rxzda2EVvyBZbvFPBCjJoyHuE0P//7OAsN23GItzDRdWa6ALxZI/8R5ygK7jAR6t028/z+7295g=="},"_npmUser":{"name":"darrachequesne","email":"damien.arrachequesne@gmail.com"},"directories":{},"maintainers":[{"name":"darrachequesne","email":"damien.arrachequesne@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/socket.io-parser_4.0.4_1610671566472_0.5009076872005831"},"_hasShrinkwrap":false,"publish_time":1610671566625,"_cnpm_publish_time":1610671566625,"_cnpmcore_publish_time":"2021-12-13T11:16:56.976Z"},"3.3.2":{"name":"socket.io-parser","version":"3.3.2","description":"socket.io protocol parser","repository":{"type":"git","url":"git+https://github.com/Automattic/socket.io-parser.git"},"dependencies":{"component-emitter":"~1.3.0","debug":"~3.1.0","isarray":"2.0.1"},"devDependencies":{"benchmark":"2.1.2","expect.js":"0.3.1","mocha":"3.2.0","socket.io-browsers":"^1.0.0","zuul":"3.11.1","zuul-ngrok":"4.0.0"},"scripts":{"test":"make test"},"license":"MIT","readmeFilename":"Readme.md","gitHead":"3b0a3925fd9f765228e5d06e4a0cc90d81a60d0e","bugs":{"url":"https://github.com/Automattic/socket.io-parser/issues"},"homepage":"https://github.com/Automattic/socket.io-parser#readme","_id":"socket.io-parser@3.3.2","_nodeVersion":"12.19.0","_npmVersion":"6.14.8","dist":{"shasum":"ef872009d0adcf704f2fbe830191a14752ad50b6","size":5594,"noattachment":false,"tarball":"https://registry.npmmirror.com/socket.io-parser/-/socket.io-parser-3.3.2.tgz","integrity":"sha512-FJvDBuOALxdCI9qwRrO/Rfp9yfndRtc1jSgVgV8FDraihmSP/MLGD5PEuJrNfjALvcQ+vMDM/33AWOYP/JSjDg=="},"_npmUser":{"name":"darrachequesne","email":"damien.arrachequesne@gmail.com"},"directories":{},"maintainers":[{"name":"darrachequesne","email":"damien.arrachequesne@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/socket.io-parser_3.3.2_1610200354633_0.5507446271981351"},"_hasShrinkwrap":false,"publish_time":1610200354839,"_cnpm_publish_time":1610200354839,"_cnpmcore_publish_time":"2021-12-13T11:16:57.266Z"},"4.0.3":{"name":"socket.io-parser","version":"4.0.3","description":"socket.io protocol parser","repository":{"type":"git","url":"git+https://github.com/socketio/socket.io-parser.git"},"main":"./dist/index.js","types":"./dist/index.d.ts","dependencies":{"@types/component-emitter":"^1.2.10","component-emitter":"~1.3.0","debug":"~4.3.1"},"devDependencies":{"@babel/core":"~7.9.6","@babel/preset-env":"~7.9.6","@types/debug":"^4.1.5","@types/node":"^14.11.1","babelify":"~10.0.0","benchmark":"2.1.2","expect.js":"0.3.1","mocha":"3.2.0","prettier":"^2.1.2","rimraf":"^3.0.2","socket.io-browsers":"^1.0.0","typescript":"^4.0.3","zuul":"3.11.1","zuul-ngrok":"4.0.0"},"scripts":{"compile":"rimraf ./dist && tsc","test":"npm run format:check && npm run compile && if test \"$BROWSERS\" = \"1\" ; then npm run test:browser; else npm run test:node; fi","test:node":"mocha --reporter dot --bail test/index.js","test:browser":"zuul test/index.js --no-coverage","format:fix":"prettier --write --parser typescript 'lib/**/*.ts' 'test/**/*.js'","format:check":"prettier --check --parser typescript 'lib/**/*.ts' 'test/**/*.js'","prepack":"npm run compile"},"license":"MIT","engines":{"node":">=10.0.0"},"gitHead":"444520d6cdc78b1abbe3bd684dc3723b5e22d196","bugs":{"url":"https://github.com/socketio/socket.io-parser/issues"},"homepage":"https://github.com/socketio/socket.io-parser#readme","_id":"socket.io-parser@4.0.3","_nodeVersion":"12.19.0","_npmVersion":"6.14.8","dist":{"shasum":"2c494f2de1e7c1b40a14ba1512227e9798d8b10e","size":6728,"noattachment":false,"tarball":"https://registry.npmmirror.com/socket.io-parser/-/socket.io-parser-4.0.3.tgz","integrity":"sha512-m4ybFiP4UYVORRt7jcdqf8UWx+ywVdAqqsJyruXxAdD3Sv6MDemijWij34mOWdMJ55bEdIb9jACBhxUgNK6sxw=="},"_npmUser":{"name":"darrachequesne","email":"damien.arrachequesne@gmail.com"},"directories":{},"maintainers":[{"name":"darrachequesne","email":"damien.arrachequesne@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/socket.io-parser_4.0.3_1609842420195_0.7275875797816962"},"_hasShrinkwrap":false,"publish_time":1609842420317,"_cnpm_publish_time":1609842420317,"_cnpmcore_publish_time":"2021-12-13T11:16:57.647Z"},"4.0.2":{"name":"socket.io-parser","version":"4.0.2","description":"socket.io protocol parser","repository":{"type":"git","url":"git+https://github.com/socketio/socket.io-parser.git"},"main":"./dist/index.js","types":"./dist/index.d.ts","dependencies":{"component-emitter":"~1.3.0","@types/component-emitter":"^1.2.10","debug":"~4.1.0"},"devDependencies":{"@babel/core":"~7.9.6","@babel/preset-env":"~7.9.6","@types/debug":"^4.1.5","@types/node":"^14.11.1","babelify":"~10.0.0","benchmark":"2.1.2","expect.js":"0.3.1","mocha":"3.2.0","prettier":"^2.1.2","rimraf":"^3.0.2","socket.io-browsers":"^1.0.0","typescript":"^4.0.3","zuul":"3.11.1","zuul-ngrok":"4.0.0"},"scripts":{"compile":"rimraf ./dist && tsc","test":"npm run format:check && npm run compile && if test \"$BROWSERS\" = \"1\" ; then npm run test:browser; else npm run test:node; fi","test:node":"mocha --reporter dot --bail test/index.js","test:browser":"zuul test/index.js --no-coverage","format:fix":"prettier --write --parser typescript 'lib/**/*.ts' 'test/**/*.js'","format:check":"prettier --check --parser typescript 'lib/**/*.ts' 'test/**/*.js'","prepack":"npm run compile"},"license":"MIT","engines":{"node":">=10.0.0"},"gitHead":"f2098b031d5191f10ec8b66e3c659b702302d577","bugs":{"url":"https://github.com/socketio/socket.io-parser/issues"},"homepage":"https://github.com/socketio/socket.io-parser#readme","_id":"socket.io-parser@4.0.2","_nodeVersion":"12.19.0","_npmVersion":"6.14.8","dist":{"shasum":"3d021a9c86671bb079e7c6c806db6a1d9b1bc780","size":6721,"noattachment":false,"tarball":"https://registry.npmmirror.com/socket.io-parser/-/socket.io-parser-4.0.2.tgz","integrity":"sha512-Bs3IYHDivwf+bAAuW/8xwJgIiBNtlvnjYRc4PbXgniLmcP1BrakBoq/QhO24rgtgW7VZ7uAaswRGxutUnlAK7g=="},"_npmUser":{"name":"darrachequesne","email":"damien.arrachequesne@gmail.com"},"directories":{},"maintainers":[{"name":"darrachequesne","email":"damien.arrachequesne@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/socket.io-parser_4.0.2_1606298470431_0.31318221322262163"},"_hasShrinkwrap":false,"publish_time":1606298470532,"_cnpm_publish_time":1606298470532,"_cnpmcore_publish_time":"2021-12-13T11:16:58.090Z"},"4.0.1":{"name":"socket.io-parser","version":"4.0.1","description":"socket.io protocol parser","repository":{"type":"git","url":"git+https://github.com/socketio/socket.io-parser.git"},"main":"./dist/index.js","types":"./dist/index.d.ts","dependencies":{"component-emitter":"~1.3.0","debug":"~4.1.0"},"devDependencies":{"@babel/core":"~7.9.6","@babel/preset-env":"~7.9.6","@types/component-emitter":"^1.2.10","@types/debug":"^4.1.5","@types/node":"^14.11.1","babelify":"~10.0.0","benchmark":"2.1.2","expect.js":"0.3.1","mocha":"3.2.0","prettier":"^2.1.2","socket.io-browsers":"^1.0.0","typescript":"^4.0.3","zuul":"3.11.1","zuul-ngrok":"4.0.0"},"scripts":{"test":"npm run format:check && tsc && if test \"$BROWSERS\" = \"1\" ; then npm run test:browser; else npm run test:node; fi","test:node":"mocha --reporter dot --bail test/index.js","test:browser":"zuul test/index.js --no-coverage","format:fix":"prettier --write --parser typescript 'lib/**/*.ts' 'test/**/*.js'","format:check":"prettier --check --parser typescript 'lib/**/*.ts' 'test/**/*.js'","prepack":"tsc"},"license":"MIT","engines":{"node":">=10.0.0"},"gitHead":"e33932365443b8203198ad7cc2af5f856a63600e","bugs":{"url":"https://github.com/socketio/socket.io-parser/issues"},"homepage":"https://github.com/socketio/socket.io-parser#readme","_id":"socket.io-parser@4.0.1","_nodeVersion":"12.19.0","_npmVersion":"6.14.8","dist":{"shasum":"b8ec84364c7369ad32ae0c16dd4d388db19b3a04","size":6543,"noattachment":false,"tarball":"https://registry.npmmirror.com/socket.io-parser/-/socket.io-parser-4.0.1.tgz","integrity":"sha512-5JfNykYptCwU2lkOI0ieoePWm+6stEhkZ2UnLDjqnE1YEjUlXXLd1lpxPZ+g+h3rtaytwWkWrLQCaJULlGqjOg=="},"_npmUser":{"name":"darrachequesne","email":"damien.arrachequesne@gmail.com"},"directories":{},"maintainers":[{"name":"darrachequesne","email":"damien.arrachequesne@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/socket.io-parser_4.0.1_1604588903839_0.038952370416422744"},"_hasShrinkwrap":false,"publish_time":1604588903947,"_cnpm_publish_time":1604588903947,"_cnpmcore_publish_time":"2021-12-13T11:16:58.428Z"},"4.0.1-rc3":{"name":"socket.io-parser","version":"4.0.1-rc3","description":"socket.io protocol parser","repository":{"type":"git","url":"git+https://github.com/socketio/socket.io-parser.git"},"main":"./dist/index.js","types":"./dist/index.d.ts","dependencies":{"component-emitter":"~1.3.0","debug":"~4.1.0"},"devDependencies":{"@babel/core":"~7.9.6","@babel/preset-env":"~7.9.6","@types/component-emitter":"^1.2.10","@types/debug":"^4.1.5","@types/node":"^14.11.1","babelify":"~10.0.0","benchmark":"2.1.2","expect.js":"0.3.1","mocha":"3.2.0","prettier":"^2.1.2","socket.io-browsers":"^1.0.0","typescript":"^4.0.3","zuul":"3.11.1","zuul-ngrok":"4.0.0"},"scripts":{"test":"npm run format:check && tsc && if test \"$BROWSERS\" = \"1\" ; then npm run test:browser; else npm run test:node; fi","test:node":"mocha --reporter dot --bail test/index.js","test:browser":"zuul test/index.js --no-coverage","format:fix":"prettier --write --parser typescript 'lib/**/*.ts' 'test/**/*.js'","format:check":"prettier --check --parser typescript 'lib/**/*.ts' 'test/**/*.js'","prepack":"tsc"},"license":"MIT","engines":{"node":">=10.0.0"},"readmeFilename":"Readme.md","gitHead":"412769fd18bd1a91258d3565701c9274399a3318","bugs":{"url":"https://github.com/socketio/socket.io-parser/issues"},"homepage":"https://github.com/socketio/socket.io-parser#readme","_id":"socket.io-parser@4.0.1-rc3","_nodeVersion":"12.19.0","_npmVersion":"6.14.8","dist":{"shasum":"cfb3d7ecdde5be90af37ca07a7ad86a38f2a28fa","size":6514,"noattachment":false,"tarball":"https://registry.npmmirror.com/socket.io-parser/-/socket.io-parser-4.0.1-rc3.tgz","integrity":"sha512-H85dvTVUOBMzquX5AojQvxRPCvH7jMkrhp2la+2gYn/uiS20sK1U8osWCMwU00oUITDUkjDTxLjw0fGkDTA76w=="},"maintainers":[{"name":"darrachequesne","email":"damien.arrachequesne@gmail.com"}],"_npmUser":{"name":"darrachequesne","email":"damien.arrachequesne@gmail.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/socket.io-parser_4.0.1-rc3_1603667894980_0.8311853911576967"},"_hasShrinkwrap":false,"publish_time":1603667895196,"_cnpm_publish_time":1603667895196,"_cnpmcore_publish_time":"2021-12-13T11:16:58.786Z"},"4.0.1-rc2":{"name":"socket.io-parser","version":"4.0.1-rc2","description":"socket.io protocol parser","repository":{"type":"git","url":"git+https://github.com/socketio/socket.io-parser.git"},"main":"./dist/index.js","types":"./dist/index.d.ts","dependencies":{"component-emitter":"~1.3.0","debug":"~4.1.0"},"devDependencies":{"@babel/core":"~7.9.6","@babel/preset-env":"~7.9.6","@types/component-emitter":"^1.2.10","@types/debug":"^4.1.5","@types/node":"^14.11.1","babelify":"~10.0.0","benchmark":"2.1.2","expect.js":"0.3.1","mocha":"3.2.0","prettier":"^2.1.2","socket.io-browsers":"^1.0.0","typescript":"^4.0.3","zuul":"3.11.1","zuul-ngrok":"4.0.0"},"scripts":{"test":"npm run format:check && tsc && if test \"$BROWSERS\" = \"1\" ; then npm run test:browser; else npm run test:node; fi","test:node":"mocha --reporter dot --bail test/index.js","test:browser":"zuul test/index.js --no-coverage","format:fix":"prettier --write --parser typescript 'lib/**/*.ts' 'test/**/*.js'","format:check":"prettier --check --parser typescript 'lib/**/*.ts' 'test/**/*.js'","prepack":"tsc"},"license":"MIT","engines":{"node":">=10.0.0"},"gitHead":"64b66482368e38382ea93409b95b4af299c45a5e","bugs":{"url":"https://github.com/socketio/socket.io-parser/issues"},"homepage":"https://github.com/socketio/socket.io-parser#readme","_id":"socket.io-parser@4.0.1-rc2","_nodeVersion":"12.19.0","_npmVersion":"6.14.8","dist":{"shasum":"70cf1b97eedf93957daaed0667f3723e4a699033","size":6488,"noattachment":false,"tarball":"https://registry.npmmirror.com/socket.io-parser/-/socket.io-parser-4.0.1-rc2.tgz","integrity":"sha512-aI20UWITf5vKgwA1HjCanYlM8cr2VDmOBiM3+1MM1MautnHAngiceuN0gUOtQs4MmWatuD2Td8g00EwHf3qthQ=="},"maintainers":[{"name":"darrachequesne","email":"damien.arrachequesne@gmail.com"}],"_npmUser":{"name":"darrachequesne","email":"damien.arrachequesne@gmail.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/socket.io-parser_4.0.1-rc2_1602750338946_0.17932262684258116"},"_hasShrinkwrap":false,"publish_time":1602750339091,"_cnpm_publish_time":1602750339091,"_cnpmcore_publish_time":"2021-12-13T11:16:59.158Z"},"4.0.1-rc1":{"name":"socket.io-parser","version":"4.0.1-rc1","description":"socket.io protocol parser","repository":{"type":"git","url":"git+https://github.com/socketio/socket.io-parser.git"},"main":"./dist/index.js","types":"./dist/index.d.ts","dependencies":{"component-emitter":"~1.3.0","debug":"~4.1.0"},"devDependencies":{"@babel/core":"~7.9.6","@babel/preset-env":"~7.9.6","@types/component-emitter":"^1.2.10","@types/debug":"^4.1.5","@types/node":"^14.11.1","babelify":"~10.0.0","benchmark":"2.1.2","expect.js":"0.3.1","mocha":"3.2.0","prettier":"^2.1.2","socket.io-browsers":"^1.0.0","typescript":"^4.0.3","zuul":"3.11.1","zuul-ngrok":"4.0.0"},"scripts":{"test":"npm run format:check && tsc && if test \"$BROWSERS\" = \"1\" ; then npm run test:browser; else npm run test:node; fi","test:node":"mocha --reporter dot --bail test/index.js","test:browser":"zuul test/index.js --no-coverage","format:fix":"prettier --write --parser typescript 'lib/**/*.ts' 'test/**/*.js'","format:check":"prettier --check --parser typescript 'lib/**/*.ts' 'test/**/*.js'","prepack":"tsc"},"license":"MIT","engines":{"node":">=10.0.0"},"readmeFilename":"Readme.md","gitHead":"7fc3c422347b6ec33e3c3b3bf3671b825a41f18f","bugs":{"url":"https://github.com/socketio/socket.io-parser/issues"},"homepage":"https://github.com/socketio/socket.io-parser#readme","_id":"socket.io-parser@4.0.1-rc1","_nodeVersion":"12.18.3","_npmVersion":"6.14.6","dist":{"shasum":"80980a03b245462d614c75911970447990df9169","size":6296,"noattachment":false,"tarball":"https://registry.npmmirror.com/socket.io-parser/-/socket.io-parser-4.0.1-rc1.tgz","integrity":"sha512-bkOwROtXKg6Q4Si3vsZq4SOxxqN0ZZ9G1QhZ/oUtbAwVenCq/QbOFu3DcVZAIfVQfRgRJpyuq4RhGVOqGbi2Tg=="},"maintainers":[{"name":"darrachequesne","email":"damien.arrachequesne@gmail.com"}],"_npmUser":{"name":"darrachequesne","email":"damien.arrachequesne@gmail.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/socket.io-parser_4.0.1-rc1_1602508999535_0.6838202678764804"},"_hasShrinkwrap":false,"publish_time":1602508999654,"_cnpm_publish_time":1602508999654,"_cnpmcore_publish_time":"2021-12-13T11:16:59.556Z"},"3.3.1":{"name":"socket.io-parser","version":"3.3.1","description":"socket.io protocol parser","repository":{"type":"git","url":"git+https://github.com/Automattic/socket.io-parser.git"},"dependencies":{"component-emitter":"~1.3.0","debug":"~3.1.0","isarray":"2.0.1"},"devDependencies":{"benchmark":"2.1.2","expect.js":"0.3.1","mocha":"3.2.0","socket.io-browsers":"^1.0.0","zuul":"3.11.1","zuul-ngrok":"4.0.0"},"scripts":{"test":"make test"},"license":"MIT","gitHead":"25ca624b0d9eddc54a0dbaecc535cdf400722169","bugs":{"url":"https://github.com/Automattic/socket.io-parser/issues"},"homepage":"https://github.com/Automattic/socket.io-parser#readme","_id":"socket.io-parser@3.3.1","_nodeVersion":"12.18.3","_npmVersion":"6.14.6","dist":{"shasum":"f07d9c8cb3fb92633aa93e76d98fd3a334623199","size":5478,"noattachment":false,"tarball":"https://registry.npmmirror.com/socket.io-parser/-/socket.io-parser-3.3.1.tgz","integrity":"sha512-1QLvVAe8dTz+mKmZ07Swxt+LAo4Y1ff50rlyoEx00TQmDFVQYPfcqGvIDJLGaBdhdNCecXtyKpD+EgKGcmmbuQ=="},"maintainers":[{"name":"darrachequesne","email":"damien.arrachequesne@gmail.com"}],"_npmUser":{"name":"darrachequesne","email":"damien.arrachequesne@gmail.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/socket.io-parser_3.3.1_1601426428304_0.9842848198521501"},"_hasShrinkwrap":false,"publish_time":1601426428476,"_cnpm_publish_time":1601426428476,"_cnpmcore_publish_time":"2021-12-13T11:16:59.927Z"},"4.0.0":{"name":"socket.io-parser","version":"4.0.0","description":"socket.io protocol parser","repository":{"type":"git","url":"git+https://github.com/socketio/socket.io-parser.git"},"main":"./dist/index.js","types":"./dist/index.d.ts","dependencies":{"component-emitter":"~1.3.0","debug":"~4.1.0"},"devDependencies":{"@babel/core":"~7.9.6","@babel/preset-env":"~7.9.6","@types/component-emitter":"^1.2.10","@types/debug":"^4.1.5","@types/node":"^14.11.1","babelify":"~10.0.0","benchmark":"2.1.2","expect.js":"0.3.1","mocha":"3.2.0","prettier":"^2.1.2","socket.io-browsers":"^1.0.0","typescript":"^4.0.3","zuul":"3.11.1","zuul-ngrok":"4.0.0"},"scripts":{"test":"npm run format:check && tsc && if test \"$BROWSERS\" = \"1\" ; then npm run test:browser; else npm run test:node; fi","test:node":"mocha --reporter dot --bail test/index.js","test:browser":"zuul test/index.js --no-coverage","format:fix":"prettier --write --parser typescript 'lib/**/*.ts' 'test/**/*.js'","format:check":"prettier --check --parser typescript 'lib/**/*.ts' 'test/**/*.js'"},"license":"MIT","engines":{"node":">=10.0.0"},"gitHead":"c04d7f5c47ed712eb0f56cfc1a859f1aaa828f1e","bugs":{"url":"https://github.com/socketio/socket.io-parser/issues"},"homepage":"https://github.com/socketio/socket.io-parser#readme","_id":"socket.io-parser@4.0.0","_nodeVersion":"12.18.3","_npmVersion":"6.14.6","dist":{"shasum":"678de0a56a7e332235f876b718cd0e3ab106d731","size":6182,"noattachment":false,"tarball":"https://registry.npmmirror.com/socket.io-parser/-/socket.io-parser-4.0.0.tgz","integrity":"sha512-uH2Pfy9AeKCokfhMRQ74aZ2/dXv14AJ83Fzzz7zbq9rRpM+1NGHWI8iGcrP4E0MxKEvh7LochViCEX8cU+5DWg=="},"maintainers":[{"name":"darrachequesne","email":"damien.arrachequesne@gmail.com"}],"_npmUser":{"name":"darrachequesne","email":"damien.arrachequesne@gmail.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/socket.io-parser_4.0.0_1601297771862_0.07798122580779054"},"_hasShrinkwrap":false,"publish_time":1601297772020,"_cnpm_publish_time":1601297772020,"_cnpmcore_publish_time":"2021-12-13T11:17:00.327Z"},"3.4.1":{"name":"socket.io-parser","version":"3.4.1","description":"socket.io protocol parser","repository":{"type":"git","url":"git+https://github.com/socketio/socket.io-parser.git"},"dependencies":{"debug":"~4.1.0","component-emitter":"1.2.1","isarray":"2.0.1"},"devDependencies":{"@babel/core":"~7.9.6","@babel/preset-env":"~7.9.6","babelify":"~10.0.0","benchmark":"2.1.2","expect.js":"0.3.1","mocha":"3.2.0","socket.io-browsers":"^1.0.0","zuul":"3.11.1","zuul-ngrok":"4.0.0"},"scripts":{"test":"make test"},"license":"MIT","gitHead":"a8130ce3a9682498bf986a0c3e4a53f9cf2ef965","bugs":{"url":"https://github.com/socketio/socket.io-parser/issues"},"homepage":"https://github.com/socketio/socket.io-parser#readme","_id":"socket.io-parser@3.4.1","_nodeVersion":"10.16.0","_npmVersion":"6.9.0","_npmUser":{"name":"darrachequesne","email":"damien.arrachequesne@gmail.com"},"dist":{"shasum":"b06af838302975837eab2dc980037da24054d64a","size":5624,"noattachment":false,"tarball":"https://registry.npmmirror.com/socket.io-parser/-/socket.io-parser-3.4.1.tgz","integrity":"sha512-11hMgzL+WCLWf1uFtHSNvliI++tcRUWdoeYuwIl+Axvwy9z2gQM+7nJyN3STj1tLj5JyIUH8/gpDGxzAlDdi0A=="},"maintainers":[{"name":"darrachequesne","email":"damien.arrachequesne@gmail.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/socket.io-parser_3.4.1_1589349612071_0.23606581333925036"},"_hasShrinkwrap":false,"publish_time":1589349612181,"_cnpm_publish_time":1589349612181,"_cnpmcore_publish_time":"2021-12-13T11:17:00.719Z"},"3.4.0":{"name":"socket.io-parser","version":"3.4.0","description":"socket.io protocol parser","repository":{"type":"git","url":"git+https://github.com/Automattic/socket.io-parser.git"},"dependencies":{"debug":"~4.1.0","component-emitter":"1.2.1","isarray":"2.0.1"},"devDependencies":{"benchmark":"2.1.2","expect.js":"0.3.1","mocha":"3.2.0","socket.io-browsers":"^1.0.0","zuul":"3.11.1","zuul-ngrok":"4.0.0"},"scripts":{"test":"make test"},"license":"MIT","gitHead":"652402a8568c2138da3c27c96756b32efca6c4bf","bugs":{"url":"https://github.com/Automattic/socket.io-parser/issues"},"homepage":"https://github.com/Automattic/socket.io-parser#readme","_id":"socket.io-parser@3.4.0","_nodeVersion":"10.16.0","_npmVersion":"6.9.0","_npmUser":{"name":"darrachequesne","email":"damien.arrachequesne@gmail.com"},"dist":{"shasum":"370bb4a151df2f77ce3345ff55a7072cc6e9565a","size":5409,"noattachment":false,"tarball":"https://registry.npmmirror.com/socket.io-parser/-/socket.io-parser-3.4.0.tgz","integrity":"sha512-/G/VOI+3DBp0+DJKW4KesGnQkQPFmUCbA/oO2QGT6CWxU7hLGWqU3tyuzeSK/dqcyeHsQg1vTe9jiZI8GU9SCQ=="},"maintainers":[{"name":"darrachequesne","email":"damien.arrachequesne@gmail.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/socket.io-parser_3.4.0_1568970127031_0.24533172655663904"},"_hasShrinkwrap":false,"publish_time":1568970127232,"_cnpm_publish_time":1568970127232,"_cnpmcore_publish_time":"2021-12-13T11:17:01.147Z"},"3.3.0":{"name":"socket.io-parser","version":"3.3.0","description":"socket.io protocol parser","repository":{"type":"git","url":"git+https://github.com/Automattic/socket.io-parser.git"},"dependencies":{"debug":"~3.1.0","component-emitter":"1.2.1","isarray":"2.0.1"},"devDependencies":{"benchmark":"2.1.2","expect.js":"0.3.1","mocha":"3.2.0","socket.io-browsers":"^1.0.0","zuul":"3.11.1","zuul-ngrok":"4.0.0"},"scripts":{"test":"make test"},"license":"MIT","gitHead":"0de72b9cc25c0950f09811e1e2a951b80e67e3fb","bugs":{"url":"https://github.com/Automattic/socket.io-parser/issues"},"homepage":"https://github.com/Automattic/socket.io-parser#readme","_id":"socket.io-parser@3.3.0","_npmVersion":"6.2.0","_nodeVersion":"10.9.0","_npmUser":{"name":"darrachequesne","email":"damien.arrachequesne@gmail.com"},"dist":{"shasum":"2b52a96a509fdf31440ba40fed6094c7d4f1262f","size":5410,"noattachment":false,"tarball":"https://registry.npmmirror.com/socket.io-parser/-/socket.io-parser-3.3.0.tgz","integrity":"sha512-hczmV6bDgdaEbVqhAeVMM/jfUfzuEZHsQg6eOmLgJht6G3mPKMxYm75w2+qhAQZ+4X+1+ATZ+QFKeOZD5riHng=="},"maintainers":[{"name":"darrachequesne","email":"damien.arrachequesne@gmail.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/socket.io-parser_3.3.0_1541631559593_0.9539303406614281"},"_hasShrinkwrap":false,"publish_time":1541631560663,"_cnpm_publish_time":1541631560663,"_cnpmcore_publish_time":"2021-12-13T11:17:01.564Z"},"3.2.0":{"name":"socket.io-parser","version":"3.2.0","description":"socket.io protocol parser","repository":{"type":"git","url":"git+https://github.com/Automattic/socket.io-parser.git"},"files":["binary.js","index.js","is-buffer.js"],"dependencies":{"debug":"~3.1.0","component-emitter":"1.2.1","isarray":"2.0.1"},"devDependencies":{"benchmark":"2.1.2","expect.js":"0.3.1","mocha":"3.2.0","socket.io-browsers":"^1.0.0","zuul":"3.11.1","zuul-ngrok":"4.0.0"},"scripts":{"test":"make test"},"license":"MIT","gitHead":"6e400188be089990fcb811bb734b7d0215cb74f7","bugs":{"url":"https://github.com/Automattic/socket.io-parser/issues"},"homepage":"https://github.com/Automattic/socket.io-parser#readme","_id":"socket.io-parser@3.2.0","_npmVersion":"5.5.1","_nodeVersion":"9.2.0","_npmUser":{"name":"darrachequesne","email":"damien.arrachequesne@gmail.com"},"dist":{"shasum":"e7c6228b6aa1f814e6148aea325b51aa9499e077","size":5451,"noattachment":false,"tarball":"https://registry.npmmirror.com/socket.io-parser/-/socket.io-parser-3.2.0.tgz","integrity":"sha512-FYiBx7rc/KORMJlgsXysflWx/RIvtqZbyGLlHZvjfmPTPeuD/I8MaW7cfFrj5tRltICJdgwflhfZ3NVVbVLFQA=="},"maintainers":[{"name":"darrachequesne","email":"damien.arrachequesne@gmail.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/socket.io-parser_3.2.0_1519852162668_0.45235605487419206"},"_hasShrinkwrap":false,"publish_time":1519852162718,"_cnpm_publish_time":1519852162718,"_cnpmcore_publish_time":"2021-12-13T11:17:02.005Z"},"3.1.3":{"name":"socket.io-parser","version":"3.1.3","description":"socket.io protocol parser","repository":{"type":"git","url":"git+https://github.com/Automattic/socket.io-parser.git"},"files":["binary.js","index.js","is-buffer.js"],"dependencies":{"debug":"~3.1.0","component-emitter":"1.2.1","has-binary2":"~1.0.2","isarray":"2.0.1"},"devDependencies":{"benchmark":"2.1.2","expect.js":"0.3.1","mocha":"3.2.0","socket.io-browsers":"^1.0.0","zuul":"3.11.1","zuul-ngrok":"4.0.0"},"scripts":{"test":"make test"},"license":"MIT","gitHead":"f9c06255de817b19e47eb41a6e7d90dc1976cbba","bugs":{"url":"https://github.com/Automattic/socket.io-parser/issues"},"homepage":"https://github.com/Automattic/socket.io-parser#readme","_id":"socket.io-parser@3.1.3","_npmVersion":"5.5.1","_nodeVersion":"9.2.0","_npmUser":{"name":"darrachequesne","email":"damien.arrachequesne@gmail.com"},"dist":{"shasum":"ed2da5ee79f10955036e3da413bfd7f1e4d86c8e","size":5368,"noattachment":false,"tarball":"https://registry.npmmirror.com/socket.io-parser/-/socket.io-parser-3.1.3.tgz","integrity":"sha512-g0a2HPqLguqAczs3dMECuA1RgoGFPyvDqcbaDEdCWY9g59kdUAz3YRmaJBNKXflrHNwB7Q12Gkf/0CZXfdHR7g=="},"maintainers":[{"name":"darrachequesne","email":"damien.arrachequesne@gmail.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/socket.io-parser_3.1.3_1519546829648_0.5290136964864698"},"_hasShrinkwrap":false,"publish_time":1519546829707,"_cnpm_publish_time":1519546829707,"_cnpmcore_publish_time":"2021-12-13T11:17:02.509Z"},"3.1.2":{"name":"socket.io-parser","version":"3.1.2","description":"socket.io protocol parser","repository":{"type":"git","url":"git+https://github.com/Automattic/socket.io-parser.git"},"files":["binary.js","index.js","is-buffer.js"],"dependencies":{"debug":"~2.6.4","component-emitter":"1.2.1","has-binary2":"~1.0.2","isarray":"2.0.1"},"devDependencies":{"benchmark":"2.1.2","expect.js":"0.3.1","mocha":"3.2.0","socket.io-browsers":"^1.0.0","zuul":"3.11.1","zuul-ngrok":"4.0.0"},"scripts":{"test":"make test"},"license":"MIT","gitHead":"f9c3549dd17df095b0806086df3f4834ddc98d45","bugs":{"url":"https://github.com/Automattic/socket.io-parser/issues"},"homepage":"https://github.com/Automattic/socket.io-parser#readme","_id":"socket.io-parser@3.1.2","_shasum":"dbc2282151fc4faebbe40aeedc0772eba619f7f2","_from":".","_npmVersion":"3.10.10","_nodeVersion":"6.9.4","_npmUser":{"name":"darrachequesne","email":"damien.arrachequesne@gmail.com"},"dist":{"shasum":"dbc2282151fc4faebbe40aeedc0772eba619f7f2","size":6515,"noattachment":false,"tarball":"https://registry.npmmirror.com/socket.io-parser/-/socket.io-parser-3.1.2.tgz","integrity":"sha512-X/2VzU82iSIKyhivQjgM9nR4czG7vQ8AlM5z8+zdu3XbUTddulYlhLCP/nlT6VTua4SsmCyi/3h8YSOwPZA8Yw=="},"maintainers":[{"name":"darrachequesne","email":"damien.arrachequesne@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/socket.io-parser-3.1.2.tgz_1493329580053_0.09636084409430623"},"directories":{},"publish_time":1493329582018,"_hasShrinkwrap":false,"_cnpm_publish_time":1493329582018,"_cnpmcore_publish_time":"2021-12-13T11:17:02.986Z"},"3.1.1":{"name":"socket.io-parser","version":"3.1.1","description":"socket.io protocol parser","repository":{"type":"git","url":"git+https://github.com/Automattic/socket.io-parser.git"},"files":["binary.js","index.js","is-buffer.js"],"dependencies":{"debug":"~2.6.4","component-emitter":"1.2.1","has-binary2":"1.0.1","isarray":"2.0.1"},"devDependencies":{"benchmark":"2.1.2","expect.js":"0.3.1","mocha":"3.2.0","socket.io-browsers":"^1.0.0","zuul":"3.11.1","zuul-ngrok":"4.0.0"},"scripts":{"test":"make test"},"license":"MIT","gitHead":"eaee5d58c4fb3e593131502bb389ea28ab8d26f1","bugs":{"url":"https://github.com/Automattic/socket.io-parser/issues"},"homepage":"https://github.com/Automattic/socket.io-parser#readme","_id":"socket.io-parser@3.1.1","_shasum":"9dce6ed0a66abdcc927b4572e8fd1a8b64e3df36","_from":".","_npmVersion":"3.10.10","_nodeVersion":"6.9.4","_npmUser":{"name":"darrachequesne","email":"damien.arrachequesne@gmail.com"},"dist":{"shasum":"9dce6ed0a66abdcc927b4572e8fd1a8b64e3df36","size":6394,"noattachment":false,"tarball":"https://registry.npmmirror.com/socket.io-parser/-/socket.io-parser-3.1.1.tgz","integrity":"sha512-Kv2gHzsKYaf1k88PsDUBnEBWNSmWPl8H2kZf/nS51g7C+BWxYyZLE7lh2ET3OIVC8H7PKYO/Y0V5t0O7MBFFCw=="},"maintainers":[{"name":"darrachequesne","email":"damien.arrachequesne@gmail.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/socket.io-parser-3.1.1.tgz_1493072561102_0.18692600820213556"},"directories":{},"publish_time":1493072561669,"_hasShrinkwrap":false,"_cnpm_publish_time":1493072561669,"_cnpmcore_publish_time":"2021-12-13T11:17:03.484Z"},"3.1.0":{"name":"socket.io-parser","version":"3.1.0","description":"socket.io protocol parser","repository":{"type":"git","url":"git+https://github.com/Automattic/socket.io-parser.git"},"files":["binary.js","index.js","is-buffer.js"],"dependencies":{"debug":"~2.6.4","component-emitter":"1.2.1","has-binary2":"1.0.1","isarray":"2.0.1"},"devDependencies":{"benchmark":"2.1.2","expect.js":"0.3.1","mocha":"3.2.0","socket.io-browsers":"^1.0.0","zuul":"3.11.1","zuul-ngrok":"4.0.0"},"scripts":{"test":"make test"},"license":"MIT","gitHead":"8e5465de2f264f856a3fd063248d2006d650c5e1","bugs":{"url":"https://github.com/Automattic/socket.io-parser/issues"},"homepage":"https://github.com/Automattic/socket.io-parser#readme","_id":"socket.io-parser@3.1.0","_shasum":"b58a3d780fe63370e4055d51bff6cb1b582715e9","_from":".","_npmVersion":"3.10.10","_nodeVersion":"6.9.4","_npmUser":{"name":"darrachequesne","email":"damien.arrachequesne@gmail.com"},"dist":{"shasum":"b58a3d780fe63370e4055d51bff6cb1b582715e9","size":6350,"noattachment":false,"tarball":"https://registry.npmmirror.com/socket.io-parser/-/socket.io-parser-3.1.0.tgz","integrity":"sha512-sFWuFkKI246mvEjqBkafugjueilGvLjvLC5dXii+UaDrquVlgFFVNTPrh1h9wgRIE+VBY1ucyGuv4AF0ikiQdQ=="},"maintainers":[{"name":"darrachequesne","email":"damien.arrachequesne@gmail.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/socket.io-parser-3.1.0.tgz_1493069653408_0.31741833384148777"},"directories":{},"publish_time":1493069653969,"_hasShrinkwrap":false,"_cnpm_publish_time":1493069653969,"_cnpmcore_publish_time":"2021-12-13T11:17:03.985Z"},"3.0.0":{"name":"socket.io-parser","version":"3.0.0","description":"socket.io protocol parser","repository":{"type":"git","url":"git+https://github.com/Automattic/socket.io-parser.git"},"files":["binary.js","index.js","is-buffer.js"],"dependencies":{"debug":"2.3.3","component-emitter":"1.2.1","isarray":"2.0.1"},"devDependencies":{"benchmark":"2.1.2","expect.js":"0.3.1","mocha":"3.2.0","socket.io-browsers":"^1.0.0","zuul":"3.11.1","zuul-ngrok":"4.0.0"},"scripts":{"test":"make test"},"license":"MIT","gitHead":"817adca41d77d8b717fcfae622e89b6fc6c50a92","bugs":{"url":"https://github.com/Automattic/socket.io-parser/issues"},"homepage":"https://github.com/Automattic/socket.io-parser#readme","_id":"socket.io-parser@3.0.0","_shasum":"19c1cd4582b8a0b729ec013af744465e0f1400bc","_from":".","_npmVersion":"3.10.10","_nodeVersion":"6.9.4","_npmUser":{"name":"darrachequesne","email":"damien.arrachequesne@gmail.com"},"dist":{"shasum":"19c1cd4582b8a0b729ec013af744465e0f1400bc","size":6255,"noattachment":false,"tarball":"https://registry.npmmirror.com/socket.io-parser/-/socket.io-parser-3.0.0.tgz","integrity":"sha512-Ud7nf89gw2WMirwOd3zKw5UMAvtEBPm+UB3M9k0ZwW8mT2i2u3C5D/MOZ76coohnrErGLkA2nYxDjKQzj6gGqw=="},"maintainers":[{"name":"darrachequesne","email":"damien.arrachequesne@gmail.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/socket.io-parser-3.0.0.tgz_1491256377575_0.5008517696987838"},"directories":{},"publish_time":1491256378208,"_hasShrinkwrap":false,"_cnpm_publish_time":1491256378208,"_cnpmcore_publish_time":"2021-12-13T11:17:04.515Z"},"2.3.2":{"name":"socket.io-parser","version":"2.3.2","description":"socket.io protocol parser","repository":{"type":"git","url":"git+https://github.com/Automattic/socket.io-parser.git"},"files":["binary.js","index.js","is-buffer.js"],"dependencies":{"debug":"2.3.3","json3":"3.3.2","component-emitter":"1.2.1","isarray":"0.0.1"},"devDependencies":{"benchmark":"2.1.2","expect.js":"0.3.1","mocha":"3.2.0","socket.io-browsers":"^1.0.0","zuul":"3.11.1","zuul-ngrok":"4.0.0"},"scripts":{"test":"make test"},"license":"MIT","gitHead":"9ce9a98dd0969328e34146d287e82c5500614f27","bugs":{"url":"https://github.com/Automattic/socket.io-parser/issues"},"homepage":"https://github.com/Automattic/socket.io-parser#readme","_id":"socket.io-parser@2.3.2","_shasum":"ae64f90cd8d0b5316556280d98cb744f7422cd94","_from":".","_npmVersion":"4.0.3","_nodeVersion":"6.9.1","_npmUser":{"name":"darrachequesne","email":"damien.arrachequesne@gmail.com"},"dist":{"shasum":"ae64f90cd8d0b5316556280d98cb744f7422cd94","size":6214,"noattachment":false,"tarball":"https://registry.npmmirror.com/socket.io-parser/-/socket.io-parser-2.3.2.tgz","integrity":"sha512-5BU+AyITiKkBZQeFsCMmkYMMA0oEi27nonUYGADcA0fGWl/DKQpLDx0qGPjDdroVqVx8Y3ExDEPx4xEp40y7Aw=="},"maintainers":[{"name":"darrachequesne","email":"damien.arrachequesne@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/socket.io-parser-2.3.2.tgz_1483134214356_0.5245977933518589"},"directories":{},"publish_time":1483134216289,"_hasShrinkwrap":false,"_cnpm_publish_time":1483134216289,"_cnpmcore_publish_time":"2021-12-13T11:17:05.056Z"},"2.3.1":{"name":"socket.io-parser","version":"2.3.1","description":"socket.io protocol parser","repository":{"type":"git","url":"git+https://github.com/Automattic/socket.io-parser.git"},"files":["binary.js","index.js","is-buffer.js"],"dependencies":{"debug":"2.2.0","json3":"3.3.2","component-emitter":"1.1.2","isarray":"0.0.1"},"devDependencies":{"benchmark":"1.0.0","expect.js":"0.2.0","mocha":"1.16.2","zuul":"3.11.0","zuul-ngrok":"4.0.0"},"scripts":{"test":"make test"},"license":"MIT","gitHead":"64455b432c9af2f9692a0eb845b17129eec0442a","bugs":{"url":"https://github.com/Automattic/socket.io-parser/issues"},"homepage":"https://github.com/Automattic/socket.io-parser#readme","_id":"socket.io-parser@2.3.1","_shasum":"dd532025103ce429697326befd64005fcfe5b4a0","_from":".","_npmVersion":"2.15.8","_nodeVersion":"4.4.7","_npmUser":{"name":"darrachequesne","email":"damien.arrachequesne@gmail.com"},"dist":{"shasum":"dd532025103ce429697326befd64005fcfe5b4a0","size":6125,"noattachment":false,"tarball":"https://registry.npmmirror.com/socket.io-parser/-/socket.io-parser-2.3.1.tgz","integrity":"sha512-j6l4g/+yWQjmy1yByzg1DPFL4vxQw+NwCJatIxni/AE1wfm17FBtIKSWU4Ay+onrJwDxmC4eK4QS/04ZsqYwZQ=="},"maintainers":[{"name":"darrachequesne","email":"damien.arrachequesne@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/socket.io-parser-2.3.1.tgz_1477269125715_0.3387652209494263"},"directories":{},"publish_time":1477269127563,"_hasShrinkwrap":false,"_cnpm_publish_time":1477269127563,"_cnpmcore_publish_time":"2021-12-13T11:17:05.577Z"},"2.3.0":{"name":"socket.io-parser","version":"2.3.0","description":"socket.io protocol parser","repository":{"type":"git","url":"git+https://github.com/Automattic/socket.io-parser.git"},"files":["binary.js","index.js","is-buffer.js"],"dependencies":{"debug":"2.2.0","json3":"3.3.2","component-emitter":"1.1.2"},"devDependencies":{"benchmark":"1.0.0","expect.js":"0.2.0","mocha":"1.16.2","zuul":"3.11.0","zuul-ngrok":"4.0.0"},"scripts":{"test":"make test"},"license":"MIT","gitHead":"baf384cd6cbcdf716ec35ed2187cd755c7e5e9d2","bugs":{"url":"https://github.com/Automattic/socket.io-parser/issues"},"homepage":"https://github.com/Automattic/socket.io-parser#readme","_id":"socket.io-parser@2.3.0","_shasum":"deb02dc50f7f5ac7a35f43bc6f7d413dc46a5153","_from":".","_npmVersion":"2.15.8","_nodeVersion":"4.4.7","_npmUser":{"name":"darrachequesne","email":"damien.arrachequesne@gmail.com"},"dist":{"shasum":"deb02dc50f7f5ac7a35f43bc6f7d413dc46a5153","size":6069,"noattachment":false,"tarball":"https://registry.npmmirror.com/socket.io-parser/-/socket.io-parser-2.3.0.tgz","integrity":"sha512-ZHfrPexBWrrChXWKz4P4UfXs1HZCk5R+Djd5AWz/KXyCodDjcD0cvhA5GQt1Jdj7KfqArm0URTxwPL5IyqS35g=="},"maintainers":[{"name":"darrachequesne","email":"damien.arrachequesne@gmail.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/socket.io-parser-2.3.0.tgz_1477006456151_0.5716474098153412"},"directories":{},"publish_time":1477006456871,"_hasShrinkwrap":false,"_cnpm_publish_time":1477006456871,"_cnpmcore_publish_time":"2021-12-13T11:17:06.243Z"},"2.2.6":{"name":"socket.io-parser","version":"2.2.6","description":"socket.io protocol parser","repository":{"type":"git","url":"git+https://github.com/Automattic/socket.io-parser.git"},"dependencies":{"debug":"2.2.0","json3":"3.3.2","component-emitter":"1.1.2","isarray":"0.0.1","benchmark":"1.0.0"},"devDependencies":{"mocha":"1.16.2","expect.js":"0.2.0","zuul":"3.7.3","zuul-ngrok":"3.2.0"},"scripts":{"test":"make test"},"license":"MIT","gitHead":"b5f7c7573a4bbe3bff883c4436cdf90628319d24","bugs":{"url":"https://github.com/Automattic/socket.io-parser/issues"},"homepage":"https://github.com/Automattic/socket.io-parser#readme","_id":"socket.io-parser@2.2.6","_shasum":"38dfd61df50dcf8ab1d9e2091322bf902ba28b99","_from":".","_npmVersion":"3.4.1","_nodeVersion":"4.2.2","_npmUser":{"name":"rauchg","email":"rauchg@gmail.com"},"maintainers":[{"name":"darrachequesne","email":"damien.arrachequesne@gmail.com"}],"dist":{"shasum":"38dfd61df50dcf8ab1d9e2091322bf902ba28b99","size":7479,"noattachment":false,"tarball":"https://registry.npmmirror.com/socket.io-parser/-/socket.io-parser-2.2.6.tgz","integrity":"sha512-uXTZmnj1jyTE57vgOlU0K5GKVFA80KB+q3kcExgFDtofI9l1ax5rS6LVG8aOLSK1Tb17jvF1pMVPQCYygD3tYQ=="},"directories":{},"publish_time":1448475186246,"_hasShrinkwrap":false,"_cnpm_publish_time":1448475186246,"_cnpmcore_publish_time":"2021-12-13T11:17:06.781Z"},"2.2.5":{"name":"socket.io-parser","version":"2.2.5","description":"socket.io protocol parser","repository":{"type":"git","url":"git+https://github.com/Automattic/socket.io-parser.git"},"dependencies":{"debug":"2.2.0","json3":"3.3.2","component-emitter":"1.1.2","isarray":"0.0.1","benchmark":"1.0.0"},"devDependencies":{"mocha":"1.16.2","expect.js":"0.2.0","zuul":"3.7.3"},"scripts":{"test":"make test"},"license":"MIT","gitHead":"913ddb8c6e0524f0aaf2d519ea4a3a9cf9e1e96d","bugs":{"url":"https://github.com/Automattic/socket.io-parser/issues"},"homepage":"https://github.com/Automattic/socket.io-parser#readme","_id":"socket.io-parser@2.2.5","_shasum":"8d945b6da2158bafaf04f4e9c77c573b44cde52c","_from":".","_npmVersion":"2.14.7","_nodeVersion":"4.2.2","_npmUser":{"name":"rauchg","email":"rauchg@gmail.com"},"maintainers":[{"name":"darrachequesne","email":"damien.arrachequesne@gmail.com"}],"dist":{"shasum":"8d945b6da2158bafaf04f4e9c77c573b44cde52c","size":7091,"noattachment":false,"tarball":"https://registry.npmmirror.com/socket.io-parser/-/socket.io-parser-2.2.5.tgz","integrity":"sha512-pE72wuzcTzsr5Jhx7w433woXaWPXFfGyvsNJDi/lUE6XoEqltBoKz4KlJ5O2x9xqfiJekR3j86+Iw0pgDKFCow=="},"directories":{},"publish_time":1448131542106,"_hasShrinkwrap":false,"_cnpm_publish_time":1448131542106,"_cnpmcore_publish_time":"2021-12-13T11:17:07.310Z"},"2.2.4":{"name":"socket.io-parser","version":"2.2.4","description":"socket.io protocol parser","repository":{"type":"git","url":"https://github.com/Automattic/socket.io-parser.git"},"dependencies":{"debug":"0.7.4","json3":"3.2.6","component-emitter":"1.1.2","isarray":"0.0.1","benchmark":"1.0.0"},"devDependencies":{"mocha":"1.16.2","expect.js":"0.2.0","zuul":"1.6.3"},"scripts":{"test":"make test"},"license":"MIT","gitHead":"6455fb27613f708d2f66bc186ae323d47f4262c5","bugs":{"url":"https://github.com/Automattic/socket.io-parser/issues"},"homepage":"https://github.com/Automattic/socket.io-parser","_id":"socket.io-parser@2.2.4","_shasum":"f9ce19bf1909608ceb15d97721e23bfdd1e7cf65","_from":".","_npmVersion":"1.4.28","_npmUser":{"name":"rauchg","email":"rauchg@gmail.com"},"maintainers":[{"name":"darrachequesne","email":"damien.arrachequesne@gmail.com"}],"dist":{"shasum":"f9ce19bf1909608ceb15d97721e23bfdd1e7cf65","size":1238316,"noattachment":false,"tarball":"https://registry.npmmirror.com/socket.io-parser/-/socket.io-parser-2.2.4.tgz","integrity":"sha512-j0TD2g5DtrmQwcBy+C0RejylNk43rdeCBRRm8EBExrE/f5RlztV+d0k4PRR/tXrcaLcgZeXRpsZvcPVKHarj8g=="},"directories":{},"publish_time":1425407666714,"_hasShrinkwrap":false,"_cnpm_publish_time":1425407666714,"_cnpmcore_publish_time":"2021-12-13T11:17:08.219Z"},"2.2.3":{"name":"socket.io-parser","version":"2.2.3","description":"socket.io protocol parser","repository":{"type":"git","url":"https://github.com/Automattic/socket.io-parser.git"},"dependencies":{"debug":"0.7.4","json3":"3.2.6","component-emitter":"1.1.2","isarray":"0.0.1","benchmark":"1.0.0"},"devDependencies":{"mocha":"1.16.2","expect.js":"0.2.0","zuul":"1.6.3"},"scripts":{"test":"make test"},"license":"MIT","gitHead":"c4bfb06a72c767d31c44a976a0b08b44874a2575","bugs":{"url":"https://github.com/Automattic/socket.io-parser/issues"},"homepage":"https://github.com/Automattic/socket.io-parser","_id":"socket.io-parser@2.2.3","_shasum":"6b2c2d6b971a0c0b8510eb83dd2d281a00ee7320","_from":".","_npmVersion":"1.4.28","_npmUser":{"name":"rauchg","email":"rauchg@gmail.com"},"maintainers":[{"name":"darrachequesne","email":"damien.arrachequesne@gmail.com"}],"dist":{"shasum":"6b2c2d6b971a0c0b8510eb83dd2d281a00ee7320","size":6362,"noattachment":false,"tarball":"https://registry.npmmirror.com/socket.io-parser/-/socket.io-parser-2.2.3.tgz","integrity":"sha512-0G3AYiTdnRciMBgEBURHYCMVuAph9N7fXXj8xlaSssFlRGcfbEYAuXLAJLHYozNelFiVYEZ3EBYLd3JD3SN9+w=="},"directories":{},"publish_time":1423009893757,"_hasShrinkwrap":false,"_cnpm_publish_time":1423009893757,"_cnpmcore_publish_time":"2021-12-13T11:17:08.942Z"},"2.2.2":{"name":"socket.io-parser","version":"2.2.2","description":"socket.io protocol parser","repository":{"type":"git","url":"https://github.com/Automattic/socket.io-parser.git"},"dependencies":{"debug":"0.7.4","json3":"3.2.6","component-emitter":"1.1.2","isarray":"0.0.1","benchmark":"1.0.0"},"devDependencies":{"mocha":"1.16.2","expect.js":"0.2.0","zuul":"1.6.3"},"scripts":{"test":"make test"},"license":"MIT","gitHead":"83c68c7a715ac54e95c5dae6445f751b3a4dfe9f","bugs":{"url":"https://github.com/Automattic/socket.io-parser/issues"},"homepage":"https://github.com/Automattic/socket.io-parser","_id":"socket.io-parser@2.2.2","_shasum":"3d7af6b64497e956b7d9fe775f999716027f9417","_from":".","_npmVersion":"1.4.25","_npmUser":{"name":"rauchg","email":"rauchg@gmail.com"},"maintainers":[{"name":"darrachequesne","email":"damien.arrachequesne@gmail.com"}],"dist":{"shasum":"3d7af6b64497e956b7d9fe775f999716027f9417","size":6290,"noattachment":false,"tarball":"https://registry.npmmirror.com/socket.io-parser/-/socket.io-parser-2.2.2.tgz","integrity":"sha512-fM+hIkoQPh0oNLoL7yx39fvtqMncRTBekjENFPT8dEYHXqvRYC8yWwT+m9PW8wmYieUcqzw7yJnHNXzPAC9i9w=="},"directories":{},"publish_time":1409818400797,"_hasShrinkwrap":false,"_cnpm_publish_time":1409818400797,"_cnpmcore_publish_time":"2021-12-13T11:17:09.506Z"},"2.2.1":{"name":"socket.io-parser","version":"2.2.1","description":"socket.io protocol parser","repository":{"type":"git","url":"https://github.com/Automattic/socket.io-parser.git"},"dependencies":{"debug":"0.7.4","json3":"3.2.6","component-emitter":"1.1.2","isarray":"0.0.1","benchmark":"1.0.0"},"devDependencies":{"mocha":"1.16.2","expect.js":"0.2.0","zuul":"1.6.3"},"scripts":{"test":"make test"},"license":"MIT","gitHead":"5c551f0f527fec41361df6fdc0d60d202e658045","bugs":{"url":"https://github.com/Automattic/socket.io-parser/issues"},"homepage":"https://github.com/Automattic/socket.io-parser","_id":"socket.io-parser@2.2.1","_shasum":"22e79d7a8458f4b48cc20884c00285487b1b77d8","_from":".","_npmVersion":"1.4.14","_npmUser":{"name":"rauchg","email":"rauchg@gmail.com"},"maintainers":[{"name":"darrachequesne","email":"damien.arrachequesne@gmail.com"}],"dist":{"shasum":"22e79d7a8458f4b48cc20884c00285487b1b77d8","size":6197,"noattachment":false,"tarball":"https://registry.npmmirror.com/socket.io-parser/-/socket.io-parser-2.2.1.tgz","integrity":"sha512-8ao1fH2132eTTKHg4wKHmIjOWiYh7Jr87mwq35wokuLOm5Q3xAZolIbpFHdFnPpfYWhaCAxUXPYoAq6FbSfg0w=="},"directories":{},"publish_time":1403308574435,"_hasShrinkwrap":false,"_cnpm_publish_time":1403308574435,"_cnpmcore_publish_time":"2021-12-13T11:17:10.149Z"},"2.2.0":{"name":"socket.io-parser","version":"2.2.0","description":"socket.io protocol parser","repository":{"type":"git","url":"https://github.com/LearnBoost/socket.io-parser.git"},"dependencies":{"debug":"0.7.4","json3":"3.2.6","emitter":"http://github.com/component/emitter/archive/1.0.1.tar.gz","isarray":"0.0.1"},"devDependencies":{"mocha":"1.16.2","expect.js":"0.2.0","zuul":"1.6.3"},"component":{"scripts":["index.js"]},"scripts":{"test":"make test"},"bugs":{"url":"https://github.com/LearnBoost/socket.io-parser/issues"},"homepage":"https://github.com/LearnBoost/socket.io-parser","_id":"socket.io-parser@2.2.0","_shasum":"2609601f59e6a7fab436a53be3d333fbbfcbd30a","_from":".","_npmVersion":"1.4.7","_npmUser":{"name":"rauchg","email":"rauchg@gmail.com"},"maintainers":[{"name":"darrachequesne","email":"damien.arrachequesne@gmail.com"}],"dist":{"shasum":"2609601f59e6a7fab436a53be3d333fbbfcbd30a","size":5597,"noattachment":false,"tarball":"https://registry.npmmirror.com/socket.io-parser/-/socket.io-parser-2.2.0.tgz","integrity":"sha512-uW3UiLVibAyleKq8r/yZe1oPO51olhY18T6HtnN0iI6RLqJfYC0YiyAFlsPw1+8I0Z1qFd8jFLTRZo2vr6ISxA=="},"directories":{},"publish_time":1401509418114,"_hasShrinkwrap":false,"_cnpm_publish_time":1401509418114,"_cnpmcore_publish_time":"2021-12-13T11:17:10.830Z"},"2.1.5":{"name":"socket.io-parser","version":"2.1.5","description":"socket.io protocol parser","repository":{"type":"git","url":"https://github.com/LearnBoost/socket.io-parser.git"},"dependencies":{"debug":"0.7.4","json3":"3.2.6","emitter":"http://github.com/component/emitter/archive/1.0.1.tar.gz","isarray":"0.0.1"},"devDependencies":{"mocha":"1.16.2","expect.js":"0.2.0","zuul":"1.6.3"},"component":{"scripts":["index.js"]},"scripts":{"test":"make test"},"bugs":{"url":"https://github.com/LearnBoost/socket.io-parser/issues"},"homepage":"https://github.com/LearnBoost/socket.io-parser","_id":"socket.io-parser@2.1.5","_shasum":"4deb9339a36ec4b2bc782dffbfdbd53811493ebf","_from":".","_npmVersion":"1.4.7","_npmUser":{"name":"rauchg","email":"rauchg@gmail.com"},"maintainers":[{"name":"darrachequesne","email":"damien.arrachequesne@gmail.com"}],"dist":{"shasum":"4deb9339a36ec4b2bc782dffbfdbd53811493ebf","size":5547,"noattachment":false,"tarball":"https://registry.npmmirror.com/socket.io-parser/-/socket.io-parser-2.1.5.tgz","integrity":"sha512-Ruc5lOCshCWmCF9zUeQSRFh8viltB1g/0AdMXPWfg04JSwSXKGFvDz9Ctb/HuwF8yLZW7zxqvAIJ/H9MATk3Rg=="},"directories":{},"publish_time":1400956587565,"_hasShrinkwrap":false,"_cnpm_publish_time":1400956587565,"_cnpmcore_publish_time":"2021-12-13T11:17:11.472Z"},"2.1.4":{"name":"socket.io-parser","version":"2.1.4","description":"socket.io protocol parser","repository":{"type":"git","url":"https://github.com/LearnBoost/socket.io-parser.git"},"dependencies":{"debug":"0.7.4","json3":"3.2.6","emitter":"http://github.com/component/emitter/archive/1.0.1.tar.gz","isarray":"0.0.1"},"devDependencies":{"mocha":"1.16.2","expect.js":"0.2.0","zuul":"1.6.3"},"component":{"scripts":["index.js"]},"scripts":{"test":"make test"},"bugs":{"url":"https://github.com/LearnBoost/socket.io-parser/issues"},"homepage":"https://github.com/LearnBoost/socket.io-parser","_id":"socket.io-parser@2.1.4","_shasum":"ed2ec2608aa2e21189d922512a4703984166c270","_from":".","_npmVersion":"1.4.7","_npmUser":{"name":"rauchg","email":"rauchg@gmail.com"},"maintainers":[{"name":"darrachequesne","email":"damien.arrachequesne@gmail.com"}],"dist":{"shasum":"ed2ec2608aa2e21189d922512a4703984166c270","size":5501,"noattachment":false,"tarball":"https://registry.npmmirror.com/socket.io-parser/-/socket.io-parser-2.1.4.tgz","integrity":"sha512-e8AS9yIxQMgHc5b01Yb55yu846CDYeonrHtRKSp8BYNK56P4k1TcJ6boQFWEALwER8aKtxGs0X7CSJhHioe8NA=="},"directories":{},"publish_time":1400359819496,"_hasShrinkwrap":false,"_cnpm_publish_time":1400359819496,"_cnpmcore_publish_time":"2021-12-13T11:17:12.142Z"},"2.1.3":{"name":"socket.io-parser","version":"2.1.3","description":"socket.io protocol parser","repository":{"type":"git","url":"https://github.com/LearnBoost/socket.io-parser.git"},"dependencies":{"debug":"0.7.4","json3":"3.2.6","emitter":"http://github.com/component/emitter/archive/1.0.1.tar.gz","isarray":"0.0.1"},"devDependencies":{"mocha":"1.16.2","expect.js":"0.2.0","zuul":"1.6.3"},"component":{"scripts":["index.js"]},"scripts":{"test":"make test"},"bugs":{"url":"https://github.com/LearnBoost/socket.io-parser/issues"},"homepage":"https://github.com/LearnBoost/socket.io-parser","_id":"socket.io-parser@2.1.3","dist":{"shasum":"539a6ee23f18c578f52acccd12c8a4e582469aef","size":5468,"noattachment":false,"tarball":"https://registry.npmmirror.com/socket.io-parser/-/socket.io-parser-2.1.3.tgz","integrity":"sha512-mqLMkrc/T2IjM/dVrXAittxl2xZhaVDcb1ji3PNiKpYoSgVrNvCeUqQGXPLufQDfNEqpbnedd2N3250woElRGw=="},"_from":".","_npmVersion":"1.4.3","_npmUser":{"name":"rauchg","email":"rauchg@gmail.com"},"maintainers":[{"name":"darrachequesne","email":"damien.arrachequesne@gmail.com"}],"directories":{},"publish_time":1398649541927,"_hasShrinkwrap":false,"_cnpm_publish_time":1398649541927,"_cnpmcore_publish_time":"2021-12-13T11:17:12.910Z"},"2.1.2":{"name":"socket.io-parser","version":"2.1.2","description":"socket.io protocol parser","repository":{"type":"git","url":"https://github.com/LearnBoost/socket.io-parser.git"},"dependencies":{"debug":"0.7.4","json3":"3.2.6","emitter":"http://github.com/component/emitter/archive/1.0.1.tar.gz","isarray":"0.0.1"},"devDependencies":{"mocha":"1.16.2","expect.js":"0.2.0","zuul":"1.5.4"},"component":{"scripts":["index.js"]},"scripts":{"test":"make test"},"bugs":{"url":"https://github.com/LearnBoost/socket.io-parser/issues"},"homepage":"https://github.com/LearnBoost/socket.io-parser","_id":"socket.io-parser@2.1.2","dist":{"shasum":"876655b9edd555c5bdf7301cedf30a436c67b8b0","size":5003,"noattachment":false,"tarball":"https://registry.npmmirror.com/socket.io-parser/-/socket.io-parser-2.1.2.tgz","integrity":"sha512-eVkt8prgw20H+4P8Iw6tis/w7leiN5EW/93Vq+KL8w+yNJu+QNgaej2Cgt8FhVCVuN3AHyLU50vXvM8cpUR1JQ=="},"_from":".","_npmVersion":"1.4.3","_npmUser":{"name":"rauchg","email":"rauchg@gmail.com"},"maintainers":[{"name":"darrachequesne","email":"damien.arrachequesne@gmail.com"}],"directories":{},"publish_time":1394149096573,"_hasShrinkwrap":false,"_cnpm_publish_time":1394149096573,"_cnpmcore_publish_time":"2021-12-13T11:17:13.646Z"},"2.1.1":{"name":"socket.io-parser","version":"2.1.1","description":"socket.io protocol parser","repository":{"type":"git","url":"https://github.com/LearnBoost/socket.io-parser.git"},"dependencies":{"debug":"0.7.4","json3":"3.2.6","emitter":"http://github.com/component/emitter/archive/1.0.1.tar.gz","isarray":"0.0.1"},"devDependencies":{"mocha":"1.16.2","expect.js":"0.2.0","zuul":"1.5.4"},"component":{"scripts":["index.js"]},"scripts":{"test":"make test"},"bugs":{"url":"https://github.com/LearnBoost/socket.io-parser/issues"},"homepage":"https://github.com/LearnBoost/socket.io-parser","_id":"socket.io-parser@2.1.1","dist":{"shasum":"fbb21a4ccb216e659d77ef2ed8c5f80575a9b8ee","size":4918,"noattachment":false,"tarball":"https://registry.npmmirror.com/socket.io-parser/-/socket.io-parser-2.1.1.tgz","integrity":"sha512-pvzEi0F2RFnVNdh3jRDqZRHhNz75DkJvDQvzWwZVOkptIwamXz1nQ7gWgQg+FZie6CZy1tEazyNHfIZnzbqQLw=="},"_from":".","_npmVersion":"1.4.3","_npmUser":{"name":"rauchg","email":"rauchg@gmail.com"},"maintainers":[{"name":"darrachequesne","email":"damien.arrachequesne@gmail.com"}],"directories":{},"publish_time":1394003948679,"_hasShrinkwrap":false,"_cnpm_publish_time":1394003948679,"_cnpmcore_publish_time":"2021-12-13T11:17:14.381Z"},"2.1.0":{"name":"socket.io-parser","version":"2.1.0","description":"socket.io protocol parser","repository":{"type":"git","url":"https://github.com/LearnBoost/socket.io-parser.git"},"dependencies":{"debug":"0.7.4","json3":"3.2.6","emitter":"http://github.com/component/emitter/archive/1.0.1.tar.gz","isarray":"0.0.1"},"devDependencies":{"mocha":"1.16.2","expect.js":"0.2.0","zuul":"1.5.4"},"component":{"scripts":["index.js"]},"scripts":{"test":"make test"},"bugs":{"url":"https://github.com/LearnBoost/socket.io-parser/issues"},"homepage":"https://github.com/LearnBoost/socket.io-parser","_id":"socket.io-parser@2.1.0","dist":{"shasum":"1c0569a214ec1453a11bc457f472b126b8ec6dd8","size":4835,"noattachment":false,"tarball":"https://registry.npmmirror.com/socket.io-parser/-/socket.io-parser-2.1.0.tgz","integrity":"sha512-ui7Jao4NWvApGkBumtlZaF7U0ArmK2pbz6hwubSxKtQCC7qc3IbbzC7kKG/3TfhWQ2s/AO8wCkBoxQM7pR1FWA=="},"_from":".","_npmVersion":"1.4.3","_npmUser":{"name":"rauchg","email":"rauchg@gmail.com"},"maintainers":[{"name":"darrachequesne","email":"damien.arrachequesne@gmail.com"}],"directories":{},"publish_time":1393691551228,"_hasShrinkwrap":false,"_cnpm_publish_time":1393691551228,"_cnpmcore_publish_time":"2021-12-13T11:17:15.008Z"},"2.0.0":{"name":"socket.io-parser","version":"2.0.0","description":"socket.io protocol parser","repository":{"type":"git","url":"https://github.com/LearnBoost/socket.io-parser.git"},"browser":{"msgpack-js":"msgpack-allbrowsers"},"dependencies":{"debug":"0.7.4","msgpack-js":"0.3.0","json3":"3.2.6","isarray":"0.0.1","base64-js":"0.0.6","msgpack-allbrowsers":"0.0.1"},"devDependencies":{"mocha":"1.16.2","expect.js":"0.2.0"},"component":{"scripts":["index.js"]},"bugs":{"url":"https://github.com/LearnBoost/socket.io-parser/issues"},"homepage":"https://github.com/LearnBoost/socket.io-parser","_id":"socket.io-parser@2.0.0","dist":{"shasum":"2d00f6c0a0a1952bfcca8de7897960c9f8c9e82a","size":3198,"noattachment":false,"tarball":"https://registry.npmmirror.com/socket.io-parser/-/socket.io-parser-2.0.0.tgz","integrity":"sha512-3J35q9xJX33VY9vpmuX+IxSjL0dlDiyX0u8XBlFilxZWKDA7i10wLzRKPvjwJa/rhaecg7RvcEqpbPpph4UAzA=="},"_from":".","_npmVersion":"1.4.2","_npmUser":{"name":"rauchg","email":"rauchg@gmail.com"},"maintainers":[{"name":"darrachequesne","email":"damien.arrachequesne@gmail.com"}],"directories":{},"publish_time":1392857482714,"_hasShrinkwrap":false,"_cnpm_publish_time":1392857482714,"_cnpmcore_publish_time":"2021-12-13T11:17:15.697Z"},"1.1.2":{"name":"socket.io-parser","version":"1.1.2","description":"socket.io protocol parser","repository":{"type":"git","url":"https://github.com/LearnBoost/socket.io-protocol.git"},"dependencies":{"debug":"0.7.4","json3":"3.3.0"},"devDependencies":{"mocha":"1.16.2","expect.js":"0.2.0"},"component":{"scripts":["index.js"]},"bugs":{"url":"https://github.com/LearnBoost/socket.io-protocol/issues"},"homepage":"https://github.com/LearnBoost/socket.io-protocol","_id":"socket.io-parser@1.1.2","dist":{"shasum":"ac3ff22eefe2b5e6b2f546151038d27a22bea6ba","size":3349,"noattachment":false,"tarball":"https://registry.npmmirror.com/socket.io-parser/-/socket.io-parser-1.1.2.tgz","integrity":"sha512-6lgvHYjIJekf1/jPypLP9AtCjMxpoFhl0WnGyQqnD7063QEVrgIFXFExW5JYIfUGiaCiKsRhucth9Numr1cZyg=="},"_from":".","_npmVersion":"1.3.22","_npmUser":{"name":"rauchg","email":"rauchg@gmail.com"},"maintainers":[{"name":"darrachequesne","email":"damien.arrachequesne@gmail.com"}],"directories":{},"publish_time":1392142472802,"_hasShrinkwrap":false,"_cnpm_publish_time":1392142472802,"_cnpmcore_publish_time":"2021-12-13T11:17:16.573Z"},"1.1.1":{"name":"socket.io-parser","version":"1.1.1","description":"socket.io protocol parser","repository":{"type":"git","url":"https://github.com/LearnBoost/socket.io-protocol.git"},"dependencies":{"debug":"0.7.4","json3":"3.2.6"},"devDependencies":{"mocha":"1.16.2","expect.js":"0.2.0"},"component":{"scripts":["index.js"]},"bugs":{"url":"https://github.com/LearnBoost/socket.io-protocol/issues"},"homepage":"https://github.com/LearnBoost/socket.io-protocol","_id":"socket.io-parser@1.1.1","dist":{"shasum":"a7b7c3d799cda79704aa2960eb1dfd153e904fb4","size":3317,"noattachment":false,"tarball":"https://registry.npmmirror.com/socket.io-parser/-/socket.io-parser-1.1.1.tgz","integrity":"sha512-0AUqIe6/+fuWqRYvFX+qX1dAv3EHQWdyxgF6mTdPjZm60i4yBJEhnx7xYaFW0nT4ukJu7b53w8uiTEljF4qACA=="},"_from":".","_npmVersion":"1.3.22","_npmUser":{"name":"rauchg","email":"rauchg@gmail.com"},"maintainers":[{"name":"darrachequesne","email":"damien.arrachequesne@gmail.com"}],"directories":{},"publish_time":1392077183883,"_hasShrinkwrap":false,"_cnpm_publish_time":1392077183883,"_cnpmcore_publish_time":"2021-12-13T11:17:17.483Z"},"1.1.0":{"name":"socket.io-parser","version":"1.1.0","description":"socket.io protocol parser","repository":{"type":"git","url":"https://github.com/LearnBoost/socket.io-protocol.git"},"dependencies":{"debug":"0.6.0","json3":"3.2.6"},"devDependencies":{"mocha":"1.16.2","expect.js":"0.2.0"},"component":{"scripts":["index.js"]},"readmeFilename":"Readme.md","bugs":{"url":"https://github.com/LearnBoost/socket.io-protocol/issues"},"_id":"socket.io-parser@1.1.0","dist":{"tarball":"https://registry.npmmirror.com/socket.io-parser/-/socket.io-parser-1.1.0.tgz","shasum":"3929528fbe7f43bdc9887db037db6fe933376150","size":3279,"noattachment":false,"integrity":"sha512-QAxbA1QUg+sd8SJ0ELdTcw1pN4klPiPU8fB4nXx1ZZVjtDx8iYrh10NLdR3fFcmpJYXLxuWta65nPRSbLd3+YQ=="},"_from":".","_npmVersion":"1.2.30","_npmUser":{"name":"rauchg","email":"rauchg@gmail.com"},"maintainers":[{"name":"darrachequesne","email":"damien.arrachequesne@gmail.com"}],"directories":{},"publish_time":1387997994509,"_hasShrinkwrap":false,"_cnpm_publish_time":1387997994509,"_cnpmcore_publish_time":"2021-12-13T11:17:18.288Z"},"1.0.2":{"name":"socket.io-parser","version":"1.0.2","description":"socket.io protocol parser","devDependencies":{"mocha":"*","expect.js":"*"},"component":{"scripts":["index.js"]},"_id":"socket.io-parser@1.0.2","dist":{"tarball":"https://registry.npmmirror.com/socket.io-parser/-/socket.io-parser-1.0.2.tgz","shasum":"2689acd3b81477f270a112b7ef6ad584370981b5","size":3131,"noattachment":false,"integrity":"sha512-Xi0sqiVDQ4mNVuiU83SbNL6oCwByXbf/E7tXFvzkmOPI2C+gMxoPuciuUS3NQlZKiXJviwBDl9AIyDE9OHuizQ=="},"_npmVersion":"1.1.59","_npmUser":{"name":"rauchg","email":"rauchg@gmail.com"},"maintainers":[{"name":"darrachequesne","email":"damien.arrachequesne@gmail.com"}],"directories":{},"publish_time":1355859107192,"_hasShrinkwrap":false,"_cnpm_publish_time":1355859107192,"_cnpmcore_publish_time":"2021-12-13T11:17:18.978Z"},"1.0.1":{"name":"socket.io-parser","version":"1.0.1","description":"socket.io protocol parser","devDependencies":{"mocha":"*","expect.js":"*"},"component":{"dependencies":{"component/json":"0.0.1"},"scripts":["index.js"]},"_id":"socket.io-parser@1.0.1","dist":{"tarball":"https://registry.npmmirror.com/socket.io-parser/-/socket.io-parser-1.0.1.tgz","shasum":"1e4f458c637d62afb51184832669d4db5c8d95c0","size":3028,"noattachment":false,"integrity":"sha512-zE6aqOcgrSZFQmRkJ22tWH2tu5ouzaYWUES9nzDUg2JKGdXz6Nff/xMbYld9Xb82fCAnwSPl5dwCnD09HU1qtg=="},"_npmVersion":"1.1.59","_npmUser":{"name":"rauchg","email":"rauchg@gmail.com"},"maintainers":[{"name":"darrachequesne","email":"damien.arrachequesne@gmail.com"}],"directories":{},"publish_time":1355097900215,"_hasShrinkwrap":false,"_cnpm_publish_time":1355097900215,"_cnpmcore_publish_time":"2021-12-13T11:17:19.675Z"},"4.1.2":{"name":"socket.io-parser","version":"4.1.2","description":"socket.io protocol parser","repository":{"type":"git","url":"git+https://github.com/socketio/socket.io-parser.git"},"main":"./build/cjs/index.js","module":"./build/esm/index.js","types":"./build/esm/index.d.ts","exports":{"import":{"node":"./build/esm-debug/index.js","default":"./build/esm/index.js"},"require":"./build/cjs/index.js"},"dependencies":{"@socket.io/component-emitter":"~3.0.0","debug":"~4.3.1"},"devDependencies":{"@babel/core":"~7.9.6","@babel/preset-env":"~7.9.6","@types/debug":"^4.1.5","@types/node":"^14.11.1","babelify":"~10.0.0","benchmark":"2.1.2","expect.js":"0.3.1","mocha":"3.2.0","prettier":"^2.1.2","rimraf":"^3.0.2","socket.io-browsers":"^1.0.0","typescript":"^4.0.3","zuul":"3.11.1","zuul-ngrok":"4.0.0"},"scripts":{"compile":"rimraf ./build && tsc && tsc -p tsconfig.esm.json && ./postcompile.sh","test":"npm run format:check && npm run compile && if test \"$BROWSERS\" = \"1\" ; then npm run test:browser; else npm run test:node; fi","test:node":"mocha --reporter dot --bail test/index.js","test:browser":"zuul test/index.js --no-coverage","format:fix":"prettier --write --parser typescript 'lib/**/*.ts' 'test/**/*.js'","format:check":"prettier --check --parser typescript 'lib/**/*.ts' 'test/**/*.js'","prepack":"npm run compile"},"license":"MIT","engines":{"node":">=10.0.0"},"gitHead":"aed252c74260f5cbfbd3f61307905a2277fab7ce","bugs":{"url":"https://github.com/socketio/socket.io-parser/issues"},"homepage":"https://github.com/socketio/socket.io-parser#readme","_id":"socket.io-parser@4.1.2","_nodeVersion":"16.13.1","_npmVersion":"8.1.2","dist":{"integrity":"sha512-j3kk71QLJuyQ/hh5F/L2t1goqzdTL0gvDzuhTuNSwihfuFUrcSji0qFZmJJPtG6Rmug153eOPsUizeirf1IIog==","shasum":"0a97d4fb8e67022158a568450a6e41887e42035e","tarball":"https://registry.npmmirror.com/socket.io-parser/-/socket.io-parser-4.1.2.tgz","fileCount":21,"unpackedSize":49369,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiDe1bACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmoYPg//R6ey3uxzFbQ6yS1BPgjhgJ9UQ61HLgTPdVoyPzWe0jgPVC5W\r\nl9Y5VatvFGSsCrintxU39f5V8h9Q/zSPuAl7lduX40SdtKW6tEEli42BmlSc\r\nikfzW5irLwSkkAhj+9Qnx+hYqkSPyb4XtaptjPVv42GS3hv6jQzHQaJfVebu\r\nECR4oxJgVPUQUlxjQ0+QEAdzL98gdOI13MhpP5EKouV+fQsHSFQPghpxNs6a\r\nQzvPAFEDkpmpIiiRbn5MAticpLgxwVPpylv2HGMVKvBqooiKFdxYbPFJKaP8\r\ng0cexeXwmON5jul+bd/a7wUhbCYiL/tTaAIf17mzPHsU4Y9qsF4ixkikm2hz\r\nu7I8VyXmiRScfYhgu8l2Mjo1ATHyB8HmwhWhLGEfl56ezsR9Lsx62dpiiIVK\r\nZ7A+He4OkyHaaHTS0ttg6fTVjvJwcjBkliVXlF7M3OPWicZwW//vzBH4jVAV\r\nkTFHUgilTdiJHbXiNIVY03FGg6l+B4pM1UMeaSWHAWG3/Uj+0kRSxoDS5yPV\r\nqc05x0vP4w1tzy0CZnCyraZv+8AR8/xEfomqdeXao2yY1oWuJHb+qHYQ7rpI\r\njxfK2XuQYdULgJkmTFD1tT5ioFyJNJI4+oh1UxZutcOEPzlij/ETAsS2tq7j\r\nr+aLJRoonpqbTbV5DjDW1W6aomAAMbJtGqo=\r\n=FZ+R\r\n-----END PGP SIGNATURE-----\r\n","size":6909},"_npmUser":{"name":"darrachequesne","email":"damien.arrachequesne@gmail.com"},"directories":{},"maintainers":[{"name":"rauchg","email":"rauchg@gmail.com"},{"name":"darrachequesne","email":"damien.arrachequesne@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/socket.io-parser_4.1.2_1645079899305_0.03299620089070743"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2022-02-17T06:38:24.942Z"},"4.2.0":{"name":"socket.io-parser","version":"4.2.0","description":"socket.io protocol parser","repository":{"type":"git","url":"git+https://github.com/socketio/socket.io-parser.git"},"main":"./build/cjs/index.js","module":"./build/esm/index.js","types":"./build/esm/index.d.ts","exports":{"import":{"node":"./build/esm-debug/index.js","default":"./build/esm/index.js"},"require":"./build/cjs/index.js"},"dependencies":{"@socket.io/component-emitter":"~3.1.0","debug":"~4.3.1"},"devDependencies":{"@babel/core":"~7.9.6","@babel/preset-env":"~7.9.6","@types/debug":"^4.1.5","@types/node":"^14.11.1","babelify":"~10.0.0","benchmark":"2.1.2","expect.js":"0.3.1","mocha":"3.2.0","prettier":"^2.1.2","rimraf":"^3.0.2","socket.io-browsers":"^1.0.0","typescript":"^4.0.3","zuul":"3.11.1","zuul-ngrok":"4.0.0"},"scripts":{"compile":"rimraf ./build && tsc && tsc -p tsconfig.esm.json && ./postcompile.sh","test":"npm run format:check && npm run compile && if test \"$BROWSERS\" = \"1\" ; then npm run test:browser; else npm run test:node; fi","test:node":"mocha --reporter dot --bail test/index.js","test:browser":"zuul test/index.js --no-coverage","format:fix":"prettier --write --parser typescript 'lib/**/*.ts' 'test/**/*.js'","format:check":"prettier --check --parser typescript 'lib/**/*.ts' 'test/**/*.js'","prepack":"npm run compile"},"license":"MIT","engines":{"node":">=10.0.0"},"gitHead":"c7514b5aa638d8b779c72a1172a2a694e97b15b7","bugs":{"url":"https://github.com/socketio/socket.io-parser/issues"},"homepage":"https://github.com/socketio/socket.io-parser#readme","_id":"socket.io-parser@4.2.0","_nodeVersion":"16.13.1","_npmVersion":"8.1.2","dist":{"integrity":"sha512-tLfmEwcEwnlQTxFB7jibL/q2+q8dlVQzj4JdRLJ/W/G1+Fu9VSxCx1Lo+n1HvXxKnM//dUuD0xgiA7tQf57Vng==","shasum":"3f01e5bc525d94aa52a97ed5cbc12e229bbc4d6b","tarball":"https://registry.npmmirror.com/socket.io-parser/-/socket.io-parser-4.2.0.tgz","fileCount":21,"unpackedSize":51547,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCK95fiNt0TmxMqPC81upA1KVYmFUhouk677OmGbLJY4gIgDBG5ZLSiPbVI5PYP0f4rRAZTG+af8tzS4P3vW1PrOzU="}],"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiXJRDACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmrYNw//ecR3VzRS7ztsMGkHZKVRjkPqx2oI4bOLnj/leHuQWYwd4DNb\r\neJgnbAi4rEC5VVDGbYrcsuhfOGoybasZ3E0nGkw4cZkrWbDt8whRLGcylV5w\r\nqZ2npGqt44zzmhLMZngoVjf9thg9RSo1HiX/VtgH+oF+f46o3y6HcQu/7LG2\r\nJaTHw3LVX6n1LP7gI1M/DPlo2ZrAydJcNfV5Wr7r1kUv7m6RWWTKTcl/ktuq\r\n3Yj4B4ctrJZ3uWLEalDRJNnOep7hLxgBtCPbuir5qOBHJKZalTEoacNUK2g1\r\n4bELRkQwCoFQMvyux2jEl9RNU+UkkOY/fhZxOz7mYO+LGmNGgoV8ekrgzs/w\r\nrhWXD3l2W2eMr3bAPZns/C80fHjkNvfwcyrdt2Ammm8Y7hvQiXJUVLRg/76O\r\nZHPqyOHTYpsL1MBPDe17P9cGMvvUrbuAeTz1sPETktbUey+Mlc4xPJGSOxRK\r\n/i2TMFZTrxDnzA7lEo49oqp6EOOytycKjXcLyd7w99MKJEbJHA9fVz/9HTpk\r\nK7qplVgS0xeV329mkKBYkK4uF+4UrDuYRDLyVwzOwfACympah4ed7eF8qbOL\r\nTpoJikSp7G/RkEzTTco3PwiF2lRYgo8D+dtoUzkxQCCzBIRz3+cnie2lDPG7\r\ndw/1qNybyV8nMpMgBQFTB8kp+0RGOnrZaPg=\r\n=+MHe\r\n-----END PGP SIGNATURE-----\r\n","size":7071},"_npmUser":{"name":"darrachequesne","email":"damien.arrachequesne@gmail.com"},"directories":{},"maintainers":[{"name":"rauchg","email":"rauchg@gmail.com"},{"name":"darrachequesne","email":"damien.arrachequesne@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/socket.io-parser_4.2.0_1650234435434_0.17027970054567643"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2022-04-17T22:27:18.653Z"},"4.2.1":{"name":"socket.io-parser","version":"4.2.1","description":"socket.io protocol parser","repository":{"type":"git","url":"git+https://github.com/socketio/socket.io-parser.git"},"main":"./build/cjs/index.js","module":"./build/esm/index.js","types":"./build/esm/index.d.ts","exports":{"import":{"node":"./build/esm-debug/index.js","default":"./build/esm/index.js"},"require":"./build/cjs/index.js"},"dependencies":{"@socket.io/component-emitter":"~3.1.0","debug":"~4.3.1"},"devDependencies":{"@babel/core":"~7.9.6","@babel/preset-env":"~7.9.6","@types/debug":"^4.1.5","@types/node":"^14.11.1","babelify":"~10.0.0","benchmark":"2.1.2","expect.js":"0.3.1","mocha":"3.2.0","prettier":"^2.1.2","rimraf":"^3.0.2","socket.io-browsers":"^1.0.0","typescript":"^4.0.3","zuul":"3.11.1","zuul-ngrok":"4.0.0"},"scripts":{"compile":"rimraf ./build && tsc && tsc -p tsconfig.esm.json && ./postcompile.sh","test":"npm run format:check && npm run compile && if test \"$BROWSERS\" = \"1\" ; then npm run test:browser; else npm run test:node; fi","test:node":"mocha --reporter dot --bail test/index.js","test:browser":"zuul test/index.js --no-coverage","format:fix":"prettier --write --parser typescript 'lib/**/*.ts' 'test/**/*.js'","format:check":"prettier --check --parser typescript 'lib/**/*.ts' 'test/**/*.js'","prepack":"npm run compile"},"license":"MIT","engines":{"node":">=10.0.0"},"gitHead":"5a2ccff9d1d8fdbadd3faad9290a9e3b165cf9a2","bugs":{"url":"https://github.com/socketio/socket.io-parser/issues"},"homepage":"https://github.com/socketio/socket.io-parser#readme","_id":"socket.io-parser@4.2.1","_nodeVersion":"16.15.1","_npmVersion":"8.11.0","dist":{"integrity":"sha512-V4GrkLy+HeF1F/en3SpUaM+7XxYXpuMUWLGde1kSSh5nQMN4hLrbPIkD+otwh6q9R6NOQBN4AMaOZ2zVjui82g==","shasum":"01c96efa11ded938dcb21cbe590c26af5eff65e5","tarball":"https://registry.npmmirror.com/socket.io-parser/-/socket.io-parser-4.2.1.tgz","fileCount":21,"unpackedSize":52726,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIEQ1LUNMaDP1bKyrkQoR+m10F/Y1IwjXtyDywgU1LKxTAiA7MrSl1kh1I0zInIpTajyD7gY389BXaPqQ4og+OpzDLA=="}],"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiubP+ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2Vmog6A//SRIoEWJWcVk3OPCgqXXdu8yBcSijqlZQ6y2KeA28dbUFqCka\r\nQo4a58+WwBbHnUyr2V9cUf4vSxkVwEdHABjQobPD5t64rl+Ki6rCQfch4iGv\r\nF9U4zvOXFfJhsjZQ8nPAwBZzVYysT6pi+1HoJkReGaxMB8VpNeHgQlyTn1Fj\r\nlyRw0fpMXmIN0fvpVhm8JY9/xk2crs7cFHRodm3850ic+nBpftEqCKxKaBHv\r\n3JfQ9Yg9XViVGpjqK/ap516UxwJzoiMUXJu56RIOn0GX65Rkcwd9v5hHRkeY\r\noqZaGbDc6U+tJxfDgN35SRsq+lyy4Q3i/axXdx1wX7YtBvMWXpSyLhllHll3\r\nUaBSzrttDy+bTRzCkjZniVjz1hxaYzzGisxLMCu0uvrO0KTOShIyxqM6qzf2\r\nfDh09eKZI+5G1hBYAKjeEUfVyNKJyE5EdoXnj5wCOg29h7g7yGjodswslMvm\r\nkjVmnnwWWf+uaXLxpj3MLOZEsiLR39QRG8bpOLP4lmXvMZu6yV8htDsbpImv\r\nHW2+qaAXyydnaV/+jd55daL237V6CdrJ1LQtV8Qv/GAjbCC+aCueZrdLpe2r\r\n05OUkpvTUlF27m/dqRkjhQfUQLu+k2m8LdyURjMuR9V/LcMVGQYn+sEuL91V\r\n87OIY8wZqYMMvwGAAQ7d+bXdejs7/OsiIWI=\r\n=JVEi\r\n-----END PGP SIGNATURE-----\r\n","size":7163},"_npmUser":{"name":"darrachequesne","email":"damien.arrachequesne@gmail.com"},"directories":{},"maintainers":[{"name":"rauchg","email":"rauchg@gmail.com"},{"name":"darrachequesne","email":"damien.arrachequesne@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/socket.io-parser_4.2.1_1656337406296_0.2888559866301885"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2022-06-27T14:16:23.524Z"},"4.0.5":{"name":"socket.io-parser","version":"4.0.5","description":"socket.io protocol parser","repository":{"type":"git","url":"git+https://github.com/socketio/socket.io-parser.git"},"main":"./dist/index.js","types":"./dist/index.d.ts","dependencies":{"@types/component-emitter":"^1.2.10","component-emitter":"~1.3.0","debug":"~4.3.1"},"devDependencies":{"@babel/core":"~7.9.6","@babel/preset-env":"~7.9.6","@types/debug":"^4.1.5","@types/node":"^14.11.1","babelify":"~10.0.0","benchmark":"2.1.2","expect.js":"0.3.1","mocha":"3.2.0","prettier":"^2.1.2","rimraf":"^3.0.2","socket.io-browsers":"^1.0.0","typescript":"^4.0.3","zuul":"3.11.1","zuul-ngrok":"4.0.0"},"scripts":{"compile":"rimraf ./dist && tsc","test":"npm run format:check && npm run compile && if test \"$BROWSERS\" = \"1\" ; then npm run test:browser; else npm run test:node; fi","test:node":"mocha --reporter dot --bail test/index.js","test:browser":"zuul test/index.js --no-coverage","format:fix":"prettier --write --parser typescript 'lib/**/*.ts' 'test/**/*.js'","format:check":"prettier --check --parser typescript 'lib/**/*.ts' 'test/**/*.js'","prepack":"npm run compile"},"license":"MIT","engines":{"node":">=10.0.0"},"readmeFilename":"Readme.md","gitHead":"f3329eb5a46b215a3fdf91b6008c56cf177a4124","bugs":{"url":"https://github.com/socketio/socket.io-parser/issues"},"homepage":"https://github.com/socketio/socket.io-parser#readme","_id":"socket.io-parser@4.0.5","_nodeVersion":"16.15.1","_npmVersion":"8.11.0","dist":{"integrity":"sha512-sNjbT9dX63nqUFIOv95tTVm6elyIU4RvB1m8dOeZt+IgWwcWklFDOdmGcfo3zSiRsnR/3pJkjY5lfoGqEe4Eig==","shasum":"cb404382c32324cc962f27f3a44058cf6e0552df","tarball":"https://registry.npmmirror.com/socket.io-parser/-/socket.io-parser-4.0.5.tgz","fileCount":9,"unpackedSize":21098,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIE9izuDpafH4dbOcZAdaSR1qQnyhMfxEuk3P6ntBmv1KAiEA09MQBdGV2Yh4LT17P3Px7zn3GBu0Z5dYnfJC6AUAdW0="}],"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJiubaiACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmpJVQ/9HUVpXujuDsY+KW2BiKnW0h3lXaW9XdyJvWGfVmjJXaOYqTq2\r\nexQ4ekS6PaoVTROC3++DRd8NDkvgzpDM5lUUlYfOahO0I0VyZyh5/sK6W50f\r\nJ5fVYIaWlgOp92ZmNh2EoHN6z9xs7ENH7AcrhDImsgy+1Z7HzuhpwXC7qrF+\r\nJXLecm/AqZEaIYK/g8FpmByB71lsaG87062Vd1wABiT51VzxwH1DxCe4ElIX\r\nN7tI1zRZ9pRP9FjnWmD/7F/ZHQYJ5rfe+wJzhhGECHhTR2s8/c+5XyJlLwvm\r\n68w9J1o665Ai258utMV5mhVbWlziL94qBFXJl+KYqokw6n0YTGrb6XTmc3kR\r\nHclHg5e3D3STLCaAsLiJZSVVlNp+Hdu58YGqFcmXA8kHgazo9shdzJRtA+x3\r\n+nNYs02DOQgVnN11gJuEme8nxO95rkbBzSyp/Gl+p+bXohxPTntrG43fMjwp\r\njl34PViuvrnfzwB4myh00ocJZ8TcU+4EzjpJruWkhUr8/JZ80ER6KwQZuSSW\r\nDnxB71HD+1q+rTK+/8UNuBXjQvP7+NCbAmj2ZVH/k5KE58UnHt2fUz66eEhZ\r\nrulH7iG6gLM+tjleW8JG1uQfzRXZ1Asazco3WSlDU9kcayaanMQcMN2GIvSy\r\nDCBp0jYGx+e7Pmy2gTrAnGT808x5FAYjebk=\r\n=jIkN\r\n-----END PGP SIGNATURE-----\r\n","size":5947},"_npmUser":{"name":"darrachequesne","email":"damien.arrachequesne@gmail.com"},"directories":{},"maintainers":[{"name":"rauchg","email":"rauchg@gmail.com"},{"name":"darrachequesne","email":"damien.arrachequesne@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/socket.io-parser_4.0.5_1656338082334_0.9654632120854212"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2022-06-27T14:16:23.618Z"},"3.4.2":{"name":"socket.io-parser","version":"3.4.2","description":"socket.io protocol parser","repository":{"type":"git","url":"git+https://github.com/socketio/socket.io-parser.git"},"dependencies":{"debug":"~4.1.0","component-emitter":"1.2.1","isarray":"2.0.1"},"devDependencies":{"@babel/core":"~7.9.6","@babel/preset-env":"~7.9.6","babelify":"~10.0.0","benchmark":"2.1.2","expect.js":"0.3.1","mocha":"3.2.0","socket.io-browsers":"^1.0.0","zuul":"3.11.1","zuul-ngrok":"4.0.0"},"scripts":{"test":"make test"},"license":"MIT","engines":{"node":">=10.0.0"},"readmeFilename":"Readme.md","gitHead":"4b3c191bc411578099c8dd35499d8c7a75860192","bugs":{"url":"https://github.com/socketio/socket.io-parser/issues"},"homepage":"https://github.com/socketio/socket.io-parser#readme","_id":"socket.io-parser@3.4.2","_nodeVersion":"16.15.1","_npmVersion":"8.11.0","dist":{"integrity":"sha512-QFZBaZDNqZXeemwejc7D39jrq2eGK/qZuVDiMPKzZK1hLlNvjGilGt4ckfQZeVX4dGmuPzCytN9ZW1nQlEWjgA==","shasum":"d70a69f34900d8290a511995d26f581828a49065","tarball":"https://registry.npmmirror.com/socket.io-parser/-/socket.io-parser-3.4.2.tgz","fileCount":6,"unpackedSize":17020,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCaAkY5lck91Wsh3RAk0Ri09Lo7ZtLva6d7AKZnu6fjdAIhAPBnyM5YG/nraXOt9g/FiFUOGpwOY0HYCbwBDK1+tB31"}],"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJja36bACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmrOZA//VLWyUV9d++wbXxAqFADteNvyZWQkpupeIpC7ER5LLBWP7lIX\r\nUZvQQaTPtF4v0PNuV4Aila7BLIyLZmdHqRL74sWgSx5o/Z5Q0eY8CFoAd10d\r\nk3PwpBbJ3dfGFu0L1mBR5v8hcuF7Ug/KHr0KT+dgKuqxFO6gHa5dsGdaKUbC\r\n8l7g587fyFMv4Hbf0x7LQH73UyMTEDtujsMyb9pH2aRJ/OX6bmaDAZUQ4BM1\r\nLfd37zkwxpqHQwlBi+ePdBrxrE73T/+9AAw3XprHZ0bFC6qMK+P/910NLWKk\r\nx83LTht90J8Rd6cwAk2z0Yv8mlqKTkOCAtZHHLf5uv75yxMCXI7o2nEYYUTb\r\n1vVAwbS7Kcp4BFsx08jlNF6enmwSuaLvzLamgwv+7TvSs3DXtqnv6iVqKHxV\r\ndP3N9KfZejyCnVEVaSR93LifhIV22jjXXAozh33wbDLe8lN4/QiN2O0DgBjH\r\nUfH50RHwz2ySUTlbsUdErW3IqYyZReLGesqBrLs3Mcmu60YH8q6ZVoaJq79N\r\neXM7B7rihmZ37ADqZ1TTzTphmLIWCFRKZ15QJ6dZKQxVErpp1JDGiYRKRjlC\r\n09fab12GOgAIXtdwWD5Uw8+SywARSCxeVoX1W85a1no6H7SPnHEi7TeOPSnh\r\nhJ+Kp3QQgPpWEk51awQ67GH/mn4nsbaHKRY=\r\n=Myup\r\n-----END PGP SIGNATURE-----\r\n","size":5529},"_npmUser":{"name":"darrachequesne","email":"damien.arrachequesne@gmail.com"},"directories":{},"maintainers":[{"name":"rauchg","email":"rauchg@gmail.com"},{"name":"darrachequesne","email":"damien.arrachequesne@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/socket.io-parser_3.4.2_1667989146984_0.1535231038422853"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2022-11-09T11:21:40.946Z"},"3.3.3":{"name":"socket.io-parser","version":"3.3.3","description":"socket.io protocol parser","repository":{"type":"git","url":"git+https://github.com/Automattic/socket.io-parser.git"},"dependencies":{"component-emitter":"~1.3.0","debug":"~3.1.0","isarray":"2.0.1"},"devDependencies":{"benchmark":"2.1.2","expect.js":"0.3.1","mocha":"3.2.0","socket.io-browsers":"^1.0.0","zuul":"3.11.1","zuul-ngrok":"4.0.0"},"scripts":{"test":"make test"},"license":"MIT","readmeFilename":"Readme.md","gitHead":"cd11e38e1a3e2146617bc586f86512605607b212","bugs":{"url":"https://github.com/Automattic/socket.io-parser/issues"},"homepage":"https://github.com/Automattic/socket.io-parser#readme","_id":"socket.io-parser@3.3.3","_nodeVersion":"16.15.1","_npmVersion":"8.11.0","dist":{"integrity":"sha512-qOg87q1PMWWTeO01768Yh9ogn7chB9zkKtQnya41Y355S0UmpXgpcrFwAgjYJxu9BdKug5r5e9YtVSeWhKBUZg==","shasum":"3a8b84823eba87f3f7624e64a8aaab6d6318a72f","tarball":"https://registry.npmmirror.com/socket.io-parser/-/socket.io-parser-3.3.3.tgz","fileCount":6,"unpackedSize":16889,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIC+qyDk9dsgiqvDbY6kM91+RcJv/bjtfW02vpOsJ+xk1AiAVUEq2hVuiOD9wsfq5AmXuJmsVTgP8UsYqXnlsRCmHNQ=="}],"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJja392ACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmoIuA/8ColzeWMvKew9BPc66CXCVh7Fuxrc8mjbGxJ5rLTwJq/dZFJ/\r\nkhkGc6tLVqn5R1+kOCi4tlVUhWZd6QVXfxWF7k66TQ1dO+nJMNF7zU/rNA0u\r\nFoBSiFBDlKlx5i1c90nEStZJp+mPJcqLvLwzsIqv9Aurz+uM6ODqiUaiM/2u\r\n3LcvtTjjlURyYp1JdRm9eksTL2q09gVBxq3zfYqbT8Uxl3++cMoWh4ZdO8tC\r\nY8Bd43Qa+Kee/Fqc7xiJmaFeQnUFqbq0RWvb4I7RS65QJRZlBtM/3NKc/Ehb\r\nzKqNTi5j6EOT0MuhzGGoMOvpGIMJ40iQVmlfKBjDz0yKbL/YthnAdbRGhyut\r\nIWBKwut9eEZUzQcQodc3yMgLoxRae3SkYpS15ndRMB+RiChqsdB+ISuG7zIg\r\n/d5kOfxnW16NbiYdtyfjzWjHERjnplPG3W3r2kB4uHDJ0j+gLIvxrR9ZG6G4\r\nkVy4H1v+jLRWeyLHlfObNQcpvVXoRQByU27EkAsaSkqnxhrQyXRwUTfj172z\r\nDupsH7ACGJzQ20/zV+1wKGymbCjfo5BVMrPnKMjt1VMP9xAorbji7Au+EhCJ\r\nDbrH8mTnbRJoaOi7p9yKBxFG/aqNKR7qpRLsVrR2g+t5/W2rr3OJ+M9iEYKp\r\nRMBpRSR7Rn1WtkS0zsasbk9do8Fe/0v/z/A=\r\n=chqY\r\n-----END PGP SIGNATURE-----\r\n","size":5474},"_npmUser":{"name":"darrachequesne","email":"damien.arrachequesne@gmail.com"},"directories":{},"maintainers":[{"name":"rauchg","email":"rauchg@gmail.com"},{"name":"darrachequesne","email":"damien.arrachequesne@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/socket.io-parser_3.3.3_1667989365907_0.4022280656448094"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2022-11-09T11:21:41.057Z"},"4.2.2":{"name":"socket.io-parser","version":"4.2.2","description":"socket.io protocol parser","repository":{"type":"git","url":"git+https://github.com/socketio/socket.io-parser.git"},"main":"./build/cjs/index.js","module":"./build/esm/index.js","types":"./build/esm/index.d.ts","exports":{"import":{"node":"./build/esm-debug/index.js","default":"./build/esm/index.js"},"require":"./build/cjs/index.js"},"dependencies":{"@socket.io/component-emitter":"~3.1.0","debug":"~4.3.1"},"devDependencies":{"@babel/core":"~7.9.6","@babel/preset-env":"~7.9.6","@babel/register":"^7.18.9","@types/debug":"^4.1.5","@types/node":"^14.11.1","@wdio/cli":"^7.26.0","@wdio/local-runner":"^7.26.0","@wdio/mocha-framework":"^7.26.0","@wdio/sauce-service":"^7.26.0","@wdio/spec-reporter":"^7.26.0","benchmark":"2.1.2","expect.js":"0.3.1","mocha":"^10.1.0","prettier":"^2.1.2","rimraf":"^3.0.2","typescript":"^4.0.3","wdio-geckodriver-service":"^4.0.0"},"scripts":{"compile":"rimraf ./build && tsc && tsc -p tsconfig.esm.json && ./postcompile.sh","test":"npm run format:check && npm run compile && if test \"$BROWSERS\" = \"1\" ; then npm run test:browser; else npm run test:node; fi","test:node":"mocha --reporter dot --bail test/index.js","test:browser":"wdio","format:fix":"prettier --write --parser typescript '*.js' 'lib/**/*.ts' 'test/**/*.js'","format:check":"prettier --check --parser typescript '*.js' 'lib/**/*.ts' 'test/**/*.js'","prepack":"npm run compile"},"license":"MIT","engines":{"node":">=10.0.0"},"gitHead":"28dd6685021353b26a4b022e25b453c627d0a7e8","bugs":{"url":"https://github.com/socketio/socket.io-parser/issues"},"homepage":"https://github.com/socketio/socket.io-parser#readme","_id":"socket.io-parser@4.2.2","_nodeVersion":"16.15.1","_npmVersion":"8.11.0","dist":{"integrity":"sha512-DJtziuKypFkMMHCm2uIshOYC7QaylbtzQwiMYDuCKy3OPkjLzu4B2vAhTlqipRHHzrI0NJeBAizTK7X+6m1jVw==","shasum":"1dd384019e25b7a3d374877f492ab34f2ad0d206","tarball":"https://registry.npmmirror.com/socket.io-parser/-/socket.io-parser-4.2.2.tgz","fileCount":21,"unpackedSize":53624,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIF+HT4UBh+cXM/GwZsCFR28MtLfyQ+/HYuHzDvARAFzNAiEA1p2TsX+4xI+D+BzYSXne0zCNMB1xQBX+QP+weLJBo+E="}],"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v4.10.10\r\nComment: https://openpgpjs.org\r\n\r\nwsFzBAEBCAAGBQJjyRJTACEJED1NWxICdlZqFiEECWMYAoorWMhJKdjhPU1b\r\nEgJ2VmptUw//d0l5RfROd6XdQowFTcb4C1QuiZPJqoQlSBJ+1gM5/XIidCrR\r\n9eorFAbt1qteCnoTs5hMiLo9r0ufXwI03st+rYhsjT6x88SwQIfZUYQlMGKj\r\nGHejzLXufGDOVQs0sG7Ur9Dnsid48r5XYldVb8sbosi0E2Gcvlu3Wuek2cqn\r\nmzhrFzKQ8KbH1Lx2WcgfG/l2asKC5t9ffa0WGzGgByCSESBwY/e4f8vgsiv9\r\nZ6gxis8X6ihSpKgH2JsdJ53qneqWIXG0PYKLN3cyv7G1VJnbHHSIO1k9lwjM\r\nN1Haov+aACNd6qX+/xfqBIW/sHl2sQt3VuKwy+pmBZaV7aJCa8f+aWU7fSMi\r\nXLaIqDH/5Smp5X9/qWuSa0cwFatmD0Xhk8lSzNT+vEqysvD+PoyiaNQb4Yec\r\nPpMvIGcTti8Cu3OTPv1GJ4ToIu0aiy3XxdOHjFOGTTCPRbRJE5GXrbgAjxyE\r\nX5HoGDex2tfprFCTrhFoSUcPd15IIxI4Ft/BBSbZpAL8n8c6Q/Op9IcrdMD4\r\nYB1zza1yQ2v8pMlKZoLbg5i8pQODQmc5QZEfgMNj/Un5GFR6YYQjQKgrt4hs\r\nbI33n9OLq8nXHMdpoUt0kCl9B8HlnGP+Up1uHclvmIxHg6tgirWWkq9J8VfW\r\nEVLzSwTmTTKEuZbKSR0whrZ1+PQxa0VO2MQ=\r\n=Fj+C\r\n-----END PGP SIGNATURE-----\r\n","size":7288},"_npmUser":{"name":"darrachequesne","email":"damien.arrachequesne@gmail.com"},"directories":{},"maintainers":[{"name":"rauchg","email":"rauchg@gmail.com"},{"name":"darrachequesne","email":"damien.arrachequesne@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/socket.io-parser_4.2.2_1674121811361_0.8671322070825747"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2023-01-19T09:50:11.518Z","publish_time":1674121811518},"4.2.3":{"name":"socket.io-parser","version":"4.2.3","description":"socket.io protocol parser","repository":{"type":"git","url":"git+https://github.com/socketio/socket.io-parser.git"},"main":"./build/cjs/index.js","module":"./build/esm/index.js","types":"./build/esm/index.d.ts","exports":{"import":{"node":"./build/esm-debug/index.js","default":"./build/esm/index.js"},"require":"./build/cjs/index.js"},"dependencies":{"@socket.io/component-emitter":"~3.1.0","debug":"~4.3.1"},"devDependencies":{"@babel/core":"~7.9.6","@babel/preset-env":"~7.9.6","@babel/register":"^7.18.9","@types/debug":"^4.1.5","@types/node":"^14.11.1","@wdio/cli":"^7.26.0","@wdio/local-runner":"^7.26.0","@wdio/mocha-framework":"^7.26.0","@wdio/sauce-service":"^7.26.0","@wdio/spec-reporter":"^7.26.0","benchmark":"2.1.2","expect.js":"0.3.1","mocha":"^10.1.0","prettier":"^2.1.2","rimraf":"^3.0.2","typescript":"^4.0.3","wdio-geckodriver-service":"^4.0.0"},"scripts":{"compile":"rimraf ./build && tsc && tsc -p tsconfig.esm.json && ./postcompile.sh","test":"npm run format:check && npm run compile && if test \"$BROWSERS\" = \"1\" ; then npm run test:browser; else npm run test:node; fi","test:node":"mocha --reporter dot --bail test/index.js","test:browser":"wdio","format:fix":"prettier --write --parser typescript '*.js' 'lib/**/*.ts' 'test/**/*.js'","format:check":"prettier --check --parser typescript '*.js' 'lib/**/*.ts' 'test/**/*.js'","prepack":"npm run compile"},"license":"MIT","engines":{"node":">=10.0.0"},"gitHead":"8f4d929b63f2384597ba92770d400034f7c13591","bugs":{"url":"https://github.com/socketio/socket.io-parser/issues"},"homepage":"https://github.com/socketio/socket.io-parser#readme","_id":"socket.io-parser@4.2.3","_nodeVersion":"16.15.1","_npmVersion":"8.11.0","dist":{"integrity":"sha512-JMafRntWVO2DCJimKsRTh/wnqVvO4hrfwOqtO7f+uzwsQMuxO6VwImtYxaQ+ieoyshWOTJyV0fA21lccEXRPpQ==","shasum":"926bcc6658e2ae0883dc9dee69acbdc76e4e3667","tarball":"https://registry.npmmirror.com/socket.io-parser/-/socket.io-parser-4.2.3.tgz","fileCount":24,"unpackedSize":56856,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCAUkNo1htuyheH8LyVGuwn0T/kG3mXOORLOWik8Ns4EAIhAIaftw8PQYh45d5DM8LMwPkcFab5S3Q9VxupBR//RyP7"}],"size":7364},"_npmUser":{"name":"darrachequesne","email":"damien.arrachequesne@gmail.com"},"directories":{},"maintainers":[{"name":"rauchg","email":"rauchg@gmail.com"},{"name":"darrachequesne","email":"damien.arrachequesne@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/socket.io-parser_4.2.3_1684736688763_0.7893118532802346"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2023-05-22T06:24:48.950Z","publish_time":1684736688950,"_source_registry_name":"default"},"3.4.3":{"name":"socket.io-parser","version":"3.4.3","description":"socket.io protocol parser","repository":{"type":"git","url":"git+https://github.com/socketio/socket.io-parser.git"},"dependencies":{"debug":"~4.1.0","component-emitter":"1.2.1","isarray":"2.0.1"},"devDependencies":{"@babel/core":"~7.9.6","@babel/preset-env":"~7.9.6","babelify":"~10.0.0","benchmark":"2.1.2","expect.js":"0.3.1","mocha":"3.2.0","socket.io-browsers":"^1.0.0","zuul":"3.11.1","zuul-ngrok":"4.0.0"},"scripts":{"test":"make test"},"license":"MIT","engines":{"node":">=10.0.0"},"gitHead":"060339a206268d8860d82aa3c0766e867ce5bb8a","bugs":{"url":"https://github.com/socketio/socket.io-parser/issues"},"homepage":"https://github.com/socketio/socket.io-parser#readme","_id":"socket.io-parser@3.4.3","_nodeVersion":"16.15.1","_npmVersion":"8.11.0","dist":{"integrity":"sha512-1rE4dZN3kCI/E5wixd393hmbqa78vVpkKmnEJhLeWoS/C5hbFYAbcSfnWoaVH43u9ToUVtzKjguxEZq+1XZfCQ==","shasum":"b19bdaad38ed39fd68fba3f9d86768f667df0c29","tarball":"https://registry.npmmirror.com/socket.io-parser/-/socket.io-parser-3.4.3.tgz","fileCount":6,"unpackedSize":17485,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDsOLWbEFlJua4qzDJPQR8IK80QzoONGnF+kissrGTp9gIhAJa5guh301j5wOFCA0xb4pi3BNT0nhgis3GwKQFuITI8"}],"size":5652},"_npmUser":{"name":"darrachequesne","email":"damien.arrachequesne@gmail.com"},"directories":{},"maintainers":[{"name":"rauchg","email":"rauchg@gmail.com"},{"name":"darrachequesne","email":"damien.arrachequesne@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/socket.io-parser_3.4.3_1684742478510_0.6371055722190264"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2023-05-22T08:01:18.682Z","publish_time":1684742478682,"_source_registry_name":"default"},"4.2.4":{"name":"socket.io-parser","version":"4.2.4","description":"socket.io protocol parser","repository":{"type":"git","url":"git+https://github.com/socketio/socket.io-parser.git"},"main":"./build/cjs/index.js","module":"./build/esm/index.js","types":"./build/esm/index.d.ts","exports":{"import":{"node":"./build/esm-debug/index.js","default":"./build/esm/index.js"},"require":"./build/cjs/index.js"},"dependencies":{"@socket.io/component-emitter":"~3.1.0","debug":"~4.3.1"},"devDependencies":{"@babel/core":"~7.9.6","@babel/preset-env":"~7.9.6","@babel/register":"^7.18.9","@types/debug":"^4.1.5","@types/node":"^14.11.1","@wdio/cli":"^7.26.0","@wdio/local-runner":"^7.26.0","@wdio/mocha-framework":"^7.26.0","@wdio/sauce-service":"^7.26.0","@wdio/spec-reporter":"^7.26.0","benchmark":"2.1.2","expect.js":"0.3.1","mocha":"^10.1.0","prettier":"^2.1.2","rimraf":"^3.0.2","typescript":"^4.0.3","wdio-geckodriver-service":"^4.0.0"},"scripts":{"compile":"rimraf ./build && tsc && tsc -p tsconfig.esm.json && ./postcompile.sh","test":"npm run format:check && npm run compile && if test \"$BROWSERS\" = \"1\" ; then npm run test:browser; else npm run test:node; fi","test:node":"mocha --reporter dot --bail test/index.js","test:browser":"wdio","format:fix":"prettier --write --parser typescript '*.js' 'lib/**/*.ts' 'test/**/*.js'","format:check":"prettier --check --parser typescript '*.js' 'lib/**/*.ts' 'test/**/*.js'","prepack":"npm run compile"},"license":"MIT","engines":{"node":">=10.0.0"},"gitHead":"164ba2a11edc34c2f363401e9768f9a8541a8b89","bugs":{"url":"https://github.com/socketio/socket.io-parser/issues"},"homepage":"https://github.com/socketio/socket.io-parser#readme","_id":"socket.io-parser@4.2.4","_nodeVersion":"16.15.1","_npmVersion":"8.11.0","dist":{"integrity":"sha512-/GbIKmo8ioc+NIWIhwdecY0ge+qVBSMdgxGygevmdHj24bsfgtCmcUUcQ5ZzcylGFHsN3k4HB4Cgkl96KVnuew==","shasum":"c806966cf7270601e47469ddeec30fbdfda44c83","tarball":"https://registry.npmmirror.com/socket.io-parser/-/socket.io-parser-4.2.4.tgz","fileCount":24,"unpackedSize":58497,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIDD13o4FAIop03TYL5FgWVay07F+bmKdlHfBTMkMF4ehAiAeIVvRBdWxzWakZ49YsgA+HUQQ9rt8Dj8PXdX8nqeWPQ=="}],"size":7660},"_npmUser":{"name":"darrachequesne","email":"damien.arrachequesne@gmail.com"},"directories":{},"maintainers":[{"name":"rauchg","email":"rauchg@gmail.com"},{"name":"darrachequesne","email":"damien.arrachequesne@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/socket.io-parser_4.2.4_1685523443697_0.09160402228678488"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2023-05-31T08:57:23.862Z","publish_time":1685523443862,"_source_registry_name":"default"},"3.3.4":{"name":"socket.io-parser","version":"3.3.4","description":"socket.io protocol parser","repository":{"type":"git","url":"git+https://github.com/Automattic/socket.io-parser.git"},"dependencies":{"component-emitter":"~1.3.0","debug":"~3.1.0","isarray":"2.0.1"},"devDependencies":{"benchmark":"2.1.2","expect.js":"0.3.1","mocha":"3.2.0","socket.io-browsers":"^1.0.0","zuul":"3.11.1","zuul-ngrok":"4.0.0"},"scripts":{"test":"make test"},"license":"MIT","gitHead":"1e9ebc6b7fef7716176551f1725191e1362453a9","bugs":{"url":"https://github.com/Automattic/socket.io-parser/issues"},"homepage":"https://github.com/Automattic/socket.io-parser#readme","_id":"socket.io-parser@3.3.4","_nodeVersion":"20.3.0","_npmVersion":"9.6.7","dist":{"integrity":"sha512-z/pFQB3x+EZldRRzORYW1vwVO8m/3ILkswtnpoeU6Ve3cbMWkmHEWDAVJn4QJtchiiFTo5j7UG2QvwxvaA9vow==","shasum":"ab84236b6d06eaf1fb68b179b3a7501195886cc3","tarball":"https://registry.npmmirror.com/socket.io-parser/-/socket.io-parser-3.3.4.tgz","fileCount":6,"unpackedSize":17354,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDnx+4/+uTjmC+ffUoZR66ZTsWh9hn5xGApM3NJqCrFDQIgTYI52lAH2RrKwbFE6wsKuOr1jE2/Dj8tXiY4nQQWeVg="}],"size":5604},"_npmUser":{"name":"darrachequesne","email":"damien.arrachequesne@gmail.com"},"directories":{},"maintainers":[{"name":"rauchg","email":"rauchg@gmail.com"},{"name":"darrachequesne","email":"damien.arrachequesne@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/socket.io-parser_3.3.4_1721639370745_0.7522774378099153"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2024-07-22T09:09:30.910Z","publish_time":1721639370910,"_source_registry_name":"default"},"4.2.5":{"name":"socket.io-parser","version":"4.2.5","description":"socket.io protocol parser","homepage":"https://github.com/socketio/socket.io/tree/main/packages/socket.io-client#readme","repository":{"type":"git","url":"git+https://github.com/socketio/socket.io.git"},"bugs":{"url":"https://github.com/socketio/socket.io/issues"},"main":"./build/cjs/index.js","module":"./build/esm/index.js","types":"./build/esm/index.d.ts","exports":{"import":{"node":"./build/esm-debug/index.js","development":"./build/esm-debug/index.js","default":"./build/esm/index.js"},"require":"./build/cjs/index.js"},"dependencies":{"@socket.io/component-emitter":"~3.1.0","debug":"~4.4.1"},"scripts":{"compile":"rimraf ./build && tsc && tsc -p tsconfig.esm.json && ./postcompile.sh","test":"npm run format:check && npm run compile && if test \"$BROWSERS\" = \"1\" ; then npm run test:browser; else npm run test:node; fi","test:node":"mocha --reporter dot --bail test/index.js","test:browser":"wdio","format:fix":"prettier --write --parser typescript '*.js' 'lib/**/*.ts' 'test/**/*.js'","format:check":"prettier --check --parser typescript '*.js' 'lib/**/*.ts' 'test/**/*.js'","prepack":"npm run compile"},"license":"MIT","engines":{"node":">=10.0.0"},"gitHead":"ee9aac31342da4ccad8e9bfe5b98081701037f32","_id":"socket.io-parser@4.2.5","_nodeVersion":"24.12.0","_npmVersion":"11.6.2","dist":{"integrity":"sha512-bPMmpy/5WWKHea5Y/jYAP6k74A+hvmRCQaJuJB6I/ML5JZq/KfNieUVo/3Mh7SAqn7TyFdIo6wqYHInG1MU1bQ==","shasum":"3f41b8d369129a93268f2abecba94b5292850099","tarball":"https://registry.npmmirror.com/socket.io-parser/-/socket.io-parser-4.2.5.tgz","fileCount":24,"unpackedSize":62558,"attestations":{"url":"https://registry.npmjs.org/-/npm/v1/attestations/socket.io-parser@4.2.5","provenance":{"predicateType":"https://slsa.dev/provenance/v1"}},"signatures":[{"keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U","sig":"MEUCIDxis5cIEbuyCW/QaOqaHMWu7Izh0Bj3lNDT7LV5FdMxAiEA922vKDBAXs+16Ptm85veEr0cmcL+9AZyj7TGJN2eHoY="}],"size":7860},"_npmUser":{"name":"GitHub Actions","email":"npm-oidc-no-reply@github.com","trustedPublisher":{"id":"github","oidcConfigId":"oidc:31e33aa9-513e-461c-90ed-24cd65e19f1b"}},"directories":{},"maintainers":[{"name":"rauchg","email":"rauchg@gmail.com"},{"name":"darrachequesne","email":"damien.arrachequesne@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages-npm-production","tmp":"tmp/socket.io-parser_4.2.5_1766489356065_0.9904628679854592"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2025-12-23T11:29:16.213Z","publish_time":1766489356213,"_source_registry_name":"default"},"4.2.6":{"name":"socket.io-parser","version":"4.2.6","description":"socket.io protocol parser","homepage":"https://github.com/socketio/socket.io/tree/main/packages/socket.io-client#readme","repository":{"type":"git","url":"git+https://github.com/socketio/socket.io.git"},"bugs":{"url":"https://github.com/socketio/socket.io/issues"},"main":"./build/cjs/index.js","module":"./build/esm/index.js","types":"./build/esm/index.d.ts","exports":{"import":{"node":"./build/esm-debug/index.js","development":"./build/esm-debug/index.js","default":"./build/esm/index.js"},"require":"./build/cjs/index.js"},"dependencies":{"@socket.io/component-emitter":"~3.1.0","debug":"~4.4.1"},"scripts":{"compile":"rimraf ./build && tsc && tsc -p tsconfig.esm.json && ./postcompile.sh","test":"npm run format:check && npm run compile && if test \"$BROWSERS\" = \"1\" ; then npm run test:browser; else npm run test:node; fi","test:node":"mocha --reporter dot --bail test/index.js","test:browser":"wdio","format:fix":"prettier --write --parser typescript '*.js' 'lib/**/*.ts' 'test/**/*.js'","format:check":"prettier --check --parser typescript '*.js' 'lib/**/*.ts' 'test/**/*.js'","prepack":"npm run compile"},"license":"MIT","engines":{"node":">=10.0.0"},"gitHead":"522edcdbb89da5eb647abb93c73229d1e91c304f","_id":"socket.io-parser@4.2.6","_nodeVersion":"24.14.0","_npmVersion":"11.9.0","dist":{"integrity":"sha512-asJqbVBDsBCJx0pTqw3WfesSY0iRX+2xzWEWzrpcH7L6fLzrhyF8WPI8UaeM4YCuDfpwA/cgsdugMsmtz8EJeg==","shasum":"19156bf179af3931abd05260cfb1491822578a6f","tarball":"https://registry.npmmirror.com/socket.io-parser/-/socket.io-parser-4.2.6.tgz","fileCount":24,"unpackedSize":64097,"attestations":{"url":"https://registry.npmjs.org/-/npm/v1/attestations/socket.io-parser@4.2.6","provenance":{"predicateType":"https://slsa.dev/provenance/v1"}},"signatures":[{"keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U","sig":"MEUCIENWvPasFJKrIS78jF3M9iiwocmtwYOSUnomd4hdGGemAiEA6XRCS6t0Ci0fV0HE7QiEyWcdnkbUdyZGCzhZXvwibnM="}],"size":8055},"_npmUser":{"name":"GitHub Actions","email":"npm-oidc-no-reply@github.com","trustedPublisher":{"id":"github","oidcConfigId":"oidc:31e33aa9-513e-461c-90ed-24cd65e19f1b"}},"directories":{},"maintainers":[{"name":"rauchg","email":"rauchg@gmail.com"},{"name":"darrachequesne","email":"damien.arrachequesne@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages-npm-production","tmp":"tmp/socket.io-parser_4.2.6_1773741378512_0.6550391573773011"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2026-03-17T09:56:18.668Z","publish_time":1773741378668,"_source_registry_name":"default"},"3.4.4":{"name":"socket.io-parser","version":"3.4.4","description":"socket.io protocol parser","repository":{"type":"git","url":"git+https://github.com/socketio/socket.io.git"},"dependencies":{"debug":"~4.1.0","component-emitter":"1.2.1","isarray":"2.0.1"},"devDependencies":{"@babel/core":"~7.9.6","@babel/preset-env":"~7.9.6","babelify":"~10.0.0","benchmark":"2.1.2","expect.js":"0.3.1","mocha":"3.2.0","socket.io-browsers":"^1.0.0","zuul":"3.11.1","zuul-ngrok":"4.0.0"},"scripts":{"test":"make test"},"license":"MIT","engines":{"node":">=10.0.0"},"readmeFilename":"Readme.md","gitHead":"082b68394f0bb300c1479a58cb38f13b952f10fe","_id":"socket.io-parser@3.4.4","bugs":{"url":"https://github.com/socketio/socket.io/issues"},"homepage":"https://github.com/socketio/socket.io#readme","_nodeVersion":"24.14.0","_npmVersion":"11.9.0","dist":{"integrity":"sha512-9JWZRGFA1aFK5W9yPrHoaZBOuaPE4NO7VZr96uVAsP8zkAYZkzrKeQhNPKkiPJq3qQK5q9c5xKcMysE5PUnPbw==","shasum":"bf44554a59246bfec27a11297d7277f35fe01817","tarball":"https://registry.npmmirror.com/socket.io-parser/-/socket.io-parser-3.4.4.tgz","fileCount":6,"unpackedSize":18058,"attestations":{"url":"https://registry.npmjs.org/-/npm/v1/attestations/socket.io-parser@3.4.4","provenance":{"predicateType":"https://slsa.dev/provenance/v1"}},"signatures":[{"keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U","sig":"MEQCICvDPNM3gqMU95uxkYJd5lHM7xNm3HLQBKAYbRWDCY9IAiAXe54gEsmizdTroaZZ5auiCkZremhK2E6JcKChgkkYBA=="}],"size":5858},"_npmUser":{"name":"GitHub Actions","email":"npm-oidc-no-reply@github.com","trustedPublisher":{"id":"github","oidcConfigId":"oidc:fcd79f7e-54c9-42ad-ad52-65da652d3dc4"}},"directories":{},"maintainers":[{"name":"rauchg","email":"rauchg@gmail.com"},{"name":"darrachequesne","email":"damien.arrachequesne@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages-npm-production","tmp":"tmp/socket.io-parser_3.4.4_1773759326935_0.44130136285915045"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2026-03-17T14:55:27.070Z","publish_time":1773759327070,"_source_registry_name":"default"},"3.3.5":{"name":"socket.io-parser","version":"3.3.5","description":"socket.io protocol parser","repository":{"type":"git","url":"git+https://github.com/socketio/socket.io.git"},"dependencies":{"component-emitter":"~1.3.0","debug":"~3.1.0","isarray":"2.0.1"},"devDependencies":{"benchmark":"2.1.2","expect.js":"0.3.1","mocha":"3.2.0","socket.io-browsers":"^1.0.0","zuul":"3.11.1","zuul-ngrok":"4.0.0"},"scripts":{"test":"make test"},"license":"MIT","readmeFilename":"Readme.md","gitHead":"17bc1d65cf92148a7fd4a24930c8d7ea944faca8","_id":"socket.io-parser@3.3.5","bugs":{"url":"https://github.com/socketio/socket.io/issues"},"homepage":"https://github.com/socketio/socket.io#readme","_nodeVersion":"24.14.0","_npmVersion":"11.9.0","dist":{"integrity":"sha512-pn+xG/oVnofxqteOawycpHw9QKclpNRa+Z7RW0vZmrIpkgZOVSVzBvY1YGR+p9kIEZXkeAjpHa21wRNLCZ6UAA==","shasum":"f07ca7a170de80837464aee39972acac6189ee9f","tarball":"https://registry.npmmirror.com/socket.io-parser/-/socket.io-parser-3.3.5.tgz","fileCount":6,"unpackedSize":17925,"attestations":{"url":"https://registry.npmjs.org/-/npm/v1/attestations/socket.io-parser@3.3.5","provenance":{"predicateType":"https://slsa.dev/provenance/v1"}},"signatures":[{"keyid":"SHA256:DhQ8wR5APBvFHLF/+Tc+AYvPOdTpcIDqOhxsBHRwC7U","sig":"MEUCIQCqvuPdvhC3Kv0C/W/1TUhBk56cojPtQPs2a3PHcdI9WwIgLjgvtQKRpHXDwQ8gdQbBWpZuqM3MvNWFH3eOgIbjvO8="}],"size":5808},"_npmUser":{"name":"GitHub Actions","email":"npm-oidc-no-reply@github.com","trustedPublisher":{"id":"github","oidcConfigId":"oidc:fcd79f7e-54c9-42ad-ad52-65da652d3dc4"}},"directories":{},"maintainers":[{"name":"rauchg","email":"rauchg@gmail.com"},{"name":"darrachequesne","email":"damien.arrachequesne@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages-npm-production","tmp":"tmp/socket.io-parser_3.3.5_1773760032868_0.5079187839529367"},"_hasShrinkwrap":false,"_cnpmcore_publish_time":"2026-03-17T15:07:13.002Z","publish_time":1773760033002,"_source_registry_name":"default"}},"bugs":{"url":"https://github.com/socketio/socket.io/issues"},"homepage":"https://github.com/socketio/socket.io/tree/main/packages/socket.io-client#readme","repository":{"type":"git","url":"git+https://github.com/socketio/socket.io.git"},"_source_registry_name":"default"}