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 4.1KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170
  1. {
  2. "_args": [
  3. [
  4. "unified@9.2.1",
  5. "/home/pi/Desktop/smartMirrorTestEnvironment/MagicMirror"
  6. ]
  7. ],
  8. "_development": true,
  9. "_from": "unified@9.2.1",
  10. "_id": "unified@9.2.1",
  11. "_inBundle": false,
  12. "_integrity": "sha512-juWjuI8Z4xFg8pJbnEZ41b5xjGUWGHqXALmBZ3FC3WX0PIx1CZBIIJ6mXbYMcf6Yw4Fi0rFUTA1cdz/BglbOhA==",
  13. "_location": "/unified",
  14. "_phantomChildren": {},
  15. "_requested": {
  16. "type": "version",
  17. "registry": true,
  18. "raw": "unified@9.2.1",
  19. "name": "unified",
  20. "escapedName": "unified",
  21. "rawSpec": "9.2.1",
  22. "saveSpec": null,
  23. "fetchSpec": "9.2.1"
  24. },
  25. "_requiredBy": [
  26. "/remark"
  27. ],
  28. "_resolved": "https://registry.npmjs.org/unified/-/unified-9.2.1.tgz",
  29. "_spec": "9.2.1",
  30. "_where": "/home/pi/Desktop/smartMirrorTestEnvironment/MagicMirror",
  31. "author": {
  32. "name": "Titus Wormer",
  33. "email": "tituswormer@gmail.com",
  34. "url": "https://wooorm.com"
  35. },
  36. "bugs": {
  37. "url": "https://github.com/unifiedjs/unified/issues"
  38. },
  39. "contributors": [
  40. {
  41. "name": "Titus Wormer",
  42. "email": "tituswormer@gmail.com",
  43. "url": "https://wooorm.com"
  44. },
  45. {
  46. "name": "Junyoung Choi",
  47. "email": "fluke8259@gmail.com"
  48. },
  49. {
  50. "name": "Hernan Rajchert",
  51. "email": "hrajchert@gmail.com"
  52. },
  53. {
  54. "name": "Christian Murphy",
  55. "email": "christian.murphy.42@gmail.com"
  56. },
  57. {
  58. "name": "Vse Mozhet Byt",
  59. "email": "vsemozhetbyt@gmail.com"
  60. },
  61. {
  62. "name": "Richard Littauer",
  63. "email": "richard.littauer@gmail.com"
  64. }
  65. ],
  66. "dependencies": {
  67. "bail": "^1.0.0",
  68. "extend": "^3.0.0",
  69. "is-buffer": "^2.0.0",
  70. "is-plain-obj": "^2.0.0",
  71. "trough": "^1.0.0",
  72. "vfile": "^4.0.0"
  73. },
  74. "description": "Interface for parsing, inspecting, transforming, and serializing content through syntax trees",
  75. "devDependencies": {
  76. "browserify": "^17.0.0",
  77. "c8": "^7.0.0",
  78. "dtslint": "^4.0.0",
  79. "prettier": "^2.0.0",
  80. "remark-cli": "^9.0.0",
  81. "remark-preset-wooorm": "^8.0.0",
  82. "tape": "^5.0.0",
  83. "tinyify": "^3.0.0",
  84. "xo": "^0.38.0"
  85. },
  86. "files": [
  87. "types/ts3.4/index.d.ts",
  88. "types/ts4.0/index.d.ts",
  89. "index.js",
  90. "lib"
  91. ],
  92. "funding": {
  93. "type": "opencollective",
  94. "url": "https://opencollective.com/unified"
  95. },
  96. "homepage": "https://unifiedjs.com",
  97. "keywords": [
  98. "unified",
  99. "process",
  100. "parse",
  101. "transform",
  102. "compile",
  103. "stringify",
  104. "serialize",
  105. "ast",
  106. "cst",
  107. "syntax",
  108. "tree",
  109. "content",
  110. "rehype",
  111. "retext",
  112. "remark"
  113. ],
  114. "license": "MIT",
  115. "name": "unified",
  116. "prettier": {
  117. "tabWidth": 2,
  118. "useTabs": false,
  119. "singleQuote": true,
  120. "bracketSpacing": false,
  121. "semi": false,
  122. "trailingComma": "none"
  123. },
  124. "remarkConfig": {
  125. "plugins": [
  126. "preset-wooorm"
  127. ]
  128. },
  129. "repository": {
  130. "type": "git",
  131. "url": "git+https://github.com/unifiedjs/unified.git"
  132. },
  133. "scripts": {
  134. "build": "npm run build-bundle && npm run build-mangle",
  135. "build-bundle": "browserify index.js -s unified -o unified.js",
  136. "build-mangle": "browserify index.js -s unified -p tinyify -o unified.min.js",
  137. "format": "remark . -qfo && prettier . -w --loglevel warn && xo --fix",
  138. "test": "npm run format && npm run build && npm run test-coverage && npm run test-types",
  139. "test-api": "node test",
  140. "test-coverage": "c8 --check-coverage --lines 100 --functions 100 --branches 100 --reporter lcov tape test",
  141. "test-types": "npm run test-types-3.4 && npm run test-types-4.0",
  142. "test-types-3.4": "dtslint types/ts3.4",
  143. "test-types-4.0": "dtslint types/ts4.0"
  144. },
  145. "types": "types/ts3.4/index.d.ts",
  146. "typesVersions": {
  147. ">=4.0": {
  148. "types/ts3.4/*": [
  149. "types/ts4.0/*"
  150. ]
  151. }
  152. },
  153. "version": "9.2.1",
  154. "xo": {
  155. "prettier": true,
  156. "esnext": false,
  157. "rules": {
  158. "guard-for-in": "off",
  159. "no-unreachable-loop": "off",
  160. "unicorn/prefer-number-properties": "off",
  161. "unicorn/prefer-optional-catch-binding": "off",
  162. "unicorn/prefer-reflect-apply": "off",
  163. "unicorn/prefer-type-error": "off"
  164. },
  165. "ignores": [
  166. "types",
  167. "unified.js"
  168. ]
  169. }
  170. }