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.4KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132
  1. {
  2. "_args": [
  3. [
  4. "buffer@5.7.1",
  5. "/home/pi/Desktop/smartMirrorTestEnvironment/MagicMirror"
  6. ]
  7. ],
  8. "_development": true,
  9. "_from": "buffer@5.7.1",
  10. "_id": "buffer@5.7.1",
  11. "_inBundle": false,
  12. "_integrity": "sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==",
  13. "_location": "/buffer",
  14. "_phantomChildren": {},
  15. "_requested": {
  16. "type": "version",
  17. "registry": true,
  18. "raw": "buffer@5.7.1",
  19. "name": "buffer",
  20. "escapedName": "buffer",
  21. "rawSpec": "5.7.1",
  22. "saveSpec": null,
  23. "fetchSpec": "5.7.1"
  24. },
  25. "_requiredBy": [
  26. "/bl",
  27. "/unbzip2-stream"
  28. ],
  29. "_resolved": "https://registry.npmjs.org/buffer/-/buffer-5.7.1.tgz",
  30. "_spec": "5.7.1",
  31. "_where": "/home/pi/Desktop/smartMirrorTestEnvironment/MagicMirror",
  32. "author": {
  33. "name": "Feross Aboukhadijeh",
  34. "email": "feross@feross.org",
  35. "url": "https://feross.org"
  36. },
  37. "bugs": {
  38. "url": "https://github.com/feross/buffer/issues"
  39. },
  40. "contributors": [
  41. {
  42. "name": "Romain Beauxis",
  43. "email": "toots@rastageeks.org"
  44. },
  45. {
  46. "name": "James Halliday",
  47. "email": "mail@substack.net"
  48. }
  49. ],
  50. "dependencies": {
  51. "base64-js": "^1.3.1",
  52. "ieee754": "^1.1.13"
  53. },
  54. "description": "Node.js Buffer API, for the browser",
  55. "devDependencies": {
  56. "airtap": "^3.0.0",
  57. "benchmark": "^2.1.4",
  58. "browserify": "^17.0.0",
  59. "concat-stream": "^2.0.0",
  60. "hyperquest": "^2.1.3",
  61. "is-buffer": "^2.0.4",
  62. "is-nan": "^1.3.0",
  63. "split": "^1.0.1",
  64. "standard": "*",
  65. "tape": "^5.0.1",
  66. "through2": "^4.0.2",
  67. "uglify-js": "^3.11.3"
  68. },
  69. "funding": [
  70. {
  71. "type": "github",
  72. "url": "https://github.com/sponsors/feross"
  73. },
  74. {
  75. "type": "patreon",
  76. "url": "https://www.patreon.com/feross"
  77. },
  78. {
  79. "type": "consulting",
  80. "url": "https://feross.org/support"
  81. }
  82. ],
  83. "homepage": "https://github.com/feross/buffer",
  84. "jspm": {
  85. "map": {
  86. "./index.js": {
  87. "node": "@node/buffer"
  88. }
  89. }
  90. },
  91. "keywords": [
  92. "arraybuffer",
  93. "browser",
  94. "browserify",
  95. "buffer",
  96. "compatible",
  97. "dataview",
  98. "uint8array"
  99. ],
  100. "license": "MIT",
  101. "main": "index.js",
  102. "name": "buffer",
  103. "repository": {
  104. "type": "git",
  105. "url": "git://github.com/feross/buffer.git"
  106. },
  107. "scripts": {
  108. "perf": "browserify --debug perf/bracket-notation.js > perf/bundle.js && open perf/index.html",
  109. "perf-node": "node perf/bracket-notation.js && node perf/concat.js && node perf/copy-big.js && node perf/copy.js && node perf/new-big.js && node perf/new.js && node perf/readDoubleBE.js && node perf/readFloatBE.js && node perf/readUInt32LE.js && node perf/slice.js && node perf/writeFloatBE.js",
  110. "size": "browserify -r ./ | uglifyjs -c -m | gzip | wc -c",
  111. "test": "standard && node ./bin/test.js",
  112. "test-browser-es5": "airtap -- test/*.js",
  113. "test-browser-es5-local": "airtap --local -- test/*.js",
  114. "test-browser-es6": "airtap -- test/*.js test/node/*.js",
  115. "test-browser-es6-local": "airtap --local -- test/*.js test/node/*.js",
  116. "test-node": "tape test/*.js test/node/*.js",
  117. "update-authors": "./bin/update-authors.sh"
  118. },
  119. "standard": {
  120. "ignore": [
  121. "test/node/**/*.js",
  122. "test/common.js",
  123. "test/_polyfill.js",
  124. "perf/**/*.js"
  125. ],
  126. "globals": [
  127. "SharedArrayBuffer"
  128. ]
  129. },
  130. "types": "index.d.ts",
  131. "version": "5.7.1"
  132. }