Software zum Installieren eines Smart-Mirror Frameworks , zum Nutzen von hochschulrelevanten Informationen, auf einem Raspberry-Pi.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

package.json 3.2KB

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