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

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