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

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144
  1. {
  2. "_args": [
  3. [
  4. "unist-util-find-all-after@3.0.2",
  5. "/home/pi/Desktop/smartMirrorTestEnvironment/MagicMirror"
  6. ]
  7. ],
  8. "_development": true,
  9. "_from": "unist-util-find-all-after@3.0.2",
  10. "_id": "unist-util-find-all-after@3.0.2",
  11. "_inBundle": false,
  12. "_integrity": "sha512-xaTC/AGZ0rIM2gM28YVRAFPIZpzbpDtU3dRmp7EXlNVA8ziQc4hY3H7BHXM1J49nEmiqc3svnqMReW+PGqbZKQ==",
  13. "_location": "/unist-util-find-all-after",
  14. "_phantomChildren": {},
  15. "_requested": {
  16. "type": "version",
  17. "registry": true,
  18. "raw": "unist-util-find-all-after@3.0.2",
  19. "name": "unist-util-find-all-after",
  20. "escapedName": "unist-util-find-all-after",
  21. "rawSpec": "3.0.2",
  22. "saveSpec": null,
  23. "fetchSpec": "3.0.2"
  24. },
  25. "_requiredBy": [
  26. "/@stylelint/postcss-markdown"
  27. ],
  28. "_resolved": "https://registry.npmjs.org/unist-util-find-all-after/-/unist-util-find-all-after-3.0.2.tgz",
  29. "_spec": "3.0.2",
  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/syntax-tree/unist-util-find-all-after/issues"
  38. },
  39. "contributors": [
  40. {
  41. "name": "Titus Wormer",
  42. "email": "tituswormer@gmail.com",
  43. "url": "https://wooorm.com"
  44. },
  45. {
  46. "name": "Lucas Brandstaetter",
  47. "email": "lucas@brandstaetter.tech",
  48. "url": "https://github.com/Roang-zero1"
  49. }
  50. ],
  51. "dependencies": {
  52. "unist-util-is": "^4.0.0"
  53. },
  54. "description": "unist utility to find nodes after another node",
  55. "devDependencies": {
  56. "@types/tape": "^4.0.0",
  57. "browserify": "^17.0.0",
  58. "dtslint": "^4.0.0",
  59. "nyc": "^15.0.0",
  60. "prettier": "^2.0.0",
  61. "remark": "^13.0.0",
  62. "remark-cli": "^9.0.0",
  63. "remark-preset-wooorm": "^8.0.0",
  64. "tape": "^5.0.0",
  65. "tinyify": "^3.0.0",
  66. "typescript": "^4.0.0",
  67. "xo": "^0.34.0"
  68. },
  69. "files": [
  70. "index.js",
  71. "index.d.ts"
  72. ],
  73. "funding": {
  74. "type": "opencollective",
  75. "url": "https://opencollective.com/unified"
  76. },
  77. "homepage": "https://github.com/syntax-tree/unist-util-find-all-after#readme",
  78. "keywords": [
  79. "unist",
  80. "unist-util",
  81. "util",
  82. "utility",
  83. "tree",
  84. "node",
  85. "find",
  86. "after"
  87. ],
  88. "license": "MIT",
  89. "name": "unist-util-find-all-after",
  90. "nyc": {
  91. "check-coverage": true,
  92. "lines": 100,
  93. "functions": 100,
  94. "branches": 100
  95. },
  96. "prettier": {
  97. "tabWidth": 2,
  98. "useTabs": false,
  99. "singleQuote": true,
  100. "bracketSpacing": false,
  101. "semi": false,
  102. "trailingComma": "none"
  103. },
  104. "remarkConfig": {
  105. "plugins": [
  106. "preset-wooorm"
  107. ]
  108. },
  109. "repository": {
  110. "type": "git",
  111. "url": "git+https://github.com/syntax-tree/unist-util-find-all-after.git"
  112. },
  113. "scripts": {
  114. "build": "npm run build-bundle && npm run build-mangle",
  115. "build-bundle": "browserify . -s unistUtilFindAllAfter -o unist-util-find-all-after.js",
  116. "build-mangle": "browserify . -s unistUtilFindAllAfter -p tinyify -o unist-util-find-all-after.min.js",
  117. "format": "remark . -qfo && prettier . -w --loglevel warn && xo --fix",
  118. "test": "npm run format && npm run build && npm run test-coverage && npm run test-types",
  119. "test-api": "node test",
  120. "test-coverage": "nyc --reporter lcov tape test.js",
  121. "test-types": "dtslint ."
  122. },
  123. "types": "index.d.ts",
  124. "version": "3.0.2",
  125. "xo": {
  126. "prettier": true,
  127. "esnext": false,
  128. "rules": {
  129. "eqeqeq": [
  130. "error",
  131. "always",
  132. {
  133. "null": "ignore"
  134. }
  135. ],
  136. "guard-for-in": "off",
  137. "no-eq-null": "off"
  138. },
  139. "ignore": [
  140. "unist-util-find-all-after.js",
  141. "*.ts"
  142. ]
  143. }
  144. }