package.json 3.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126
  1. {
  2. "_from": "socket.io",
  3. "_id": "socket.io@4.4.1",
  4. "_inBundle": false,
  5. "_integrity": "sha512-s04vrBswdQBUmuWJuuNTmXUVJhP0cVky8bBDhdkf8y0Ptsu7fKU2LuLbts9g+pdmAdyMMn8F/9Mf1/wbtUN0fg==",
  6. "_location": "/socket.io",
  7. "_phantomChildren": {},
  8. "_requested": {
  9. "type": "tag",
  10. "registry": true,
  11. "raw": "socket.io",
  12. "name": "socket.io",
  13. "escapedName": "socket.io",
  14. "rawSpec": "",
  15. "saveSpec": null,
  16. "fetchSpec": "latest"
  17. },
  18. "_requiredBy": [
  19. "#USER",
  20. "/"
  21. ],
  22. "_resolved": "https://registry.npmjs.org/socket.io/-/socket.io-4.4.1.tgz",
  23. "_shasum": "cd6de29e277a161d176832bb24f64ee045c56ab8",
  24. "_spec": "socket.io",
  25. "_where": "C:\\Users\\Admin\\Desktop\\WORK IT\\a-level proj\\chat\\server",
  26. "bugs": {
  27. "url": "https://github.com/socketio/socket.io/issues"
  28. },
  29. "bundleDependencies": false,
  30. "contributors": [
  31. {
  32. "name": "Guillermo Rauch",
  33. "email": "rauchg@gmail.com"
  34. },
  35. {
  36. "name": "Arnout Kazemier",
  37. "email": "info@3rd-eden.com"
  38. },
  39. {
  40. "name": "Vladimir Dronnikov",
  41. "email": "dronnikov@gmail.com"
  42. },
  43. {
  44. "name": "Einar Otto Stangvik",
  45. "email": "einaros@gmail.com"
  46. }
  47. ],
  48. "dependencies": {
  49. "accepts": "~1.3.4",
  50. "base64id": "~2.0.0",
  51. "debug": "~4.3.2",
  52. "engine.io": "~6.1.0",
  53. "socket.io-adapter": "~2.3.3",
  54. "socket.io-parser": "~4.0.4"
  55. },
  56. "deprecated": false,
  57. "description": "node.js realtime framework server",
  58. "devDependencies": {
  59. "@types/mocha": "^9.0.0",
  60. "expect.js": "0.3.1",
  61. "mocha": "^3.5.3",
  62. "nyc": "^15.1.0",
  63. "prettier": "^2.3.2",
  64. "rimraf": "^3.0.2",
  65. "socket.io-client": "4.4.1",
  66. "socket.io-client-v2": "npm:socket.io-client@^2.4.0",
  67. "superagent": "^6.1.0",
  68. "supertest": "^6.1.6",
  69. "ts-node": "^10.2.1",
  70. "tsd": "^0.17.0",
  71. "typescript": "^4.4.2",
  72. "uWebSockets.js": "github:uNetworking/uWebSockets.js#v20.0.0"
  73. },
  74. "directories": {
  75. "doc": "docs/",
  76. "example": "example/",
  77. "lib": "lib/",
  78. "test": "test/"
  79. },
  80. "engines": {
  81. "node": ">=10.0.0"
  82. },
  83. "exports": {
  84. "import": "./wrapper.mjs",
  85. "require": "./dist/index.js",
  86. "types": "./dist/index.d.ts"
  87. },
  88. "files": [
  89. "dist/",
  90. "client-dist/",
  91. "wrapper.mjs",
  92. "!**/*.tsbuildinfo"
  93. ],
  94. "homepage": "https://github.com/socketio/socket.io#readme",
  95. "keywords": [
  96. "realtime",
  97. "framework",
  98. "websocket",
  99. "tcp",
  100. "events",
  101. "socket",
  102. "io"
  103. ],
  104. "license": "MIT",
  105. "main": "./dist/index.js",
  106. "name": "socket.io",
  107. "repository": {
  108. "type": "git",
  109. "url": "git://github.com/socketio/socket.io.git"
  110. },
  111. "scripts": {
  112. "compile": "rimraf ./dist && tsc",
  113. "format:check": "prettier --check \"lib/**/*.ts\" \"test/**/*.ts\"",
  114. "format:fix": "prettier --write \"lib/**/*.ts\" \"test/**/*.ts\"",
  115. "prepack": "npm run compile",
  116. "test": "npm run format:check && npm run compile && npm run test:types && npm run test:unit",
  117. "test:types": "tsd",
  118. "test:unit": "nyc mocha --require ts-node/register --reporter spec --slow 200 --bail --timeout 10000 test/socket.io.ts"
  119. },
  120. "tsd": {
  121. "directory": "test"
  122. },
  123. "type": "commonjs",
  124. "types": "./dist/index.d.ts",
  125. "version": "4.4.1"
  126. }